Home | History | Annotate | Download | only in Support

Lines Matching refs:integerPartWidth

39 COMPILE_TIME_ASSERT(integerPartWidth % 4 == 0);
81 power * 815 / (351 * integerPartWidth) + 1
93 / (351 * integerPartWidth));
101 return ((bits) + integerPartWidth - 1) / integerPartWidth;
354 if (bits <= partCount * integerPartWidth &&
419 count = bits / integerPartWidth;
420 partBits = bits % integerPartWidth + 1;
422 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
532 assert(count != 0 && count <= integerPartWidth / 4);
534 part >>= (integerPartWidth - 4 * count);
727 PartCount*integerPartWidth - semantics->precision + 1;
728 assert(NumHighBits <= integerPartWidth && "Can not have more high bits to "
729 "fill than integerPartWidth");
731 ~integerPart(0) << (integerPartWidth - NumHighBits);
749 PartCount*integerPartWidth - semantics->precision + 1;
750 assert(NumHighBits <= integerPartWidth && "Can not have more high bits to "
751 "clear than integerPartWidth");
1727 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1732 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
1767 fs = V.convertToInteger(x, parts * integerPartWidth, true,
1772 fs = V.convertFromZeroExtendedInteger(x, parts * integerPartWidth, true,
2286 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) {
2333 unsigned bitPos = partsCount * integerPartWidth;
2361 hex_value <<= bitPos % integerPartWidth;
2362 significand[bitPos / integerPartWidth] |= hex_value;
2393 expAdjustment -= partsCount * integerPartWidth;
2424 calcSemantics.precision = parts * integerPartWidth - 1;
2753 shift = integerPartWidth - valueBits % integerPartWidth;
2781 count = (valueBits + integerPartWidth - 1) / integerPartWidth;
2786 /* Put the most significant integerPartWidth bits in "part". */
2793 part |= significand[count - 1] >> (integerPartWidth - shift);
2796 unsigned int curDigits = integerPartWidth / 4;
2852 // Current implementation requires integerPartWidth==64, which is correct at
3379 PartCount*integerPartWidth - semantics->precision;
3430 (((integerPart) 1) << ((Sem.precision - 1) % integerPartWidth));