Lines Matching defs:exact
165 int exact = a+b;
166 if (exact > 255) { exact = 255; }
167 if (exact < 0) { exact = 0; }
169 REPORTER_ASSERT(r, Sk16b(a).saturatedAdd(Sk16b(b))[0] == exact);
191 int exact = (a*b+127)/255;
199 REPORTER_ASSERT(r, correct == exact);
203 REPORTER_ASSERT(r, fast-exact >= -1 && fast-exact <= 1);
205 REPORTER_ASSERT(r, fast == exact);