Lines Matching refs:high
103 // Make sure unused high bits are cleared
293 // Split y into high 32-bit part (hy) and low 32-bit part (ly)
299 // Split x into high and low words
458 // 0^0==1 so clear the high bits in case they got set.
683 /// This function returns the high "numBits" bits of this APInt.
907 // extract the high 52 bits from the correct words in pVal.
1098 val[breakWord] |= ~0ULL << bitsInWord; // set high bits
1103 // the next word (shifted into this word's high bits).
1531 // and v so that its high bits are shifted to the top of v's range without
1566 // on v[n-2] determines at high speed most of the cases in which the trial
1866 // All high words are zero, just use native divide
1914 // All high words are zero, just use native remainder
2436 the least significant bit of DST. All high bits above srcBITS in
2455 clear the high bits. */
2466 /* Clear high parts. */
2556 integerPart low, mid, high, srcPart;
2558 /* [ LOW, HIGH ] = MULTIPLIER * SRC[i] + DST[i] + CARRY.
2570 high = 0;
2573 high = highHalf(srcPart) * highHalf(multiplier);
2576 high += highHalf(mid);
2579 high++;
2583 high += highHalf(mid);
2586 high++;
2591 high++;
2598 high++;
2603 carry = high;