Searched refs:next_rgb565 (Results 1 – 1 of 1) sorted by relevance
435 const uint8* next_rgb565 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_C() local444 uint8 b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()445 uint8 g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()446 uint8 r2 = next_rgb565[1] >> 3; in RGB565ToUVRow_C()447 uint8 b3 = next_rgb565[2] & 0x1f; in RGB565ToUVRow_C()448 uint8 g3 = (next_rgb565[2] >> 5) | ((next_rgb565[3] & 0x07) << 3); in RGB565ToUVRow_C()449 uint8 r3 = next_rgb565[3] >> 3; in RGB565ToUVRow_C()458 next_rgb565 += 4; in RGB565ToUVRow_C()466 uint8 b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()467 uint8 g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()[all …]