OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kBlue8
(Results
1 - 2
of
2
) sorted by null
/device/generic/goldfish/camera/
Converters.h
67
static const uint32_t
kBlue8
= 0x00ff0000;
71
static const uint32_t
kBlue8
= 0x000000ff;
74
static const uint32_t kWhite32 = kRed8 | kGreen8 |
kBlue8
;
92
#define B32(rgb) static_cast<uint8_t>(((rgb &
kBlue8
) >> 16) & 0xff)
109
#define B32(rgb) static_cast<uint8_t>(rgb &
kBlue8
)
/external/qemu/android/camera/
camera-format-converters.c
67
static const uint32_t
kBlue8
= 0x00ff0000;
71
static const uint32_t
kBlue8
= 0x000000ff;
90
#define B32(rgb) (uint8_t)((((rgb) &
kBlue8
) >> 16) & 0xff)
107
#define B32(rgb) (uint8_t)((rgb) &
kBlue8
)
[
all
...]
Completed in 126 milliseconds