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 59 a = TILEX_PROCF(fx, maxX); fx += dx;
60 b = TILEX_PROCF(fx, maxX); fx += dx;
66 a = TILEX_PROCF(fx, maxX); fx += dx;
67 b = TILEX_PROCF(fx, maxX); fx += dx;
76 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
106 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
128 TILEX_PROCF(srcXY[0], maxX);
145 unsigned i = TILEX_PROCF(f, max);
147 return (i << 14) | (TILEX_PROCF((f + one), max));
258 #undef TILEX_PROCF
    [all...]
SkBitmapProcState_shaderproc.h 45 unsigned x0 = TILEX_PROCF(fx, maxX);
46 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
66 #undef TILEX_PROCF
SkBitmapProcState_matrix_repeat.h 29 * #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
96 * TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
127 /* TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16) */
156 a = TILEX_PROCF(fx, maxX); fx += dx;
157 b = TILEX_PROCF(fx, maxX); fx += dx;
163 a = TILEX_PROCF(fx, maxX); fx += dx;
164 b = TILEX_PROCF(fx, maxX); fx += dx;
176 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
219 * TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
248 /* TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16) *
    [all...]
SkBitmapProcState_matrix_clamp.h 30 * #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
98 * TILEX_PROCF(fx,max) SkClampMax((fx)>>16, max)
155 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
268 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
420 TILEX_PROCF(srcXY[0], maxX);
431 TILEX_PROCF (base_srcXY[i * 2 + 0], maxX);
445 TILEX_PROCF (base_srcXY[i * 2 + 0], maxX);
479 unsigned i = TILEX_PROCF(f, max);
481 return (i << 14) | (TILEX_PROCF((f + one), max));
899 #undef TILEX_PROCF
    [all...]
SkBitmapProcState.cpp 294 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
307 #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
320 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
SkBitmapProcState_matrixProcs.cpp 31 #define TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
43 #define TILEX_PROCF(fx, max) (((fx) & 0xFFFF) * ((max) + 1) >> 16)
60 #define TILEX_PROCF(fx, max) (tileProcX(fx) * ((max) + 1) >> 16)

Completed in 3516 milliseconds