Home
last modified time | relevance | path

Searched refs:lastBitMask (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat.c725 bits32 lastBitMask, roundBitsMask; in float32_round_to_int() local
755 lastBitMask = 1; in float32_round_to_int()
756 lastBitMask <<= 0x96 - aExp; in float32_round_to_int()
757 roundBitsMask = lastBitMask - 1; in float32_round_to_int()
761 z += lastBitMask>>1; in float32_round_to_int()
762 if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask; in float32_round_to_int()
1564 bits32 lastBitMask, roundBitsMask; in float64_round_to_int() local
1577 lastBitMask = 1; in float64_round_to_int()
1578 lastBitMask = ( lastBitMask<<( 0x432 - aExp ) )<<1; in float64_round_to_int()
1579 roundBitsMask = lastBitMask - 1; in float64_round_to_int()
[all …]
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat.c1643 bits32 lastBitMask, roundBitsMask; in float32_round_to_int() local
1673 lastBitMask = 1; in float32_round_to_int()
1674 lastBitMask <<= 0x96 - aExp; in float32_round_to_int()
1675 roundBitsMask = lastBitMask - 1; in float32_round_to_int()
1679 z += lastBitMask>>1; in float32_round_to_int()
1680 if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask; in float32_round_to_int()
2608 bits64 lastBitMask, roundBitsMask; in float64_round_to_int() local
2639 lastBitMask = 1; in float64_round_to_int()
2640 lastBitMask <<= 0x433 - aExp; in float64_round_to_int()
2641 roundBitsMask = lastBitMask - 1; in float64_round_to_int()
[all …]