Searched refs:hiWord (Results 1 – 2 of 2) sorted by relevance
305 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase() local317 if (hiWord == loWord) in setBitsSlowCase()320 U.pVal[hiWord] |= hiMask; in setBitsSlowCase()326 for (unsigned word = loWord + 1; word < hiWord; ++word) in setBitsSlowCase()415 unsigned hiWord = whichWord(bitPosition + numBits - 1); in insertBits() local416 if (loWord == hiWord) { in insertBits()427 U.pVal[hiWord] &= ~(maskBits >> (wordBits - loBit)); in insertBits()428 U.pVal[hiWord] |= subBits >> (wordBits - loBit); in insertBits()441 unsigned hiWord = whichWord(bitPosition + numBits - 1); in extractBits() local444 if (loWord == hiWord) in extractBits()[all …]
878 unsigned hiWord = whichWord(n-1); in roundToDouble() local879 if (hiWord == 0) { in roundToDouble()884 assert(hiWord > 0 && "huh?"); in roundToDouble()885 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD); in roundToDouble()886 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD); in roundToDouble()