Home | History | Annotate | Download | only in tests

Lines Matching refs:xr

368         SkFract xr = SkFractSqrt(x);
370 REPORTER_ASSERT(reporter, xr == check ||
371 xr == check-1 ||
372 xr == check+1);
374 xr = SkFixedSqrt(x);
377 REPORTER_ASSERT(reporter, xr == check || xr == check-1);
379 xr = SkSqrt32(x);
382 REPORTER_ASSERT(reporter, xr == check || xr == check-1);