Home | History | Annotate | Download | only in Support

Lines Matching full:boundary

418 /* The number of ulps from the boundary (zero, or half if ISNEAREST)
425 integerPart part, boundary;
436 boundary = (integerPart) 1 << (partBits - 1);
438 boundary = 0;
441 if (part - boundary <= boundary - part)
442 return part - boundary;
444 return boundary - part;
447 if (part == boundary) {
453 } else if (part == boundary - 1) {