Searched refs:matrix_argb (Results 1 – 6 of 6) sorted by relevance
/external/libyuv/files/source/ |
D | row_common.cc | 348 void ARGBColorMatrixRow_C(uint8* dst_argb, const int8* matrix_argb, int width) { in ARGBColorMatrixRow_C() argument 354 int sb = (b * matrix_argb[0] + g * matrix_argb[1] + in ARGBColorMatrixRow_C() 355 r * matrix_argb[2] + a * matrix_argb[3]) >> 7; in ARGBColorMatrixRow_C() 356 int sg = (b * matrix_argb[4] + g * matrix_argb[5] + in ARGBColorMatrixRow_C() 357 r * matrix_argb[6] + a * matrix_argb[7]) >> 7; in ARGBColorMatrixRow_C() 358 int sr = (b * matrix_argb[8] + g * matrix_argb[9] + in ARGBColorMatrixRow_C() 359 r * matrix_argb[10] + a * matrix_argb[11]) >> 7; in ARGBColorMatrixRow_C()
|
D | planar_functions.cc | 1165 const int8* matrix_argb, in ARGBColorMatrix() argument 1167 if (!dst_argb || !matrix_argb || width <= 0 || height <= 0 || in ARGBColorMatrix() 1171 void (*ARGBColorMatrixRow)(uint8* dst_argb, const int8* matrix_argb, in ARGBColorMatrix() 1181 ARGBColorMatrixRow(dst, matrix_argb, width); in ARGBColorMatrix()
|
D | row_posix.cc | 3159 void ARGBColorMatrixRow_SSSE3(uint8* dst_argb, const int8* matrix_argb, in ARGBColorMatrixRow_SSSE3() argument 3211 : "r"(matrix_argb) // %2 in ARGBColorMatrixRow_SSSE3()
|
D | row_win.cc | 3552 void ARGBColorMatrixRow_SSSE3(uint8* dst_argb, const int8* matrix_argb, in ARGBColorMatrixRow_SSSE3() argument
|
/external/libyuv/files/include/libyuv/ |
D | planar_functions.h | 207 const int8* matrix_argb,
|
D | row.h | 683 void ARGBColorMatrixRow_C(uint8* dst_argb, const int8* matrix_argb, int width); 684 void ARGBColorMatrixRow_SSSE3(uint8* dst_argb, const int8* matrix_argb,
|