• Home
  • Raw
  • Download

Lines Matching refs:dx

255     const SkFixed dx = s.fInvSx;  in ClampX_ClampY_filter_scale_SSE2()  local
269 if (dx > 0 && (unsigned)(fx >> 16) <= maxX && in ClampX_ClampY_filter_scale_SSE2()
270 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) { in ClampX_ClampY_filter_scale_SSE2()
276 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
281 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_filter_scale_SSE2()
282 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_filter_scale_SSE2()
283 fx + dx, fx); in ClampX_ClampY_filter_scale_SSE2()
295 fx += dx * 4; in ClampX_ClampY_filter_scale_SSE2()
304 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
314 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
318 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_filter_scale_SSE2()
319 fx + dx, fx); in ClampX_ClampY_filter_scale_SSE2()
320 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_filter_scale_SSE2()
355 fx += dx * 4; in ClampX_ClampY_filter_scale_SSE2()
363 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
393 const SkFixed dx = s.fInvSx; in ClampX_ClampY_nofilter_scale_SSE2() local
397 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) { in ClampX_ClampY_nofilter_scale_SSE2()
401 *xy++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16); in ClampX_ClampY_nofilter_scale_SSE2()
402 fx += 2 * dx; in ClampX_ClampY_nofilter_scale_SSE2()
406 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_nofilter_scale_SSE2()
409 __m128i wide_low = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_nofilter_scale_SSE2()
410 fx + dx, fx); in ClampX_ClampY_nofilter_scale_SSE2()
425 fx += dx * 8; in ClampX_ClampY_nofilter_scale_SSE2()
433 fx += dx; in ClampX_ClampY_nofilter_scale_SSE2()
442 *xy++ = pack_two_shorts(SkClampMax((fx + dx) >> 16, maxX), in ClampX_ClampY_nofilter_scale_SSE2()
444 fx += 2 * dx; in ClampX_ClampY_nofilter_scale_SSE2()
448 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_nofilter_scale_SSE2()
451 __m128i wide_low = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_nofilter_scale_SSE2()
452 fx + dx, fx); in ClampX_ClampY_nofilter_scale_SSE2()
475 fx += dx * 8; in ClampX_ClampY_nofilter_scale_SSE2()
483 fx += dx; in ClampX_ClampY_nofilter_scale_SSE2()
502 SkFixed dx = s.fInvSx; in ClampX_ClampY_filter_affine_SSE2() local
508 SkFixed dx2 = dx + dx; in ClampX_ClampY_filter_affine_SSE2()
511 __m128i wide_f = _mm_set_epi32(fx + dx, fy + dy, fx, fy); in ClampX_ClampY_filter_affine_SSE2()
555 fx += dx; in ClampX_ClampY_filter_affine_SSE2()
576 SkFixed dx = s.fInvSx; in ClampX_ClampY_nofilter_affine_SSE2() local
585 fx += dx; in ClampX_ClampY_nofilter_affine_SSE2()
590 SkFixed dx4 = dx * 4; in ClampX_ClampY_nofilter_affine_SSE2()
593 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_nofilter_affine_SSE2()
594 fx + dx, fx); in ClampX_ClampY_nofilter_affine_SSE2()
632 fx += dx; in ClampX_ClampY_nofilter_affine_SSE2()