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

  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 44 unsigned subX = TILEX_LOW_BITS(fx, maxX);
68 #undef TILEX_LOW_BITS
SkBitmapProcState_matrix.h 146 i = (i << 4) | TILEX_LOW_BITS(f, max);
277 #undef TILEX_LOW_BITS
SkBitmapProcState.cpp 296 #define TILEX_LOW_BITS(fx, max) (((fx) >> 12) & 0xF)
309 #define TILEX_LOW_BITS(fx, max) ((((fx) & 0xFFFF) * ((max) + 1) >> 12) & 0xF)
322 #define TILEX_LOW_BITS(fx, max) (((fx) >> 12) & 0xF)
SkBitmapProcState_matrixProcs.cpp 33 #define TILEX_LOW_BITS(fx, max) (((fx) >> 12) & 0xF)
45 #define TILEX_LOW_BITS(fx, max) ((((fx) & 0xFFFF) * ((max) + 1) >> 12) & 0xF)
62 #define TILEX_LOW_BITS(fx, max) ((tileProcX(fx) * ((max) + 1) >> 12) & 0xF)
SkBitmapProcState_matrix_repeat.h 31 * #define TILEX_LOW_BITS(fx, max) ((((fx) & 0xFFFF) * ((max) + 1) >> 12) & 0xF)
436 i = (i << 4) | TILEX_LOW_BITS(f, max);
571 #undef TILEX_LOW_BITS
SkBitmapProcState_matrix_clamp.h 32 * #define TILEX_LOW_BITS(fx, max) (((fx) >> 12) & 0xF)
480 i = (i << 4) | TILEX_LOW_BITS(f, max);
546 /* i<<4 | TILEX_LOW_BITS(fx) */
662 /* i<<4 | TILEX_LOW_BITS(fx) */
683 /* i<<4 | TILEX_LOW_BITS(fx) */
811 /* i<<4 | TILEX_LOW_BITS(fx) */
835 /* i<<4 | TILEX_LOW_BITS(fx) */
918 #undef TILEX_LOW_BITS

Completed in 62 milliseconds