Searched refs:roundBitsMask (Results 1 – 1 of 1) sorted by relevance
1672 uint32_t lastBitMask, roundBitsMask; in float32_round_to_int() local1703 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() local3055 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 …]