Lines Matching defs:curr
63 SkFixed curr = SkFloatToFixed(fx);
66 dst[i + 0] = TILE(curr, count); curr += step;
67 dst[i + 1] = TILE(curr, count); curr += step;
68 dst[i + 2] = TILE(curr, count); curr += step;
69 dst[i + 3] = TILE(curr, count); curr += step;
82 int64_t curr = (int64_t)(fx * 65536 * 655536);
86 tmp = (SkFixed)(curr >> 16);
88 curr += step;
90 tmp = (SkFixed)(curr >> 16);
92 curr += step;
94 tmp = (SkFixed)(curr >> 16);
96 curr += step;
98 tmp = (SkFixed)(curr >> 16);
100 curr += step;
113 int64_t curr = (int64_t)(fx * 65536 * 655536 * 65536);
117 tmp = (SkFixed) (curr >> 32); dst[i + 0] = TILE(tmp, count); curr += step;
118 tmp = (SkFixed) (curr >> 32); dst[i + 1] = TILE(tmp, count); curr += step;
119 tmp = (SkFixed) (curr >> 32); dst[i + 2] = TILE(tmp, count); curr += step;
120 tmp = (SkFixed) (curr >> 32); dst[i + 3] = TILE(tmp, count); curr += step;