Home
last modified time | relevance | path

Searched refs:Y2 (Results 1 – 14 of 14) sorted by relevance

/AliOS-Things-master/components/SDL2/test/
A Dtestyuv_cvt.c80 Uint8 *Y1, *Y2, *U, *V; in ConvertRGBtoPlanar2x2() local
89 Y2 = Y1 + w; in ConvertRGBtoPlanar2x2()
128 *Y2++ = (Uint8)yuv[2][0]; in ConvertRGBtoPlanar2x2()
157 Y2 += w; in ConvertRGBtoPlanar2x2()
196 Uint8 *Y1, *Y2, *U, *V; in ConvertRGBtoPacked4() local
206 Y2 = out+2; in ConvertRGBtoPacked4()
213 Y2 = out+3; in ConvertRGBtoPacked4()
218 Y2 = out+2; in ConvertRGBtoPacked4()
235 *Y2 = (Uint8)yuv[1][0]; in ConvertRGBtoPacked4()
236 Y2 += 4; in ConvertRGBtoPacked4()
[all …]
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/
A Decc.c640 uECC_word_t * X2, uECC_word_t * Y2, in XYcZ_initial_double() argument
654 uECC_vli_set(Y2, Y1, num_words); in XYcZ_initial_double()
658 apply_z(X2, Y2, z, curve); in XYcZ_initial_double()
662 uECC_word_t * X2, uECC_word_t * Y2, in XYcZ_add() argument
673 uECC_vli_modSub(Y2, Y2, Y1, curve->p, num_words); /* t4 = y2 - y1 */ in XYcZ_add()
681 uECC_vli_modMult_fast(Y2, Y2, X2, curve); /* t4 = (y2 - y1)*(B - x3) */ in XYcZ_add()
682 uECC_vli_modSub(Y2, Y2, Y1, curve->p, num_words); /* t4 = y3 */ in XYcZ_add()
692 uECC_word_t * X2, uECC_word_t * Y2, in XYcZ_addC() argument
706 uECC_vli_modSub(Y2, Y2, Y1, curve->p, num_words); /* t4 = y2 - y1 */ in XYcZ_addC()
715 uECC_vli_modMult_fast(Y2, Y2, t7, curve); /* t4 = (y2 - y1)*(B - x3) */ 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()
707 ((uint32_t)FSb[(Y2 >> 8) & 0xFF] << 8) ^ in infra_aes_internal_aes_encrypt()
711 X2 = *RK++ ^ ((uint32_t)FSb[(Y2) & 0xFF]) ^ in infra_aes_internal_aes_encrypt()
719 ((uint32_t)FSb[(Y2 >> 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()
767 ((uint32_t)RSb[(Y2 >> 24) & 0xFF] << 24); in infra_aes_internal_aes_decrypt()
769 X2 = *RK++ ^ ((uint32_t)RSb[(Y2) & 0xFF]) ^ in infra_aes_internal_aes_decrypt()
[all …]
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_rect.c318 int *Y2) in SDL_IntersectRectAndLine() argument
350 if (!Y2) { in SDL_IntersectRectAndLine()
363 y2 = *Y2; in SDL_IntersectRectAndLine()
404 *Y2 = recty1; in SDL_IntersectRectAndLine()
406 *Y2 = recty2; in SDL_IntersectRectAndLine()
464 *Y2 = y2; in SDL_IntersectRectAndLine()
A DSDL_yuv.c1271 Y2 = srcYUV[2]; in SDL_ConvertPixels_YUY2_to_UYVY()
1278 dstYUV[3] = Y2; in SDL_ConvertPixels_YUY2_to_UYVY()
1313 Y2 = srcYUV[2]; in SDL_ConvertPixels_YUY2_to_YVYU()
1319 dstYUV[2] = Y2; in SDL_ConvertPixels_YUY2_to_YVYU()
1356 Y2 = srcYUV[3]; in SDL_ConvertPixels_UYVY_to_YUY2()
1361 dstYUV[2] = Y2; in SDL_ConvertPixels_UYVY_to_YUY2()
1398 Y2 = srcYUV[3]; in SDL_ConvertPixels_UYVY_to_YVYU()
1403 dstYUV[2] = Y2; in SDL_ConvertPixels_UYVY_to_YVYU()
1439 Y2 = srcYUV[2]; in SDL_ConvertPixels_YVYU_to_YUY2()
1445 dstYUV[2] = Y2; in SDL_ConvertPixels_YVYU_to_YUY2()
[all …]
/AliOS-Things-master/components/mbedtls/library/
A Daes.c818 #define AES_FROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
822 AES_FT2( ( Y2 >> 16 ) & 0xFF ) ^ \
826 AES_FT1( ( Y2 >> 8 ) & 0xFF ) ^ \
830 X2 = *RK++ ^ AES_FT0( ( Y2 ) & 0xFF ) ^ \
838 AES_FT3( ( Y2 >> 24 ) & 0xFF ); \
841 #define AES_RROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
845 AES_RT2( ( Y2 >> 16 ) & 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
42Y2 = _mm_mullo_epi16(_mm_sub_epi16(Y2, _mm_set1_epi16(param->y_shift)), _mm_set1_epi16(param->y_fa…
47 R2 = _mm_srai_epi16(_mm_add_epi16(R2, Y2), PRECISION); \
48 G2 = _mm_srai_epi16(_mm_add_epi16(G2, Y2), PRECISION); \
49 B2 = _mm_srai_epi16(_mm_add_epi16(B2, Y2), PRECISION); \
/AliOS-Things-master/components/SDL2/include/
A DSDL_rect.h164 int *Y2);
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dyuv_neon.c45 const uint16x8_t Y2 = vaddq_u16(Y1, vdupq_n_u16(16)); in ConvertRGBToY_NEON() local
46 return vqmovn_u16(Y2); in ConvertRGBToY_NEON()
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/include/tinycrypt/
A Decc.h368 uECC_word_t * Y2, uECC_Curve curve);
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Dminisblack-1c-8b.pgm76 !')1:@BHILSY[WXZ\_h{����m^Y2<<=;=87(CX'2~`61/6%W��������������������������jG6\isstxx{��������…
A Drgb-3c-8b.ppm5 …R��V��]�р�ٲ�׶�������ѕ��\��FξC�e/���C)��Q��S{�Dz�D~�G��I��M��N��N��N��G�Y2����)�-X6��b…
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dtiffcrop.c266 double Y2; /* index of bottom edge in current units */ member
1725 &crop_data->corners[i].X2, &crop_data->corners[i].Y2) != 4) in process_command_opts()
5061 cps->corners[i].Y2 = 0.0; in initCropMasks()
5151 y2 = (uint32) (crop->corners[i].Y2 * scale * yres); in computeInputPixelOffsets()
5158 y2 = (uint32) (crop->corners[i].Y2); in computeInputPixelOffsets()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dlibbf.c4488 bf_t Y2_s, *Y2 = &Y2_s; in bf_log_internal() local
4490 bf_init(s, Y2); in bf_log_internal()
4500 bf_mul(Y2, Y, Y, prec1, BF_RNDN); in bf_log_internal()
4507 bf_mul(r, r, Y2, prec1, BF_RNDN); in bf_log_internal()
4512 bf_delete(Y2); in bf_log_internal()

Completed in 59 milliseconds