/frameworks/av/libvideoeditor/vss/common/inc/ |
M4VIFI_Defines.h | 71 #define PACK_BGR24(rgb_ptr,Rx,Gx,Bx) {rgb_ptr[0] = (M4VIFI_UInt8)Bx; rgb_ptr[1] =\ 72 (M4VIFI_UInt8)Gx; rgb_ptr[2] = (M4VIFI_UInt8)Rx;} 73 #define PACK_RGB24(rgb_ptr,Rx,Gx,Bx) {rgb_ptr[0] = (M4VIFI_UInt8)Rx; rgb_ptr[1] =\ 74 (M4VIFI_UInt8)Gx; rgb_ptr[2] = (M4VIFI_UInt8)Bx;}
|
/external/qemu/android/camera/ |
camera-format-converters.c | 545 const uint8_t* rgb_ptr = (const uint8_t*)rgb; local 546 *r = rgb_ptr[0]; *g = rgb_ptr[1]; *b = rgb_ptr[2]; 547 return rgb_ptr + 4; 554 uint8_t* rgb_ptr = (uint8_t*)rgb; local 555 rgb_ptr[0] = r; rgb_ptr[1] = g; rgb_ptr[2] = b; 556 return rgb_ptr + 4 563 const uint8_t* rgb_ptr = (const uint8_t*)rgb; local 572 uint8_t* rgb_ptr = (uint8_t*)rgb; local 583 const uint8_t* rgb_ptr = (const uint8_t*)rgb; local 594 uint8_t* rgb_ptr = (uint8_t*)rgb; local 605 const uint8_t* rgb_ptr = (const uint8_t*)rgb; local 616 uint8_t* rgb_ptr = (uint8_t*)rgb; local [all...] |
/external/chromium_org/content/common/gpu/media/ |
rendering_helper.cc | 586 unsigned char* rgb_ptr = &((*rgb)[0]); local 589 *rgb_ptr++ = *rgba_ptr++; 590 *rgb_ptr++ = *rgba_ptr++; 591 *rgb_ptr++ = *rgba_ptr++;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 1026 struct schedule_instruction *rgb_ptr; local 1031 rgb_ptr = s->ReadyRGB; 1032 while(rgb_ptr) { 1033 struct schedule_instruction * rgb_next = rgb_ptr->NextReady; 1037 if (merge_instructions(&rgb_ptr->Instruction->U.P, &alpha_ptr->Instruction->U.P)) { 1040 remove_inst_from_list(&s->ReadyRGB, rgb_ptr); 1042 rgb_ptr->PairedInst = alpha_ptr; 1043 add_inst_to_list(&s->ReadyFullALU, rgb_ptr); 1048 rgb_ptr = rgb_next; [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 1026 struct schedule_instruction *rgb_ptr; local 1031 rgb_ptr = s->ReadyRGB; 1032 while(rgb_ptr) { 1033 struct schedule_instruction * rgb_next = rgb_ptr->NextReady; 1037 if (merge_instructions(&rgb_ptr->Instruction->U.P, &alpha_ptr->Instruction->U.P)) { 1040 remove_inst_from_list(&s->ReadyRGB, rgb_ptr); 1042 rgb_ptr->PairedInst = alpha_ptr; 1043 add_inst_to_list(&s->ReadyFullALU, rgb_ptr); 1048 rgb_ptr = rgb_next; [all...] |