Lines Matching refs:dx
37 virtual void performTest(int16_t dst[], float x, float dx, int count) = 0;
62 void performTest(int16_t dst[], float fx, float dx, int count) override {
64 SkFixed step = SkFloatToFixed(dx);
81 void performTest(int16_t dst[], float fx, float dx, int count) override {
83 int64_t step = (int64_t)(dx * 65536 * 655536);
112 void performTest(int16_t dst[], float fx, float dx, int count) override {
114 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536);
132 void performTest(int16_t dst[], float fx, float dx, int count) override {
135 tmp = SkFloatToFixed(fx); dst[i + 0] = TILE(tmp, count); fx += dx;
136 tmp = SkFloatToFixed(fx); dst[i + 1] = TILE(tmp, count); fx += dx;
137 tmp = SkFloatToFixed(fx); dst[i + 2] = TILE(tmp, count); fx += dx;
138 tmp = SkFloatToFixed(fx); dst[i + 3] = TILE(tmp, count); fx += dx;
150 void performTest(int16_t dst[], float fx, float dx, int count) override {
152 double ddx = dx;