Home
last modified time | relevance | path

Searched refs:src_argb (Results 1 – 25 of 45) sorted by relevance

12

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, int src_stride_argb, in ARGBToI444() argument
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
33 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI444()
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
40 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
94 ARGBToUV444Row(src_argb, dst_u, dst_v, width); in ARGBToI444()
95 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
96 src_argb += src_stride_argb; in ARGBToI444()
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb, in ARGBToI422() argument
112 void (*ARGBToUV422Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI422()
[all …]
Drow_common.cc152 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument
155 uint8 b = src_argb[0]; in ARGBToRGB24Row_C()
156 uint8 g = src_argb[1]; in ARGBToRGB24Row_C()
157 uint8 r = src_argb[2]; in ARGBToRGB24Row_C()
162 src_argb += 4; in ARGBToRGB24Row_C()
166 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_C() argument
169 uint8 b = src_argb[0]; in ARGBToRAWRow_C()
170 uint8 g = src_argb[1]; in ARGBToRAWRow_C()
171 uint8 r = src_argb[2]; in ARGBToRAWRow_C()
176 src_argb += 4; in ARGBToRAWRow_C()
[all …]
Dscale_common.cc652 void ScaleARGBRowDown2_C(const uint8* src_argb, in ScaleARGBRowDown2_C() argument
655 const uint32* src = (const uint32*)(src_argb); in ScaleARGBRowDown2_C()
670 void ScaleARGBRowDown2Linear_C(const uint8* src_argb, in ScaleARGBRowDown2Linear_C() argument
675 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
676 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
677 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
678 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
679 src_argb += 8; in ScaleARGBRowDown2Linear_C()
684 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDown2Box_C() argument
688 dst_argb[0] = (src_argb[0] + src_argb[4] + in ScaleARGBRowDown2Box_C()
[all …]
Dscale_argb.cc36 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown2() argument
41 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown2()
50 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown2()
52 src_argb += (y >> 16) * src_stride + ((x >> 16) - 1) * 4; in ScaleARGBDown2()
84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
85 src_argb += row_stride; in ScaleARGBDown2()
96 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown4Box() argument
103 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown4Box()
106 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown4Box()
127 ScaleARGBRowDown2(src_argb, src_stride, row, dst_width * 2); in ScaleARGBDown4Box()
[all …]
Dplanar_functions.cc482 int ARGBMirror(const uint8* src_argb, int src_stride_argb, in ARGBMirror() argument
488 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
494 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
524 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
525 src_argb += src_stride_argb; in ARGBMirror()
536 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
564 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
1244 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb, in ARGBAttenuate() argument
1248 void (*ARGBAttenuateRow)(const uint8* src_argb, uint8* dst_argb, in ARGBAttenuate()
1250 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBAttenuate()
[all …]
Drow_neon.cc1081 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1091 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
1099 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
1110 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1255 void ARGBShuffleRow_NEON(const uint8* src_argb, uint8* dst_argb, in ARGBShuffleRow_NEON() argument
1269 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
1331 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { in ARGBToRGB565Row_NEON() argument
1342 : "+r"(src_argb), // %0 in ARGBToRGB565Row_NEON()
1350 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument
1367 : "r"(src_argb), // %1 in ARGBToRGB565DitherRow_NEON()
[all …]
Drow_neon64.cc1079 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1088 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
1098 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
1109 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1264 void ARGBShuffleRow_NEON(const uint8* src_argb, uint8* dst_argb, in ARGBShuffleRow_NEON() argument
1277 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
1345 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { in ARGBToRGB565Row_NEON() argument
1355 : "+r"(src_argb), // %0 in ARGBToRGB565Row_NEON()
1365 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument
1381 : "r"(src_argb), // %1 in ARGBToRGB565DitherRow_NEON()
[all …]
Dscale_gcc.cc718 void ScaleARGBRowDown2_SSE2(const uint8* src_argb, in ScaleARGBRowDown2_SSE2() argument
732 : "+r"(src_argb), // %0 in ScaleARGBRowDown2_SSE2()
739 void ScaleARGBRowDown2Linear_SSE2(const uint8* src_argb, in ScaleARGBRowDown2Linear_SSE2() argument
756 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Linear_SSE2()
763 void ScaleARGBRowDown2Box_SSE2(const uint8* src_argb, in ScaleARGBRowDown2Box_SSE2() argument
784 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Box_SSE2()
795 void ScaleARGBRowDownEven_SSE2(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEven_SSE2() argument
816 : "+r"(src_argb), // %0 in ScaleARGBRowDownEven_SSE2()
828 void ScaleARGBRowDownEvenBox_SSE2(const uint8* src_argb, in ScaleARGBRowDownEvenBox_SSE2() argument
861 : "+r"(src_argb), // %0 in ScaleARGBRowDownEvenBox_SSE2()
[all …]
Dscale_neon.cc773 void ScaleARGBRowDown2Linear_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDown2Linear_NEON() argument
794 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Linear_NEON()
844 void ScaleARGBRowDownEven_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEven_NEON() argument
862 : "+r"(src_argb), // %0 in ScaleARGBRowDownEven_NEON()
872 void ScaleARGBRowDownEvenBox_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEvenBox_NEON() argument
910 : "+r"(src_argb), // %0 in ScaleARGBRowDownEvenBox_NEON()
928 void ScaleARGBCols_NEON(uint8* dst_argb, const uint8* src_argb, in ScaleARGBCols_NEON() argument
931 const uint8* src_tmp = src_argb; in ScaleARGBCols_NEON()
949 "+r"(src_argb), // %1 in ScaleARGBCols_NEON()
971 void ScaleARGBFilterCols_NEON(uint8* dst_argb, const uint8* src_argb, in ScaleARGBFilterCols_NEON() argument
[all …]
Dscale_neon64.cc778 void ScaleARGBRowDown2Linear_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDown2Linear_NEON() argument
797 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Linear_NEON()
842 void ScaleARGBRowDownEven_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEven_NEON() argument
858 : "+r"(src_argb), // %0 in ScaleARGBRowDownEven_NEON()
870 void ScaleARGBRowDownEvenBox_NEON(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEvenBox_NEON() argument
910 : "+r"(src_argb), // %0 in ScaleARGBRowDownEvenBox_NEON()
928 void ScaleARGBCols_NEON(uint8* dst_argb, const uint8* src_argb, in ScaleARGBCols_NEON() argument
930 const uint8* src_tmp = src_argb; in ScaleARGBCols_NEON()
951 "+r"(src_argb), // %1 in ScaleARGBCols_NEON()
973 void ScaleARGBFilterCols_NEON(uint8* dst_argb, const uint8* src_argb, in ScaleARGBFilterCols_NEON() argument
[all …]
Drotate_argb.cc161 int ARGBRotate(const uint8* src_argb, int src_stride_argb, in ARGBRotate() argument
164 if (!src_argb || width <= 0 || height == 0 || !dst_argb) { in ARGBRotate()
171 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
178 return ARGBCopy(src_argb, src_stride_argb, in ARGBRotate()
182 ARGBRotate90(src_argb, src_stride_argb, in ARGBRotate()
187 ARGBRotate270(src_argb, src_stride_argb, in ARGBRotate()
192 ARGBRotate180(src_argb, src_stride_argb, in ARGBRotate()
Drow_gcc.cc665 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_SSSE3() argument
690 : "+r"(src_argb), // %0 in ARGBToYRow_SSSE3()
703 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_SSSE3() argument
729 : "+r"(src_argb), // %0 in ARGBToYJRow_SSSE3()
746 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_AVX2() argument
774 : "+r"(src_argb), // %0 in ARGBToYRow_AVX2()
787 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_AVX2() argument
816 : "+r"(src_argb), // %0 in ARGBToYJRow_AVX2()
1020 void ARGBToUV444Row_SSSE3(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToUV444Row_SSSE3() argument
1063 : "+r"(src_argb), // %0 in ARGBToUV444Row_SSSE3()
[all …]
/external/libyuv/files/source/
Dplanar_functions.cc269 int ARGBMirror(const uint8* src_argb, int src_stride_argb, in ARGBMirror() argument
272 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
278 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
286 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16) && in ARGBMirror()
294 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
295 src_argb += src_stride_argb; in ARGBMirror()
306 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
337 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
351 int ARGBToI400(const uint8* src_argb, int src_stride_argb, in ARGBToI400() argument
354 if (!src_argb || !dst_y || width <= 0 || height == 0) { in ARGBToI400()
[all …]
Drow_common.cc142 void ARGBToRGBARow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGBARow_C() argument
144 uint8 b = src_argb[0]; in ARGBToRGBARow_C()
145 uint8 g = src_argb[1]; in ARGBToRGBARow_C()
146 uint8 r = src_argb[2]; in ARGBToRGBARow_C()
147 uint8 a = src_argb[3]; in ARGBToRGBARow_C()
153 src_argb += 4; in ARGBToRGBARow_C()
157 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument
159 uint8 b = src_argb[0]; in ARGBToRGB24Row_C()
160 uint8 g = src_argb[1]; in ARGBToRGB24Row_C()
161 uint8 r = src_argb[2]; in ARGBToRGB24Row_C()
[all …]
Dformat_conversion.cc30 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, in ARGBToBayerRow_SSSE3() argument
55 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer,
69 : "+r"(src_argb), // %0
82 static void ARGBToBayerRow_C(const uint8* src_argb, in ARGBToBayerRow_C() argument
88 dst_bayer[0] = src_argb[index0]; in ARGBToBayerRow_C()
89 dst_bayer[1] = src_argb[index1]; in ARGBToBayerRow_C()
90 src_argb += 8; in ARGBToBayerRow_C()
94 dst_bayer[0] = src_argb[index0]; in ARGBToBayerRow_C()
138 int ARGBToBayer(const uint8* src_argb, int src_stride_argb, in ARGBToBayer() argument
144 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToBayer()
[all …]
Drotate_argb.cc130 int ARGBRotate(const uint8* src_argb, int src_stride_argb, in ARGBRotate() argument
134 if (!src_argb || width <= 0 || height == 0 || !dst_argb) { in ARGBRotate()
141 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
148 return ARGBCopy(src_argb, src_stride_argb, in ARGBRotate()
152 ARGBRotate90(src_argb, src_stride_argb, in ARGBRotate()
157 ARGBRotate270(src_argb, src_stride_argb, in ARGBRotate()
162 ARGBRotate180(src_argb, src_stride_argb, in ARGBRotate()
Drow_posix.cc222 void ARGBToRGBARow_SSSE3(const uint8* src_argb, uint8* dst_rgba, int pix) { in ARGBToRGBARow_SSSE3() argument
235 : "+r"(src_argb), // %0 in ARGBToRGBARow_SSSE3()
669 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_SSSE3() argument
694 : "+r"(src_argb), // %0 in ARGBToYRow_SSSE3()
706 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_Unaligned_SSSE3() argument
731 : "+r"(src_argb), // %0 in ARGBToYRow_Unaligned_SSSE3()
2874 void ARGBAttenuateRow_SSE2(const uint8* src_argb, uint8* dst_argb, int width) { in ARGBAttenuateRow_SSE2() argument
2906 : "+r"(src_argb), // %0 in ARGBAttenuateRow_SSE2()
2929 void ARGBAttenuateRow_SSSE3(const uint8* src_argb, uint8* dst_argb, int width) { in ARGBAttenuateRow_SSSE3() argument
2960 : "+r"(src_argb), // %0 in ARGBAttenuateRow_SSSE3()
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h24 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
30 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb,
36 int ARGBToABGR(const uint8* src_argb, int src_stride_argb,
42 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb,
48 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
54 int ARGBToRAW(const uint8* src_argb, int src_stride_argb,
60 int ARGBToRGB565(const uint8* src_argb, int src_stride_argb,
70 int ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb,
76 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
82 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
[all …]
Drow.h579 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
580 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
581 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
582 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
583 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
584 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
590 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
591 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
592 void ARGBToUV444Row_NEON(const uint8* src_argb, uint8* dst_u, uint8* dst_v,
594 void ARGBToUV422Row_NEON(const uint8* src_argb, uint8* dst_u, uint8* dst_v,
[all …]
Dscale_row.h90 const uint8* src_argb, uint8* dst_argb,
97 const uint16* src_argb, uint16* dst_argb,
190 void ScaleARGBRowDown2_C(const uint8* src_argb,
193 void ScaleARGBRowDown2Linear_C(const uint8* src_argb,
196 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride,
198 void ScaleARGBRowDownEven_C(const uint8* src_argb, ptrdiff_t src_stride,
201 void ScaleARGBRowDownEvenBox_C(const uint8* src_argb,
205 void ScaleARGBCols_C(uint8* dst_argb, const uint8* src_argb,
207 void ScaleARGBCols64_C(uint8* dst_argb, const uint8* src_argb,
209 void ScaleARGBColsUp2_C(uint8* dst_argb, const uint8* src_argb,
[all …]
Dplanar_functions.h137 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
195 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
216 int ARGBColorMatrix(const uint8* src_argb, int src_stride_argb,
250 int ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb,
264 int ARGBPolynomial(const uint8* src_argb, int src_stride_argb,
280 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
286 int ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb,
350 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
356 int ARGBUnattenuate(const uint8* src_argb, int src_stride_argb,
370 int ARGBComputeCumulativeSum(const uint8* src_argb, int src_stride_argb,
[all …]
/external/libyuv/files/include/libyuv/
Drow.h218 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
219 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
220 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
221 void RGBAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
222 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
223 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
224 void ABGRToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
225 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
274 void ARGBToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
275 void BGRAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
[all …]
Dplanar_functions.h74 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
104 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
110 int ARGBToRAW(const uint8* src_argb, int src_stride_argb,
116 int ARGBToRGB565(const uint8* src_argb, int src_stride_argb,
122 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
128 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
134 int ARGBToI400(const uint8* src_argb, int src_stride_argb,
186 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
228 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
265 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
[all …]
/external/libyuv/files/unit_test/
Drotate_argb_test.cc27 align_buffer_16(src_argb, src_argb_plane_size) in ARGBTestRotate()
28 memset(src_argb, 1, src_argb_plane_size); in ARGBTestRotate()
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff); in ARGBTestRotate()
49 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestRotate()
53 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestRotate()
60 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestRotate()
69 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestRotate()
95 free_aligned_buffer_16(src_argb) in ARGBTestRotate()
Dscale_argb_test.cc27 align_buffer_16(src_argb, src_argb_plane_size) in ARGBTestFilter()
28 memset(src_argb, 1, src_argb_plane_size); in ARGBTestFilter()
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff); in ARGBTestFilter()
49 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
54 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
62 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
72 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
100 free_aligned_buffer_16(src_argb) in ARGBTestFilter()

12