Lines Matching refs:SK_Fixed1
388 x = SkFixedSqrt(SK_Fixed1); in TestMath()
389 REPORTER_ASSERT(reporter, x == SK_Fixed1); in TestMath()
390 x = SkFixedSqrt(SK_Fixed1/4); in TestMath()
391 REPORTER_ASSERT(reporter, x == SK_Fixed1/2); in TestMath()
392 x = SkFixedSqrt(SK_Fixed1*4); in TestMath()
393 REPORTER_ASSERT(reporter, x == SK_Fixed1*2); in TestMath()
403 x = SkFixedSqrt(SK_Fixed1 * i * i); in TestMath()
404 REPORTER_ASSERT(reporter, x == SK_Fixed1 * i); in TestMath()
427 REPORTER_ASSERT(reporter, result == SK_Fixed1); in TestMath()
428 result = SkFixedDiv(1, SK_Fixed1); in TestMath()
513 xx = (double)x / SK_Fixed1; in TestMath()
529 REPORTER_ASSERT(reporter, c == SK_Fixed1); in TestMath()