Searched refs:rgb_ptr (Results 1 – 2 of 2) sorted by relevance
244 rgb_t *rgb_ptr = (rgb_t *) rgb_image->data; in image_rgb_to_yuyv() local262 pixel_rgb_to_yuyv (rgb_ptr++, &yuyv); in image_rgb_to_yuyv()281 rgb_t *rgb_ptr = (rgb_t *) rgb888_image->data; in image_rgb888_to_rgb565() local299 *dest++ = ((rgb_ptr->b & 0xF8) << 8) | in image_rgb888_to_rgb565()300 ((rgb_ptr->g & 0xFC) << 3) | in image_rgb888_to_rgb565()301 (rgb_ptr->r >> 3); in image_rgb888_to_rgb565()302 rgb_ptr++; in image_rgb888_to_rgb565()
1026 struct schedule_instruction *rgb_ptr; in pair_instructions() local1031 rgb_ptr = s->ReadyRGB; in pair_instructions()1032 while(rgb_ptr) { in pair_instructions()1033 struct schedule_instruction * rgb_next = rgb_ptr->NextReady; in pair_instructions()1037 if (merge_instructions(&rgb_ptr->Instruction->U.P, &alpha_ptr->Instruction->U.P)) { in pair_instructions()1040 remove_inst_from_list(&s->ReadyRGB, rgb_ptr); in pair_instructions()1042 rgb_ptr->PairedInst = alpha_ptr; in pair_instructions()1043 add_inst_to_list(&s->ReadyFullALU, rgb_ptr); in pair_instructions()1048 rgb_ptr = rgb_next; in pair_instructions()