Home
last modified time | relevance | path

Searched refs:Y1 (Results 1 – 15 of 15) sorted by relevance

/AliOS-Things-master/components/SDL2/test/
A Dtestyuv_cvt.c88 Y1 = out; in ConvertRGBtoPlanar2x2()
89 Y2 = Y1 + w; in ConvertRGBtoPlanar2x2()
92 V = (Y1 + h * w); in ConvertRGBtoPlanar2x2()
97 U = (Y1 + h * w); in ConvertRGBtoPlanar2x2()
102 U = (Y1 + h * w); in ConvertRGBtoPlanar2x2()
156 Y1 += w; in ConvertRGBtoPlanar2x2()
204 Y1 = out; in ConvertRGBtoPacked4()
211 Y1 = out+1; in ConvertRGBtoPacked4()
216 Y1 = out; in ConvertRGBtoPacked4()
231 Y1 += 4; in ConvertRGBtoPacked4()
[all …]
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/
A Decc.c470 uECC_vli_modMult_fast(Y1, Y1, Z1, curve); /* t2 = y1*z1 = z3 */ in double_jacobian_default()
498 uECC_vli_set(Z1, Y1, num_words); in double_jacobian_default()
499 uECC_vli_set(Y1, t4, num_words); in double_jacobian_default()
635 uECC_vli_modMult_fast(Y1, Y1, t1, curve); /* y1 * z^3 */ in apply_z()
654 uECC_vli_set(Y2, Y1, num_words); in XYcZ_initial_double()
656 apply_z(X1, Y1, z, curve); in XYcZ_initial_double()
657 curve->double_jacobian(X1, Y1, z, curve); in XYcZ_initial_double()
661 void XYcZ_add(uECC_word_t * X1, uECC_word_t * Y1, in XYcZ_add() argument
679 uECC_vli_modMult_fast(Y1, Y1, X2, curve); /* t2 = y1*(C - B) */ in XYcZ_add()
709 uECC_vli_modMult_fast(Y1, Y1, t6, curve); /* t2 = y1 * (C - B) = E */ in XYcZ_addC()
[all …]
/AliOS-Things-master/components/linkkit/infra/
A Dinfra_aes.c681 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in infra_aes_internal_aes_encrypt() local
695 AES_FROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_encrypt()
699 AES_FROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_encrypt()
702 ((uint32_t)FSb[(Y1 >> 8) & 0xFF] << 8) ^ in infra_aes_internal_aes_encrypt()
706 X1 = *RK++ ^ ((uint32_t)FSb[(Y1) & 0xFF]) ^ in infra_aes_internal_aes_encrypt()
714 ((uint32_t)FSb[(Y1 >> 24) & 0xFF] << 24); in infra_aes_internal_aes_encrypt()
739 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in infra_aes_internal_aes_decrypt() local
757 AES_RROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_decrypt()
762 ((uint32_t)RSb[(Y1 >> 24) & 0xFF] << 24); in infra_aes_internal_aes_decrypt()
764 X1 = *RK++ ^ ((uint32_t)RSb[(Y1) & 0xFF]) ^ in infra_aes_internal_aes_decrypt()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dyuv_sse41.c45 const __m128i Y1 = _mm_mulhi_epu16(*Y0, k19077); in ConvertYUV444ToRGB_SSE41() local
48 const __m128i R1 = _mm_sub_epi16(Y1, k14234); in ConvertYUV444ToRGB_SSE41()
53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE41()
59 const __m128i B1 = _mm_adds_epu16(B0, Y1); in ConvertYUV444ToRGB_SSE41()
419 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE41() local
431 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertRGB24ToY_SSE41()
434 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertRGB24ToY_SSE41()
453 __m128i r, g, b, Y0, Y1; in ConvertBGR24ToY_SSE41() local
465 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertBGR24ToY_SSE41()
480 __m128i Y0, Y1, rgb[6]; in ConvertARGBToY_SSE41() local
[all …]
A Dyuv_sse2.c45 const __m128i Y1 = _mm_mulhi_epu16(*Y0, k19077); in ConvertYUV444ToRGB_SSE2() local
48 const __m128i R1 = _mm_sub_epi16(Y1, k14234); in ConvertYUV444ToRGB_SSE2()
53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE2()
59 const __m128i B1 = _mm_adds_epu16(B0, Y1); in ConvertYUV444ToRGB_SSE2()
573 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE2() local
585 ConvertRGBToY_SSE2(&r, &g, &b, &Y1); in ConvertRGB24ToY_SSE2()
588 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertRGB24ToY_SSE2()
607 __m128i r, g, b, Y0, Y1; in ConvertBGR24ToY_SSE2() local
619 ConvertRGBToY_SSE2(&r, &g, &b, &Y1); in ConvertBGR24ToY_SSE2()
634 __m128i Y0, Y1, rgb[6]; in ConvertARGBToY_SSE2() local
[all …]
A Dupsampling_neon.c145 const int16x8_t Y1 = vqdmulhq_lane_s16(Y0, coeff1, 0); \
150 const int16x8_t R1 = vqaddq_s16(Y1, R_Rounder); \
151 const int16x8_t G2 = vqaddq_s16(Y1, G_Rounder); \
152 const int16x8_t B1 = vqaddq_s16(Y1, B_Rounder); \
A Dyuv_neon.c43 const uint16x8_t Y1 = vcombine_u16(vrshrn_n_u32(tmp2_lo, 16), in ConvertRGBToY_NEON() local
45 const uint16x8_t Y2 = vaddq_u16(Y1, vdupq_n_u16(16)); in ConvertRGBToY_NEON()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_rect.c317 SDL_IntersectRectAndLine(const SDL_Rect * rect, int *X1, int *Y1, int *X2, in SDL_IntersectRectAndLine() argument
340 if (!Y1) { in SDL_IntersectRectAndLine()
361 y1 = *Y1; in SDL_IntersectRectAndLine()
399 *Y1 = recty1; in SDL_IntersectRectAndLine()
401 *Y1 = recty2; in SDL_IntersectRectAndLine()
462 *Y1 = y1; in SDL_IntersectRectAndLine()
A DSDL_yuv.c1269 Y1 = srcYUV[0]; in SDL_ConvertPixels_YUY2_to_UYVY()
1276 dstYUV[1] = Y1; in SDL_ConvertPixels_YUY2_to_UYVY()
1311 Y1 = srcYUV[0]; in SDL_ConvertPixels_YUY2_to_YVYU()
1317 dstYUV[0] = Y1; in SDL_ConvertPixels_YUY2_to_YVYU()
1354 Y1 = srcYUV[1]; in SDL_ConvertPixels_UYVY_to_YUY2()
1359 dstYUV[0] = Y1; in SDL_ConvertPixels_UYVY_to_YUY2()
1396 Y1 = srcYUV[1]; in SDL_ConvertPixels_UYVY_to_YVYU()
1401 dstYUV[0] = Y1; in SDL_ConvertPixels_UYVY_to_YVYU()
1437 Y1 = srcYUV[0]; in SDL_ConvertPixels_YVYU_to_YUY2()
1443 dstYUV[0] = Y1; in SDL_ConvertPixels_YVYU_to_YUY2()
[all …]
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/include/tinycrypt/
A Decc.h120 void (*double_jacobian)(uECC_word_t * X1, uECC_word_t * Y1, uECC_word_t * Z1,
133 void double_jacobian_default(uECC_word_t * X1, uECC_word_t * Y1,
367 void XYcZ_add(uECC_word_t * X1, uECC_word_t * Y1, uECC_word_t * X2,
377 void apply_z(uECC_word_t * X1, uECC_word_t * Y1, const uECC_word_t * const Z,
/AliOS-Things-master/components/mbedtls/library/
A Daes.c818 #define AES_FROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
821 AES_FT1( ( Y1 >> 8 ) & 0xFF ) ^ \
825 X1 = *RK++ ^ AES_FT0( ( Y1 ) & 0xFF ) ^ \
833 AES_FT3( ( Y1 >> 24 ) & 0xFF ); \
837 AES_FT2( ( Y1 >> 16 ) & 0xFF ) ^ \
841 #define AES_RROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
846 AES_RT3( ( Y1 >> 24 ) & 0xFF ); \
873 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in mbedtls_internal_aes_encrypt() local
888 AES_FROUND( Y0, Y1, Y2, Y3, X0, X1, X2, X3 ); in mbedtls_internal_aes_encrypt()
941 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in mbedtls_internal_aes_decrypt() local
[all …]
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/
A Dyuv_rgb_sse_func.h40 #define ADD_Y2RGB_16(Y1,Y2,R1,G1,B1,R2,G2,B2) \ argument
41Y1 = _mm_mullo_epi16(_mm_sub_epi16(Y1, _mm_set1_epi16(param->y_shift)), _mm_set1_epi16(param->y_fa…
44 R1 = _mm_srai_epi16(_mm_add_epi16(R1, Y1), PRECISION); \
45 G1 = _mm_srai_epi16(_mm_add_epi16(G1, Y1), PRECISION); \
46 B1 = _mm_srai_epi16(_mm_add_epi16(B1, Y1), PRECISION); \
/AliOS-Things-master/components/SDL2/include/
A DSDL_rect.h163 int *Y1, int *X2,
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dtiffcrop.c265 double Y1; /* index of top edge in current units */ member
1724 &crop_data->corners[i].X1, &crop_data->corners[i].Y1, in process_command_opts()
5060 cps->corners[i].Y1 = 0.0; in initCropMasks()
5150 y1 = (uint32) (crop->corners[i].Y1 * scale * yres); in computeInputPixelOffsets()
5157 y1 = (uint32) (crop->corners[i].Y1); in computeInputPixelOffsets()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Drgb-3c-8b.ppm44 …�7+�7+�8*�0'�0)�H4�R5�_;�sDk�Ep�Va�Ko�L�́��Î�o�帨�l� �( �+#�+&�/$�:%�A(�J+�Y1�R/�I+�L3�K=�83�%$�#…
106 …���۬Ү|�Tg�E0 -��^"�N0h5�|<�~<�|=�u:�x;�y=�m9�a6�\4�\4�X2�?,�1)�M-�p6�o7�Y1�K-�'&�%%�'%�$'�$&�'(…

Completed in 51 milliseconds