HomeSort by relevance Sort by last modified time
    Searched refs:pack_two_shorts (Results 1 - 6 of 6) sorted by null

  /external/skia/legacy/src/core/
SkBitmapProcState.h 114 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec))
118 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16))
124 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { function
127 return PACK_TWO_SHORTS(pri, sec);
130 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec) macro
SkBitmapProcState_matrixProcs.cpp 212 *dst++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16);
214 *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);
  /external/skia/src/core/
SkBitmapProcState.h 156 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec))
160 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16))
166 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { function
169 return PACK_TWO_SHORTS(pri, sec);
172 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec) macro
SkBitmapProcState_matrixProcs.cpp 242 *dst++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16);
244 *dst++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16);
288 uint32_t pattern0 = PACK_TWO_SHORTS(start + 0, start + 1);
289 uint32_t pattern1 = PACK_TWO_SHORTS(start + 2, start + 3);
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 400 *xy++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16);
441 *xy++ = pack_two_shorts(SkClampMax((fx + dx) >> 16, maxX),
  /external/skia/legacy/src/opts/
SkBitmapProcState_opts_SSE2.cpp 400 *xy++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16);

Completed in 2510 milliseconds