Searched refs:next_rgb565 (Results 1 – 1 of 1) sorted by relevance
491 const uint8* next_rgb565 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_C() local500 uint8 b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()501 uint8 g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()502 uint8 r2 = next_rgb565[1] >> 3; in RGB565ToUVRow_C()503 uint8 b3 = next_rgb565[2] & 0x1f; in RGB565ToUVRow_C()504 uint8 g3 = (next_rgb565[2] >> 5) | ((next_rgb565[3] & 0x07) << 3); in RGB565ToUVRow_C()505 uint8 r3 = next_rgb565[3] >> 3; in RGB565ToUVRow_C()514 next_rgb565 += 4; in RGB565ToUVRow_C()522 uint8 b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()523 uint8 g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()[all …]