Lines Matching refs:myexponent
3452 uint64_t myexponent, mysignificand; in convertF80LongDoubleAPFloatToAPInt() local
3455 myexponent = exponent+16383; //bias in convertF80LongDoubleAPFloatToAPInt()
3457 if (myexponent==1 && !(mysignificand & 0x8000000000000000ULL)) in convertF80LongDoubleAPFloatToAPInt()
3458 myexponent = 0; // denormal in convertF80LongDoubleAPFloatToAPInt()
3460 myexponent = 0; in convertF80LongDoubleAPFloatToAPInt()
3463 myexponent = 0x7fff; in convertF80LongDoubleAPFloatToAPInt()
3467 myexponent = 0x7fff; in convertF80LongDoubleAPFloatToAPInt()
3474 (myexponent & 0x7fffLL); in convertF80LongDoubleAPFloatToAPInt()
3542 uint64_t myexponent; in convertIEEEFloatToAPInt() local
3547 myexponent = exponent + bias; in convertIEEEFloatToAPInt()
3550 if (myexponent == 1 && in convertIEEEFloatToAPInt()
3552 myexponent = 0; // denormal in convertIEEEFloatToAPInt()
3554 myexponent = ::exponentZero(S) + bias; in convertIEEEFloatToAPInt()
3560 myexponent = ::exponentInf(S) + bias; in convertIEEEFloatToAPInt()
3566 myexponent = ::exponentNaN(S) + bias; in convertIEEEFloatToAPInt()
3582 uint64_t shifted_exponent = (myexponent & exponent_mask) in convertIEEEFloatToAPInt()
3757 uint64_t myexponent = (i2 & 0x7fff); in initFromF80LongDoubleAPInt() local
3765 if (myexponent == 0 && mysignificand == 0) { in initFromF80LongDoubleAPInt()
3767 } else if (myexponent==0x7fff && mysignificand==0x8000000000000000ULL) { in initFromF80LongDoubleAPInt()
3769 } else if ((myexponent == 0x7fff && mysignificand != 0x8000000000000000ULL) || in initFromF80LongDoubleAPInt()
3770 (myexponent != 0x7fff && myexponent != 0 && myintegerbit == 0)) { in initFromF80LongDoubleAPInt()
3777 exponent = myexponent - 16383; in initFromF80LongDoubleAPInt()
3780 if (myexponent==0) // denormal in initFromF80LongDoubleAPInt()
3834 uint64_t myexponent = in initFromIEEEAPInt() local
3845 bool is_zero = myexponent == 0 && all_zero_significand; in initFromIEEEAPInt()
3848 if (myexponent - bias == ::exponentInf(S) && all_zero_significand) { in initFromIEEEAPInt()
3857 is_nan = myexponent - bias == ::exponentNaN(S) && !all_zero_significand; in initFromIEEEAPInt()
3864 is_nan = myexponent - bias == ::exponentNaN(S) && all_ones_significand; in initFromIEEEAPInt()
3883 exponent = myexponent - bias; in initFromIEEEAPInt()
3885 if (myexponent == 0) // denormal in initFromIEEEAPInt()