Searched refs:table_argb (Results 1 – 5 of 5) sorted by relevance
/external/libyuv/files/source/ |
D | row_common.cc | 386 void ARGBColorTableRow_C(uint8* dst_argb, const uint8* table_argb, int width) { in ARGBColorTableRow_C() argument 392 dst_argb[0] = table_argb[b * 4 + 0]; in ARGBColorTableRow_C() 393 dst_argb[1] = table_argb[g * 4 + 1]; in ARGBColorTableRow_C() 394 dst_argb[2] = table_argb[r * 4 + 2]; in ARGBColorTableRow_C() 395 dst_argb[3] = table_argb[a * 4 + 3]; in ARGBColorTableRow_C()
|
D | planar_functions.cc | 1191 const uint8* table_argb, in ARGBColorTable() argument 1193 if (!dst_argb || !table_argb || width <= 0 || height <= 0 || in ARGBColorTable() 1197 void (*ARGBColorTableRow)(uint8* dst_argb, const uint8* table_argb, in ARGBColorTable() 1206 ARGBColorTableRow(dst, table_argb, width); in ARGBColorTable()
|
D | row_win.cc | 3612 void ARGBColorTableRow_X86(uint8* dst_argb, const uint8* table_argb, in ARGBColorTableRow_X86() argument
|
/external/libyuv/files/include/libyuv/ |
D | planar_functions.h | 214 const uint8* table_argb,
|
D | row.h | 687 void ARGBColorTableRow_C(uint8* dst_argb, const uint8* table_argb, int width); 688 void ARGBColorTableRow_X86(uint8* dst_argb, const uint8* table_argb, int width);
|