Searched defs:src_stride_abgr (Results 1 - 3 of 3) sorted by relevance

/external/libyuv/files/source/
H A Dconvert_argb.cc297 int ABGRToARGB(const uint8* src_abgr, int src_stride_abgr, argument
307 src_abgr = src_abgr + (height - 1) * src_stride_abgr;
308 src_stride_abgr = -src_stride_abgr;
315 IS_ALIGNED(src_abgr, 16) && IS_ALIGNED(src_stride_abgr, 16) &&
323 src_abgr += src_stride_abgr;
H A Dconvert.cc1042 int ABGRToI420(const uint8* src_abgr, int src_stride_abgr, argument
1055 src_abgr = src_abgr + (height - 1) * src_stride_abgr;
1056 src_stride_abgr = -src_stride_abgr;
1059 void (*ABGRToUVRow)(const uint8* src_abgr0, int src_stride_abgr,
1073 if (IS_ALIGNED(src_abgr, 16) && IS_ALIGNED(src_stride_abgr, 16)) {
1084 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width);
1086 ABGRToYRow(src_abgr + src_stride_abgr, dst_y + dst_stride_y, width);
1087 src_abgr += src_stride_abgr * 2;
H A Drow_posix.cc1148 void ABGRToUVRow_SSSE3(const uint8* src_abgr0, int src_stride_abgr, argument
1201 : "r"(static_cast<intptr_t>(src_stride_abgr))
1209 void ABGRToUVRow_Unaligned_SSSE3(const uint8* src_abgr0, int src_stride_abgr, argument
1266 : "r"(static_cast<intptr_t>(src_stride_abgr))

Completed in 40 milliseconds