Searched refs:table_argb (Results 1 - 5 of 5) sorted by relevance

/external/libyuv/files/include/libyuv/
H A Dplanar_functions.h214 const uint8* table_argb,
H A Drow.h687 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);
/external/libyuv/files/source/
H A Dplanar_functions.cc1191 const uint8* table_argb,
1193 if (!dst_argb || !table_argb || width <= 0 || height <= 0 ||
1197 void (*ARGBColorTableRow)(uint8* dst_argb, const uint8* table_argb,
1206 ARGBColorTableRow(dst, table_argb, width);
1190 ARGBColorTable(uint8* dst_argb, int dst_stride_argb, const uint8* table_argb, int dst_x, int dst_y, int width, int height) argument
H A Drow_common.cc386 void ARGBColorTableRow_C(uint8* dst_argb, const uint8* table_argb, int width) { argument
392 dst_argb[0] = table_argb[b * 4 + 0];
393 dst_argb[1] = table_argb[g * 4 + 1];
394 dst_argb[2] = table_argb[r * 4 + 2];
395 dst_argb[3] = table_argb[a * 4 + 3];
H A Drow_win.cc3612 void ARGBColorTableRow_X86(uint8* dst_argb, const uint8* table_argb, argument
3620 mov edi, [esp + 16 + 8] /* table_argb */

Completed in 87 milliseconds