HomeSort by relevance Sort by last modified time
    Searched full:src_stride_argb (Results 1 - 18 of 18) sorted by null

  /external/libyuv/files/source/
planar_functions.cc 269 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
278 src_argb = src_argb + (height - 1) * src_stride_argb;
279 src_stride_argb = -src_stride_argb;
286 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16) &&
295 src_argb += src_stride_argb;
351 int ARGBToI400(const uint8* src_argb, int src_stride_argb,
359 src_argb = src_argb + (height - 1) * src_stride_argb;
360 src_stride_argb = -src_stride_argb;
    [all...]
rotate_argb.cc 130 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
141 src_argb = src_argb + (height - 1) * src_stride_argb;
142 src_stride_argb = -src_stride_argb;
148 return ARGBCopy(src_argb, src_stride_argb,
152 ARGBRotate90(src_argb, src_stride_argb,
157 ARGBRotate270(src_argb, src_stride_argb,
162 ARGBRotate180(src_argb, src_stride_argb,
format_conversion.cc 138 int ARGBToBayer(const uint8* src_argb, int src_stride_argb,
144 src_argb = src_argb + (height - 1) * src_stride_argb;
145 src_stride_argb = -src_stride_argb;
152 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) {
167 src_argb += src_stride_argb;
376 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
527 int ARGBToBayer##BAYER(const uint8* src_argb, int src_stride_argb, \
530 return ARGBToBayer(src_argb, src_stride_argb, \
convert.cc 926 int ARGBToI420(const uint8* src_argb, int src_stride_argb,
939 src_argb = src_argb + (height - 1) * src_stride_argb;
940 src_stride_argb = -src_stride_argb;
943 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
957 if (IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) {
968 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width);
970 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width);
971 src_argb += src_stride_argb * 2;
    [all...]
convert_argb.cc 31 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
41 src_argb = src_argb + (height - 1) * src_stride_argb;
42 src_stride_argb = -src_stride_argb;
45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
    [all...]
scale_argb.cc     [all...]
row_win.cc 930 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
936 mov esi, [esp + 8 + 8] // src_stride_argb
996 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
1002 mov esi, [esp + 8 + 8] // src_stride_argb
1066 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
1072 mov esi, [esp + 8 + 8] // src_stride_argb
    [all...]
row_common.cc     [all...]
row_posix.cc 748 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
801 : "r"(static_cast<intptr_t>(src_stride_argb))
809 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
row.h 84 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,
    [all...]
  /external/libyuv/files/unit_test/
rotate_argb_test.cc 25 int src_stride_argb = (b * 2 + src_width) * 4; local
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff);
49 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
53 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
60 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
69 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
    [all...]
scale_argb_test.cc 25 int src_stride_argb = (b * 2 + src_width) * 4; local
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff);
49 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
54 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
62 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
72 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
    [all...]
  /external/libyuv/files/include/libyuv/
planar_functions.h 74 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...]
format_conversion.h 135 int ARGBToBayerBGGR(const uint8* src_argb, int src_stride_argb,
140 int ARGBToBayerGBRG(const uint8* src_argb, int src_stride_argb,
145 int ARGBToBayerGRBG(const uint8* src_argb, int src_stride_argb,
150 int ARGBToBayerRGGB(const uint8* src_argb, int src_stride_argb,
158 int ARGBToBayer(const uint8* src_argb, int src_stride_argb,
rotate_argb.h 24 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
scale_argb.h 23 int ARGBScale(const uint8* src_argb, int src_stride_argb,
row.h 227 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...]
convert_argb.h 36 int ARGBCopy(const uint8* src_argb, int src_stride_argb,

Completed in 94 milliseconds