OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rgb_ptr
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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
...]
Completed in 261 milliseconds