Home | History | Annotate | Download | only in bench

Lines Matching full:curr

55         SkFixed curr = SkFloatToFixed(fx);
58 dst[i + 0] = TILE(curr, count); curr += step;
59 dst[i + 1] = TILE(curr, count); curr += step;
60 dst[i + 2] = TILE(curr, count); curr += step;
61 dst[i + 3] = TILE(curr, count); curr += step;
74 int64_t curr = (int64_t)(fx * 65536 * 655536);
78 tmp = (SkFixed)(curr >> 16);
80 curr += step;
82 tmp = (SkFixed)(curr >> 16);
84 curr += step;
86 tmp = (SkFixed)(curr >> 16);
88 curr += step;
90 tmp = (SkFixed)(curr >> 16);
92 curr += step;
105 int64_t curr = (int64_t)(fx * 65536 * 655536 * 65536);
109 tmp = (SkFixed) (curr >> 32); dst[i + 0] = TILE(tmp, count); curr += step;
110 tmp = (SkFixed) (curr >> 32); dst[i + 1] = TILE(tmp, count); curr += step;
111 tmp = (SkFixed) (curr >> 32); dst[i + 2] = TILE(tmp, count); curr += step;
112 tmp = (SkFixed) (curr >> 32); dst[i + 3] = TILE(tmp, count); curr += step;