Home | History | Annotate | Download | only in source

Lines Matching full:src_raw

1515 int RAWToARGB(const uint8* src_raw, int src_stride_raw,
1520 src_raw = src_raw + (height - 1) * src_stride_raw;
1523 void (*RAWToARGBRow)(const uint8* src_raw, uint8* dst_argb, int pix);
1527 IS_ALIGNED(src_raw, 16) && (src_stride_raw % 16 == 0) &&
1537 RAWToARGBRow(src_raw, dst_argb, width);
1538 src_raw += src_stride_raw;