Lines Matching refs:src_argb
30 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()
147 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayer()
152 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) { in ARGBToBayer()
166 ARGBToBayerRow(src_argb, dst_bayer, index_map[y & 1], width); in ARGBToBayer()
167 src_argb += src_stride_argb; in ARGBToBayer()
374 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in BayerToI420()
468 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer, in I420ToBayer()
527 int ARGBToBayer##BAYER(const uint8* src_argb, int src_stride_argb, \
530 return ARGBToBayer(src_argb, src_stride_argb, \