Searched refs:integerPart (Results 1 – 7 of 7) sorted by relevance
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | APInt.h | 37 typedef uint64_t integerPart; typedef 41 host_char_bit * static_cast<unsigned int>(sizeof(integerPart)); 339 return VAL == ~integerPart(0) >> (APINT_BITS_PER_WORD - BitWidth); in isAllOnesValue() 1604 static void tcSet(integerPart *, integerPart, unsigned int); 1607 static void tcAssign(integerPart *, const integerPart *, unsigned int); 1610 static bool tcIsZero(const integerPart *, unsigned int); 1613 static int tcExtractBit(const integerPart *, unsigned int bit); 1619 static void tcExtract(integerPart *, unsigned int dstCount, 1620 const integerPart *, unsigned int srcBits, 1624 static void tcSetBit(integerPart *, unsigned int bit); [all …]
|
| HD | APFloat.h | 193 APFloat(const fltSemantics &, integerPart); 359 opStatus convertToInteger(integerPart *, unsigned int, bool, roundingMode, 363 opStatus convertFromSignExtendedInteger(const integerPart *, unsigned int, 365 opStatus convertFromZeroExtendedInteger(const integerPart *, unsigned int, 527 integerPart *significandParts(); 528 const integerPart *significandParts() const; 536 integerPart addSignificand(const APFloat &); 537 integerPart subtractSignificand(const APFloat &, integerPart); 588 opStatus convertToSignExtendedInteger(integerPart *, unsigned int, bool, 590 opStatus convertFromUnsignedParts(const integerPart *, unsigned int, [all …]
|
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | APInt.cpp | 698 integerPart MSWMask; in countLeadingZerosSlowCase() 699 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1; in countLeadingZerosSlowCase() 701 MSWMask = ~integerPart(0); in countLeadingZerosSlowCase() 706 integerPart MSW = pVal[i-1] & MSWMask; in countLeadingZerosSlowCase() 2297 static inline integerPart 2302 return ~(integerPart) 0 >> (integerPartWidth - bits); in lowBitMask() 2306 static inline integerPart 2307 lowHalf(integerPart part) in lowHalf() 2313 static inline integerPart 2314 highHalf(integerPart part) in highHalf() [all …]
|
| HD | APFloat.cpp | 343 lostFractionThroughTruncation(const integerPart *parts, in lostFractionThroughTruncation() 365 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits) in shiftRight() 412 static integerPart 413 ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest) in ulpsFromBoundary() 416 integerPart part, boundary; in ulpsFromBoundary() 424 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits)); in ulpsFromBoundary() 427 boundary = (integerPart) 1 << (partBits - 1); in ulpsFromBoundary() 441 return ~(integerPart) 0; /* A lot. */ in ulpsFromBoundary() 447 return ~(integerPart) 0; /* A lot. */ in ulpsFromBoundary() 452 return ~(integerPart) 0; /* A lot. */ in ulpsFromBoundary() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ItaniumMangle.cpp | 712 llvm::integerPart hexDigit in mangleFloat()
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | ARMISelLowering.cpp | 9528 integerPart cN; in isConstVecPow2() 9529 integerPart c0 = 0; in isConstVecPow2()
|
| /NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| HD | SelectionDAG.cpp | 2909 integerPart x[2]; in getNode()
|