Home
last modified time | relevance | path

Searched refs:k2 (Results 1 – 11 of 11) sorted by relevance

/AliOS-Things-master/components/py_engine/tests/basics/
A Ddict_intern.py10 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 Darm_iir_lattice_f32.c135 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 Dfttrigon.c83 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 Decc_dsa.c107 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 DSDL_blit_N.c2713 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 Dyuv_sse41.c498 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 Ddec_sse2.c51 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 Denc_sse2.c48 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 Dyuv_sse2.c652 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 Dlibbf.c7883 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 Dtestimg.ppm5 …}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…

Completed in 50 milliseconds