Searched refs:next_rgb565 (Results 1 – 4 of 4) 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 …]
571 const uint8_t* next_rgb565 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_C() local580 uint8_t b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()581 uint8_t g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()582 uint8_t r2 = next_rgb565[1] >> 3; in RGB565ToUVRow_C()583 uint8_t b3 = next_rgb565[2] & 0x1f; in RGB565ToUVRow_C()584 uint8_t g3 = (next_rgb565[2] >> 5) | ((next_rgb565[3] & 0x07) << 3); in RGB565ToUVRow_C()585 uint8_t r3 = next_rgb565[3] >> 3; in RGB565ToUVRow_C()594 next_rgb565 += 4; in RGB565ToUVRow_C()602 uint8_t b2 = next_rgb565[0] & 0x1f; in RGB565ToUVRow_C()603 uint8_t g2 = (next_rgb565[0] >> 5) | ((next_rgb565[1] & 0x07) << 3); in RGB565ToUVRow_C()[all …]
3358 : [src_rgb565] "r"(src_rgb565), [next_rgb565] "r"(src_stride_rgb565), in RGB565ToUVRow_MMI()