HomeSort by relevance Sort by last modified time
    Searched refs:integerPart (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/ADT/
APFloat.h 193 APFloat(const fltSemantics &, integerPart);
321 opStatus convertToInteger(integerPart *, unsigned int, bool, roundingMode,
325 opStatus convertFromSignExtendedInteger(const integerPart *, unsigned int,
327 opStatus convertFromZeroExtendedInteger(const integerPart *, unsigned int,
458 integerPart *significandParts();
459 const integerPart *significandParts() const;
467 integerPart addSignificand(const APFloat &);
468 integerPart subtractSignificand(const APFloat &, integerPart);
518 opStatus convertToSignExtendedInteger(integerPart *, unsigned int, bool
    [all...]
APInt.h 39 typedef uint64_t integerPart;
43 host_char_bit * static_cast<unsigned int>(sizeof(integerPart));
342 return VAL == ~integerPart(0) >> (APINT_BITS_PER_WORD - BitWidth);
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 540 integerPart singleWord = ~integerPart(0) << (integerPartWidth - 1);
541 integerPart carry = APInt::tcDecrement(&singleWord, 1);
542 EXPECT_EQ(carry, integerPart(0));
543 EXPECT_EQ(singleWord, ~integerPart(0) >> 1);
548 integerPart singleWord = 0;
549 integerPart carry = APInt::tcDecrement(&singleWord, 1);
550 EXPECT_EQ(carry, integerPart(1));
551 EXPECT_EQ(singleWord, ~integerPart(0));
558 integerPart test[4] = {0x1, 0x1, 0x1, 0x1}
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 341 lostFractionThroughTruncation(const integerPart *parts,
363 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
410 static integerPart
411 ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest)
414 integerPart part, boundary;
422 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
425 boundary = (integerPart) 1 << (partBits - 1);
439 return ~(integerPart) 0; /* A lot. */
445 return ~(integerPart) 0; /* A lot. */
450 return ~(integerPart) 0; /* A lot. *
    [all...]
APInt.cpp 685 integerPart MSWMask;
686 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1;
688 MSWMask = ~integerPart(0);
693 integerPart MSW = pVal[i-1] & MSWMask;
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 705 llvm::integerPart hexDigit
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 193 milliseconds