Home
last modified time | relevance | path

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

12

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from_argb.cc26 int ARGBToI444(const uint8* src_argb, int src_stride_argb, in ARGBToI444() argument
32 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
34 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI444()
36 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
41 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
58 if (IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) { in ARGBToI444()
69 if (IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16) && in ARGBToI444()
88 ARGBToUV444Row(src_argb, dst_u, dst_v, width); in ARGBToI444()
89 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
90 src_argb += src_stride_argb; in ARGBToI444()
[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_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()
57 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(row_stride, 16) && in ScaleARGBDown2()
65 IS_ALIGNED(src_argb, 4) && IS_ALIGNED(row_stride, 4)) { in ScaleARGBDown2()
75 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
76 src_argb += row_stride; in ScaleARGBDown2()
87 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown4Box() argument
94 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown4Box()
[all …]
Dscale_common.cc660 void ScaleARGBRowDown2_C(const uint8* src_argb, in ScaleARGBRowDown2_C() argument
663 const uint32* src = (const uint32*)(src_argb); in ScaleARGBRowDown2_C()
678 void ScaleARGBRowDown2Linear_C(const uint8* src_argb, in ScaleARGBRowDown2Linear_C() argument
683 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
684 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
685 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
686 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
687 src_argb += 8; in ScaleARGBRowDown2Linear_C()
692 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDown2Box_C() argument
696 dst_argb[0] = (src_argb[0] + src_argb[4] + in ScaleARGBRowDown2Box_C()
[all …]
Dplanar_functions.cc485 int ARGBMirror(const uint8* src_argb, int src_stride_argb, in ARGBMirror() argument
491 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
497 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
503 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16) && in ARGBMirror()
521 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
522 src_argb += src_stride_argb; in ARGBMirror()
533 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
561 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
1178 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb, in ARGBAttenuate() argument
1182 void (*ARGBAttenuateRow)(const uint8* src_argb, uint8* dst_argb, in ARGBAttenuate()
[all …]
Drow_neon.cc1103 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1113 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
1121 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
1132 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1301 void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayerRow_NEON() argument
1315 : "+r"(src_argb), // %0 in ARGBToBayerRow_NEON()
1324 void ARGBToBayerGGRow_NEON(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayerGGRow_NEON() argument
1334 : "+r"(src_argb), // %0 in ARGBToBayerGGRow_NEON()
1343 void ARGBShuffleRow_NEON(const uint8* src_argb, uint8* dst_argb, in ARGBShuffleRow_NEON() argument
1357 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
[all …]
Drow_neon64.cc1168 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1178 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
1188 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
1199 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1384 void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayerRow_NEON() argument
1398 : "+r"(src_argb), // %0 in ARGBToBayerRow_NEON()
1409 void ARGBToBayerGGRow_NEON(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayerGGRow_NEON() argument
1419 : "+r"(src_argb), // %0 in ARGBToBayerGGRow_NEON()
1430 void ARGBShuffleRow_NEON(const uint8* src_argb, uint8* dst_argb, in ARGBShuffleRow_NEON() argument
1444 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
[all …]
Dscale_posix.cc895 void ScaleARGBRowDown2_SSE2(const uint8* src_argb, in ScaleARGBRowDown2_SSE2() argument
909 : "+r"(src_argb), // %0 in ScaleARGBRowDown2_SSE2()
920 void ScaleARGBRowDown2Linear_SSE2(const uint8* src_argb, in ScaleARGBRowDown2Linear_SSE2() argument
937 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Linear_SSE2()
948 void ScaleARGBRowDown2Box_SSE2(const uint8* src_argb, in ScaleARGBRowDown2Box_SSE2() argument
970 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Box_SSE2()
986 void ScaleARGBRowDownEven_SSE2(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDownEven_SSE2() argument
1009 : "+r"(src_argb), // %0 in ScaleARGBRowDownEven_SSE2()
1027 void ScaleARGBRowDownEvenBox_SSE2(const uint8* src_argb, in ScaleARGBRowDownEvenBox_SSE2() argument
1062 : "+r"(src_argb), // %0 in ScaleARGBRowDownEvenBox_SSE2()
[all …]
Drotate_argb.cc164 int ARGBRotate(const uint8* src_argb, int src_stride_argb, in ARGBRotate() argument
168 if (!src_argb || width <= 0 || height == 0 || !dst_argb) { in ARGBRotate()
175 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
182 return ARGBCopy(src_argb, src_stride_argb, in ARGBRotate()
186 ARGBRotate90(src_argb, src_stride_argb, in ARGBRotate()
191 ARGBRotate270(src_argb, src_stride_argb, in ARGBRotate()
196 ARGBRotate180(src_argb, src_stride_argb, in ARGBRotate()
Drow_posix.cc741 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_SSSE3() argument
766 : "+r"(src_argb), // %0 in ARGBToYRow_SSSE3()
778 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_Unaligned_SSSE3() argument
803 : "+r"(src_argb), // %0 in ARGBToYRow_Unaligned_SSSE3()
817 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_SSSE3() argument
843 : "+r"(src_argb), // %0 in ARGBToYJRow_SSSE3()
855 void ARGBToYJRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_Unaligned_SSSE3() argument
881 : "+r"(src_argb), // %0 in ARGBToYJRow_Unaligned_SSSE3()
1175 void ARGBToUV444Row_SSSE3(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToUV444Row_SSSE3() argument
1225 : "+r"(src_argb), // %0 in ARGBToUV444Row_SSSE3()
[all …]
Dformat_conversion.cc63 int ARGBToBayer(const uint8* src_argb, int src_stride_argb, in ARGBToBayer() argument
72 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayer()
76 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToBayer()
81 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) { in ARGBToBayer()
101 ARGBToBayerRow(src_argb, dst_bayer, index_map[y & 1], width); in ARGBToBayer()
102 src_argb += src_stride_argb; in ARGBToBayer()
303 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in BayerToI420()
405 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer, in I420ToBayer()
525 int ARGBToBayer##BAYER(const uint8* src_argb, int src_stride_argb, \
528 return ARGBToBayer(src_argb, src_stride_argb, \
/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 …]
Drow_neon.cc639 void ARGBToRGBARow_NEON(const uint8* src_argb, uint8* dst_rgba, int pix) { in ARGBToRGBARow_NEON() argument
648 : "+r"(src_argb), // %0 in ARGBToRGBARow_NEON()
658 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
666 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
676 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
685 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
/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,
66 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
72 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
78 int ARGBToI444(const uint8* src_argb, int src_stride_argb,
[all …]
Drow.h555 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
556 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
557 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
558 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
559 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
560 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
566 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
567 void ARGBToYJRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
573 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
574 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
[all …]
Dscale_row.h69 const uint8* src_argb, uint8* dst_argb,
76 const uint16* src_argb, uint16* dst_argb,
171 void ScaleARGBRowDown2_C(const uint8* src_argb,
174 void ScaleARGBRowDown2Linear_C(const uint8* src_argb,
177 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride,
179 void ScaleARGBRowDownEven_C(const uint8* src_argb, ptrdiff_t src_stride,
182 void ScaleARGBRowDownEvenBox_C(const uint8* src_argb,
186 void ScaleARGBCols_C(uint8* dst_argb, const uint8* src_argb,
188 void ScaleARGBCols64_C(uint8* dst_argb, const uint8* src_argb,
190 void ScaleARGBColsUp2_C(uint8* dst_argb, const uint8* src_argb,
[all …]
Dplanar_functions.h123 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
181 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
202 int ARGBColorMatrix(const uint8* src_argb, int src_stride_argb,
236 int ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb,
250 int ARGBPolynomial(const uint8* src_argb, int src_stride_argb,
266 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
272 int ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb,
336 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
342 int ARGBUnattenuate(const uint8* src_argb, int src_stride_argb,
356 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