Home
last modified time | relevance | path

Searched refs:EXTRACT_LOW_BITS (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/core/
DSkBitmapProcState_shaderproc.h38 subY = EXTRACT_LOW_BITS(fy, maxY); in SCALE_FILTER_NAME()
55 unsigned subX = EXTRACT_LOW_BITS(fx, maxX); in SCALE_FILTER_NAME()
79 #undef EXTRACT_LOW_BITS
DSkBitmapProcState_matrix.h34 i = (i << 4) | EXTRACT_LOW_BITS(f, max); in PACK_FILTER_Y_NAME()
41 i = (i << 4) | EXTRACT_LOW_BITS(f, max); in PACK_FILTER_X_NAME()
127 #undef EXTRACT_LOW_BITS
DSkBitmapProcState_matrixProcs.cpp62 #define EXTRACT_LOW_BITS(v, max) (((v) >> 12) & 0xF) macro
96 #define EXTRACT_LOW_BITS(v, max) (((unsigned)((v) & 0xFFFF) * ((max) + 1) >> 12) & 0xF) macro
127 #define EXTRACT_LOW_BITS(v, max) (((v * (max + 1)) >> 12) & 0xF) macro
/external/skia/src/opts/
DSkBitmapProcState_matrixProcs_neon.cpp127 #define EXTRACT_LOW_BITS(v, max) (((v) >> 12) & 0xF) macro
139 #define EXTRACT_LOW_BITS(v, max) ((((v) & 0xFFFF) * ((max) + 1) >> 12) & 0xF) macro
DSkBitmapProcState_matrix_neon.h184 i = (i << 4) | EXTRACT_LOW_BITS(f, max); in PACK_FILTER_Y_NAME()
191 i = (i << 4) | EXTRACT_LOW_BITS(f, max); in PACK_FILTER_X_NAME()
393 #undef EXTRACT_LOW_BITS