Home | History | Annotate | Download | only in bench

Lines Matching refs:curr

52         SkFixed curr = SkFloatToFixed(fx);
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;
71 int64_t curr = (int64_t)(fx * 65536 * 655536);
75 tmp = (SkFixed)(curr >> 16);
77 curr += step;
79 tmp = (SkFixed)(curr >> 16);
81 curr += step;
83 tmp = (SkFixed)(curr >> 16);
85 curr += step;
87 tmp = (SkFixed)(curr >> 16);
89 curr += step;
102 int64_t curr = (int64_t)(fx * 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;