Home
last modified time | relevance | path

Searched refs:src_argb0 (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Drow.h84 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
86 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
88 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
97 void RGB24ToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
99 void RAWToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
115 void ARGBToUVRow_C(const uint8* src_argb0, int src_stride_argb,
117 void BGRAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
119 void ABGRToUVRow_C(const uint8* src_argb0, int src_stride_argb,
121 void RGB24ToUVRow_C(const uint8* src_argb0, int src_stride_argb,
123 void RAWToUVRow_C(const uint8* src_argb0, int src_stride_argb,
/external/libyuv/files/include/libyuv/
Drow.h227 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
229 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
231 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
233 void RGBAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
235 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
237 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
239 void ABGRToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
241 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
279 void ARGBToUVRow_C(const uint8* src_argb0, int src_stride_argb,
281 void BGRAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
[all …]
Dplanar_functions.h232 typedef void (*ARGBBlendRow)(const uint8* src_argb0, const uint8* src_argb1,
242 int ARGBBlend(const uint8* src_argb0, int src_stride_argb0,
310 int ARGBInterpolate(const uint8* src_argb0, int src_stride_argb0,
/external/libyuv/files/source/
Drow_common.cc269 void NAME ## ToYRow_C(const uint8* src_argb0, uint8* dst_y, int width) { \
271 dst_y[0] = RGBToY(src_argb0[R], src_argb0[G], src_argb0[B]); \
272 src_argb0 += 4; \
829 void ARGBBlendRow_C(const uint8* src_argb0, const uint8* src_argb1, in ARGBBlendRow_C() argument
832 uint32 fb = src_argb0[0]; in ARGBBlendRow_C()
833 uint32 fg = src_argb0[1]; in ARGBBlendRow_C()
834 uint32 fr = src_argb0[2]; in ARGBBlendRow_C()
835 uint32 a = src_argb0[3]; in ARGBBlendRow_C()
844 fb = src_argb0[4 + 0]; in ARGBBlendRow_C()
845 fg = src_argb0[4 + 1]; in ARGBBlendRow_C()
[all …]
Drow_posix.cc748 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, in ARGBToUVRow_SSSE3() argument
797 : "+r"(src_argb0), // %0 in ARGBToUVRow_SSSE3()
809 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb, in ARGBToUVRow_Unaligned_SSSE3() argument
862 : "+r"(src_argb0), // %0 in ARGBToUVRow_Unaligned_SSSE3()
2589 void ARGBBlendRow_SSE2(const uint8* src_argb0, const uint8* src_argb1, in ARGBBlendRow_SSE2() argument
2696 : "+r"(src_argb0), // %0 in ARGBBlendRow_SSE2()
2726 void ARGBBlendRow_SSSE3(const uint8* src_argb0, const uint8* src_argb1, in ARGBBlendRow_SSSE3() argument
2858 : "+r"(src_argb0), // %0 in ARGBBlendRow_SSSE3()
Dplanar_functions.cc324 int ARGBBlend(const uint8* src_argb0, int src_stride_argb0, in ARGBBlend() argument
328 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend()
341 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend()
342 src_argb0 += src_stride_argb0; in ARGBBlend()
399 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGBToI422()
1391 int ARGBInterpolate(const uint8* src_argb0, int src_stride_argb0, in ARGBInterpolate() argument
1395 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBInterpolate()
1409 IS_ALIGNED(src_argb0, 16) && IS_ALIGNED(src_stride_argb0, 16) && in ARGBInterpolate()
1416 ARGBInterpolateRow(dst_argb, src_argb0, src_argb1 - src_argb0, in ARGBInterpolate()
1418 src_argb0 += src_stride_argb0; in ARGBInterpolate()
Dconvert.cc943 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGBToI420()
1188 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB24ToI420()
1259 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RAWToI420()
1330 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB565ToI420()
1401 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGB1555ToI420()
1473 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGB4444ToI420()
Drow_win.cc930 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, in ARGBToUVRow_SSSE3() argument
996 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb, in ARGBToUVRow_Unaligned_SSSE3() argument
1066 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, in BGRAToUVRow_SSSE3() argument
1132 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb, in BGRAToUVRow_Unaligned_SSSE3() argument
1202 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, in ABGRToUVRow_SSSE3() argument
1268 void ABGRToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb, in ABGRToUVRow_Unaligned_SSSE3() argument
1338 void RGBAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, in RGBAToUVRow_SSSE3() argument
1404 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb, in RGBAToUVRow_Unaligned_SSSE3() argument
3002 void ARGBBlendRow_SSE2(const uint8* src_argb0, const uint8* src_argb1, in ARGBBlendRow_SSE2() argument
3136 void ARGBBlendRow_SSSE3(const uint8* src_argb0, const uint8* src_argb1, in ARGBBlendRow_SSSE3() argument
Dformat_conversion.cc376 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in BayerToI420()