/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | dict_intern.py | 10 k2 = "key" + "1" variable 11 print(k == k2) 12 print(k2 in di)
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/FilteringFunctions/ |
A D | arm_iir_lattice_f32.c | 135 float32_t k1, k2; in arm_iir_lattice_f32() local 184 k2 = *(pk + 1u); in arm_iir_lattice_f32() 193 fnext2 = fnext1 - (k2 * gcurr2); in arm_iir_lattice_f32() 214 gnext = gcurr2 + (k2 * fnext2); in arm_iir_lattice_f32() 223 k2 = *(pk + 3u); in arm_iir_lattice_f32() 229 fnext2 = fnext1 - (k2 * gcurr2); in arm_iir_lattice_f32() 247 gnext = (fnext2 * k2) + gcurr2; in arm_iir_lattice_f32()
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | fttrigon.c | 83 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; in ft_trig_downscale() local 93 k2 = (FT_UInt32)( FT_TRIG_SCALE & 0xFFFFL ); /* constant */ in ft_trig_downscale() 96 lo1 = k1 * v2 + k2 * v1; /* can't overflow */ in ft_trig_downscale() 98 lo2 = ( k2 * v2 ) >> 16; in ft_trig_downscale()
|
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/ |
A D | ecc_dsa.c | 107 uECC_word_t *k2[2] = {tmp, s}; in uECC_sign_with_k() local 121 EccPoint_mult(p, curve->G, k2[!carry], 0, num_n_bits + 1, curve); in uECC_sign_with_k()
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_blit_N.c | 2713 Uint8 k2 = (ckey >> 16) & 0xFF; in BlitNtoNKey() local 2717 Uint8 k2 = ckey & 0xFF; in BlitNtoNKey() 2728 if (k0 != s0 || k1 != s1 || k2 != s2) { in BlitNtoNKey() 2751 Uint8 k2 = (ckey >> 16) & 0xFF; in BlitNtoNKey() local 2755 Uint8 k2 = ckey & 0xFF; in BlitNtoNKey() 2765 if (k0 != s0 || k1 != s1 || k2 != s2) { in BlitNtoNKey() 2818 Uint8 k2 = (ckey >> 16) & 0xFF; in BlitNtoNKey() local 2822 Uint8 k2 = ckey & 0xFF; in BlitNtoNKey() 2837 if (k0 != s0 || k1 != s1 || k2 != s2) { in BlitNtoNKey()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | yuv_sse41.c | 498 const __m128i k2 = _mm_set1_epi16(2); in HorizontalAddPack_SSE41() local 499 const __m128i C = _mm_madd_epi16(*A, k2); in HorizontalAddPack_SSE41() 500 const __m128i D = _mm_madd_epi16(*B, k2); in HorizontalAddPack_SSE41()
|
A D | dec_sse2.c | 51 const __m128i k2 = _mm_set1_epi16(-30068); in Transform_SSE2() local 90 const __m128i c1 = _mm_mulhi_epi16(in1, k2); in Transform_SSE2() 97 const __m128i d2 = _mm_mulhi_epi16(in3, k2); in Transform_SSE2() 121 const __m128i c1 = _mm_mulhi_epi16(T1, k2); in Transform_SSE2() 128 const __m128i d2 = _mm_mulhi_epi16(T3, k2); in Transform_SSE2()
|
A D | enc_sse2.c | 48 const __m128i k2 = _mm_set1_epi16(-30068); in ITransform_SSE2() local 88 const __m128i c1 = _mm_mulhi_epi16(in1, k2); in ITransform_SSE2() 95 const __m128i d2 = _mm_mulhi_epi16(in3, k2); in ITransform_SSE2() 119 const __m128i c1 = _mm_mulhi_epi16(T1, k2); in ITransform_SSE2() 126 const __m128i d2 = _mm_mulhi_epi16(T3, k2); in ITransform_SSE2()
|
A D | yuv_sse2.c | 652 const __m128i k2 = _mm_set1_epi16(2); in HorizontalAddPack_SSE2() local 653 const __m128i C = _mm_madd_epi16(*A, k2); in HorizontalAddPack_SSE2() 654 const __m128i D = _mm_madd_epi16(*B, k2); in HorizontalAddPack_SSE2()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | libbf.c | 7883 int k1, int k2, limb_t n1, limb_t n2, int inverse, in ntt_fft_partial() argument 7893 if (k2 == 0) { in ntt_fft_partial() 7903 c0 = s->ntt_proot_pow[m_idx][inverse][k1 + k2]; in ntt_fft_partial() 7944 int k1, k2; in ntt_conv() local 7952 k2 = k - k1; in ntt_conv() 7954 n2 = (limb_t)1 << k2; in ntt_conv() 7956 if (ntt_fft_partial(s, buf1, k1, k2, n1, n2, 0, m_idx)) in ntt_conv() 7958 if (ntt_fft_partial(s, buf2, k1, k2, n1, n2, 0, m_idx)) in ntt_conv() 7960 if (k2 == 0) { in ntt_conv() 7964 ntt_conv(s, buf1 + i * n2, buf2 + i * n2, k2, k_tot, m_idx); in ntt_conv() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 5 …}90}90|90{8/{8/{8/{;1{;1z:0y;0x:/x:/x:/x:/t8.t8.s7-s7-r6,q5+o5*o5*k1&o6+m4)k2'n5*i3'm7+}G;�QI�PI�Q…
|