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

  /external/skia/src/core/
SkBitmapProcState_matrix.h 69 a = TILEX_PROCF(fx, maxX); fx += dx;
70 b = TILEX_PROCF(fx, maxX); fx += dx;
76 a = TILEX_PROCF(fx, maxX); fx += dx;
77 b = TILEX_PROCF(fx, maxX); fx += dx;
86 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
116 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
138 TILEX_PROCF(srcXY[0], maxX);
155 unsigned i = TILEX_PROCF(f, max);
157 return (i << 14) | (TILEX_PROCF((f + one), max));
268 #undef TILEX_PROCF
    [all...]
SkBitmapProcState_shaderproc.h 55 unsigned x0 = TILEX_PROCF(fx, maxX);
56 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
76 #undef TILEX_PROCF
SkBitmapProcState_matrix_repeat.h 34 * #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
101 * TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
132 /* TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16) */
161 a = TILEX_PROCF(fx, maxX); fx += dx;
162 b = TILEX_PROCF(fx, maxX); fx += dx;
168 a = TILEX_PROCF(fx, maxX); fx += dx;
169 b = TILEX_PROCF(fx, maxX); fx += dx;
181 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
224 * TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
253 /* TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16) *
    [all...]
SkBitmapProcState_matrix_clamp.h 35 * #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
103 * TILEX_PROCF(fx,max) SkClampMax((fx)>>16, max)
160 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
425 TILEX_PROCF(srcXY[0], maxX);
436 TILEX_PROCF (base_srcXY[i * 2 + 0], maxX);
450 TILEX_PROCF (base_srcXY[i * 2 + 0], maxX);
484 unsigned i = TILEX_PROCF(f, max);
486 return (i << 14) | (TILEX_PROCF((f + one), max));
904 #undef TILEX_PROCF
    [all...]
SkBitmapProcState.cpp 301 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
314 #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
327 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
SkBitmapProcState_matrixProcs.cpp 35 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
47 #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
64 #define TILEX_PROCF(fx, max) (tileProcX(fx) * ((max) + 1) >> 16)

Completed in 55 milliseconds