Home
last modified time | relevance | path

Searched refs:Y0 (Results 1 – 10 of 10) sorted by relevance

/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()
90 ConvertYUV444ToRGB_SSE41(&Y0, &U0, &V0, R, G, B); in YUV444ToRGB_SSE41()
101 ConvertYUV444ToRGB_SSE41(&Y0, &U0, &V0, R, G, B); in YUV420ToRGB_SSE41()
419 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE41() local
425 ConvertRGBToY_SSE41(&r, &g, &b, &Y0); 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
459 ConvertRGBToY_SSE41(&r, &g, &b, &Y0); in ConvertBGR24ToY_SSE41()
468 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); 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()
90 ConvertYUV444ToRGB_SSE2(&Y0, &U0, &V0, R, G, B); in YUV444ToRGB_SSE2()
101 ConvertYUV444ToRGB_SSE2(&Y0, &U0, &V0, R, G, B); in YUV420ToRGB_SSE2()
573 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE2() local
579 ConvertRGBToY_SSE2(&r, &g, &b, &Y0); 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
613 ConvertRGBToY_SSE2(&r, &g, &b, &Y0); in ConvertBGR24ToY_SSE2()
622 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertBGR24ToY_SSE2()
634 __m128i Y0, Y1, rgb[6]; in ConvertARGBToY_SSE2() local
[all …]
A Dupsampling_neon.c142 const int16x8_t Y0 = vreinterpretq_s16_u16(vshll_n_u8(y, 7)); \
145 const int16x8_t Y1 = vqdmulhq_lane_s16(Y0, coeff1, 0); \
/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()
701 X0 = *RK++ ^ ((uint32_t)FSb[(Y0) & 0xFF]) ^ in infra_aes_internal_aes_encrypt()
709 ((uint32_t)FSb[(Y0 >> 24) & 0xFF] << 24); in infra_aes_internal_aes_encrypt()
717 ((uint32_t)FSb[(Y0 >> 8) & 0xFF] << 8) ^ 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()
759 X0 = *RK++ ^ ((uint32_t)RSb[(Y0) & 0xFF]) ^ in infra_aes_internal_aes_decrypt()
765 ((uint32_t)RSb[(Y0 >> 8) & 0xFF] << 8) ^ in infra_aes_internal_aes_decrypt()
[all …]
/AliOS-Things-master/components/mbedtls/library/
A Daes.c818 #define AES_FROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
820 X0 = *RK++ ^ AES_FT0( ( Y0 ) & 0xFF ) ^ \
828 AES_FT3( ( Y0 >> 24 ) & 0xFF ); \
832 AES_FT2( ( Y0 >> 16 ) & 0xFF ) ^ \
836 AES_FT1( ( Y0 >> 8 ) & 0xFF ) ^ \
841 #define AES_RROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument
843 X0 = *RK++ ^ AES_RT0( ( Y0 ) & 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/image/external/tiff-4.0.9/libtiff/
A Dtif_color.c53 *Y = (L * cielab->Y0) / 903.292F; in TIFFCIELabToXYZ()
54 cby = 7.787F * (*Y / cielab->Y0) + 16.0F / 116.0F; in TIFFCIELabToXYZ()
57 *Y = cielab->Y0 * cby * cby * cby; in TIFFCIELabToXYZ()
164 cielab->Y0 = refWhite[1]; in TIFFCIELabToRGBInit()
A Dtiffio.h169 float X0, Y0, Z0; /* Reference white point */ member
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/
A Dpicture_tools_enc.c206 const int Y0 = VP8RGBToY(red, green, blue, YUV_HALF); in WebPBlendAlpha() local
221 y_ptr[x] = BLEND(Y0, y_ptr[x], alpha); in WebPBlendAlpha()
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/
A Dtiffio.h169 float X0, Y0, Z0; /* Reference white point */ member
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dtestimg.ppm4 …?6/>5.=4->3/=2.<1-;0.;0.;0.;0.<1/=20C2*E0+H/+L,-N+/M*.J*/E+.A-,@.*@/(C/(M/'Y0*d1-j30i;+o;-w;0�=4�<…

Completed in 28 milliseconds