Lines Matching refs:TILE
15 #define TILE(x, width) (((x) & 0xFFFF) * width >> 16)
65 dst[i + 0] = TILE(curr, count); curr += step;
66 dst[i + 1] = TILE(curr, count); curr += step;
67 dst[i + 2] = TILE(curr, count); curr += step;
68 dst[i + 3] = TILE(curr, count); curr += step;
86 dst[i + 0] = TILE(tmp, count);
90 dst[i + 1] = TILE(tmp, count);
94 dst[i + 2] = TILE(tmp, count);
98 dst[i + 3] = TILE(tmp, count);
116 tmp = (SkFixed) (curr >> 32); dst[i + 0] = TILE(tmp, count); curr += step;
117 tmp = (SkFixed) (curr >> 32); dst[i + 1] = TILE(tmp, count); curr += step;
118 tmp = (SkFixed) (curr >> 32); dst[i + 2] = TILE(tmp, count); curr += step;
119 tmp = (SkFixed) (curr >> 32); dst[i + 3] = TILE(tmp, count); curr += step;
134 tmp = SkFloatToFixed(fx); dst[i + 0] = TILE(tmp, count); fx += dx;
135 tmp = SkFloatToFixed(fx); dst[i + 1] = TILE(tmp, count); fx += dx;
136 tmp = SkFloatToFixed(fx); dst[i + 2] = TILE(tmp, count); fx += dx;
137 tmp = SkFloatToFixed(fx); dst[i + 3] = TILE(tmp, count); fx += dx;
154 tmp = SkDoubleToFixed(ffx); dst[i + 0] = TILE(tmp, count); ffx += ddx;
155 tmp = SkDoubleToFixed(ffx); dst[i + 1] = TILE(tmp, count); ffx += ddx;
156 tmp = SkDoubleToFixed(ffx); dst[i + 2] = TILE(tmp, count); ffx += ddx;
157 tmp = SkDoubleToFixed(ffx); dst[i + 3] = TILE(tmp, count); ffx += ddx;