Lines Matching defs:largest
50 // find the ordinal in the original line with the largest unsigned exponent
52 double largest = std::max(std::max(std::max(fPts[0].fX, fPts[0].fY), fPts[1].fX), fPts[1].fY);
53 largest = std::max(largest, -tiniest);
54 if (!AlmostEqualUlps_Pin(largest, largest + dist)) { // is the dist within ULPS tolerance?
58 *unequal = (float) largest != (float) (largest + dist);
74 // find the ordinal in the original line with the largest unsigned exponent
76 double largest = std::max(std::max(std::max(fPts[0].fX, fPts[0].fY), fPts[1].fX), fPts[1].fY);
77 largest = std::max(largest, -tiniest);
78 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
108 double largest = std::max(std::max(y, left), right);
109 largest = std::max(largest, -tiniest);
110 if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance?
143 double largest = std::max(std::max(x, top), bottom);
144 largest = std::max(largest, -tiniest);
145 if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance?