Home | History | Annotate | Download | only in bench

Lines Matching refs:step

53         SkFixed step = SkFloatToFixed(dx);
55 dst[i + 0] = TILE(curr, count); curr += step;
56 dst[i + 1] = TILE(curr, count); curr += step;
57 dst[i + 2] = TILE(curr, count); curr += step;
58 dst[i + 3] = TILE(curr, count); curr += step;
72 int64_t step = (int64_t)(dx * 65536 * 655536);
77 curr += step;
81 curr += step;
85 curr += step;
89 curr += step;
103 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536);
106 tmp = (SkFixed) (curr >> 32); dst[i + 0] = TILE(tmp, count); curr += step;
107 tmp = (SkFixed) (curr >> 32); dst[i + 1] = TILE(tmp, count); curr += step;
108 tmp = (SkFixed) (curr >> 32); dst[i + 2] = TILE(tmp, count); curr += step;
109 tmp = (SkFixed) (curr >> 32); dst[i + 3] = TILE(tmp, count); curr += step;