Lines Matching refs:oldmant
452 union fp_mant64 oldmant; in fp_roundint() local
463 oldmant = dest->mant; in fp_roundint()
471 if (oldmant.m64 == dest->mant.m64) in fp_roundint()
476 if (oldmant.m32[1] == dest->mant.m32[1]) in fp_roundint()
506 if (oldmant.m64 == (1ULL << 63)) in fp_roundint()
511 if (!(oldmant.m32[0] & mask)) in fp_roundint()
513 if (oldmant.m32[0] & (mask << 1)) in fp_roundint()
515 if (!(oldmant.m32[0] << (dest->exp - 0x3ffd)) && in fp_roundint()
516 !oldmant.m32[1]) in fp_roundint()
520 if (oldmant.m32[1] & 0x80000000) in fp_roundint()
522 if (oldmant.m32[0] & 1) in fp_roundint()
524 if (!(oldmant.m32[1] << 1)) in fp_roundint()
529 if (!(oldmant.m32[1] & mask)) in fp_roundint()
531 if (oldmant.m32[1] & (mask << 1)) in fp_roundint()
533 if (!(oldmant.m32[1] << (dest->exp - 0x401d))) in fp_roundint()