Lines Matching refs:largest
52 double largest = std::max(std::max(std::max(fPts[0].fX, fPts[0].fY), fPts[1].fX), fPts[1].fY); in nearPoint() local
53 largest = std::max(largest, -tiniest); in nearPoint()
54 if (!AlmostEqualUlps_Pin(largest, largest + dist)) { // is the dist within ULPS tolerance? in nearPoint()
58 *unequal = (float) largest != (float) (largest + dist); in nearPoint()
76 double largest = std::max(std::max(std::max(fPts[0].fX, fPts[0].fY), fPts[1].fX), fPts[1].fY); in nearRay() local
77 largest = std::max(largest, -tiniest); in nearRay()
78 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance? in nearRay()
108 double largest = std::max(std::max(y, left), right); in NearPointH() local
109 largest = std::max(largest, -tiniest); in NearPointH()
110 if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance? in NearPointH()
143 double largest = std::max(std::max(x, top), bottom); in NearPointV() local
144 largest = std::max(largest, -tiniest); in NearPointV()
145 if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance? in NearPointV()