Home | History | Annotate | Download | only in bench

Lines Matching full:step

56         SkFixed step = SkFloatToFixed(dx);
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;
75 int64_t step = (int64_t)(dx * 65536 * 655536);
80 curr += step;
84 curr += step;
88 curr += step;
92 curr += step;
106 int64_t step = (int64_t)(dx * 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;