OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:agrb
(Results
1 - 2
of
2
) sorted by null
/external/skia/tests/
ColorPrivTest.cpp
16
const uint64_t
agrb
= SkSplay(color);
local
17
ASSERT(
agrb
== 0x00A100C300B200D4ULL);
18
ASSERT(SkUnsplay(
agrb
<<8) == color);
/external/skia/include/core/
SkColorPriv.h
457
* (note, ARGB ->
AGRB
)
461
uint64_t
agrb
= (color >> 8) & mask; // 0x0000000000AA00GG
local
462
agrb
<<= 32; // 0x00AA00GG00000000
463
agrb
|= color & mask; // 0x00AA00GG00RR00BB
464
return
agrb
;
477
* (note,
AGRB
-> ARGB)
479
static inline uint32_t SkUnsplay(uint64_t
agrb
) {
482
((
agrb
& mask) >> 8) | // 0x00RR00BB
483
((
agrb
>> 32) & mask)); // 0xAARRGGBB
[
all
...]
Completed in 47 milliseconds