OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PACK_TWO_SHORTS
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/core/
SkBitmapProcState.h
155
#define
PACK_TWO_SHORTS
(pri, sec) ((pri) << 16 | (sec))
159
#define
PACK_TWO_SHORTS
(pri, sec) ((pri) | ((sec) << 16))
165
static inline uint32_t
pack_two_shorts
(U16CPU pri, U16CPU sec) {
function
168
return
PACK_TWO_SHORTS
(pri, sec);
171
#define
pack_two_shorts
(pri, sec)
PACK_TWO_SHORTS
(pri, sec)
macro
SkBitmapProcState_matrixProcs.cpp
254
*dst++ =
pack_two_shorts
(fx >> 16, (fx + dx) >> 16);
256
*dst++ =
pack_two_shorts
(fx >> 16, (fx + dx) >> 16);
295
uint32_t pattern0 =
PACK_TWO_SHORTS
(start + 0, start + 1);
296
uint32_t pattern1 =
PACK_TWO_SHORTS
(start + 2, start + 3);
Completed in 940 milliseconds