Lines Matching refs:result
152 SkDebugf("src:%d dst:%d a:%d result:%d float:%g\n",
158 SkDebugf("death src:%d dst:%d a:%d result:%d float:%g\n",
367 // x, y, expected result
467 SkFixed result = SkFixedDiv(100, 100);
468 REPORTER_ASSERT(reporter, result == SK_Fixed1);
469 result = SkFixedDiv(1, SK_Fixed1);
470 REPORTER_ASSERT(reporter, result == 1);
471 result = SkFixedDiv(10 - 1, SK_Fixed1 * 3);
472 REPORTER_ASSERT(reporter, result == 3);
491 SkFixed result = SkFixedDiv(numer, denom);
497 REPORTER_ASSERT(reporter, result != (SkFixed)SK_NaN32);
503 if (result != (int32_t)check) {
505 result, check);
507 REPORTER_ASSERT(reporter, result == (int32_t)check);