Home | History | Annotate | Download | only in ppc

Lines Matching defs:result

26 		int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */
27 result |= INT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */
28 result <<= 10; /* mantissa(hi) with one zero preceding bit. */
54 result += tailMantissa;
57 result >>= (62 - unbiasedHeadExponent);
59 /* Restore the sign of the result and return */
60 result = (result ^ hiNegationMask) - hiNegationMask;
61 return result;
67 /* |x| < 1, result is zero. */
74 int64_t result = INT64_MIN;
78 /* If the tail is positive, the correct result is something other than INT64_MIN.
93 result -= tailMantissa;
96 return result;