Home
last modified time | relevance | path

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

/external/qemu/fpu/
Dsoftfloat.c1672 uint32_t lastBitMask, roundBitsMask; in float32_round_to_int() local
1703 roundBitsMask = lastBitMask - 1; in float32_round_to_int()
1708 if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask; in float32_round_to_int()
1712 z += roundBitsMask; in float32_round_to_int()
1715 z &= ~ roundBitsMask; in float32_round_to_int()
3023 uint64_t lastBitMask, roundBitsMask; in float64_round_to_int() local
3055 roundBitsMask = lastBitMask - 1; in float64_round_to_int()
3060 if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask; in float64_round_to_int()
3064 z += roundBitsMask; in float64_round_to_int()
3067 z &= ~ roundBitsMask; in float64_round_to_int()
[all …]