Searched refs:getNumWords (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Support/ |
D | APInt.cpp | 77 pVal = getClearedMemory(getNumWords()); in initSlowCase() 80 for (unsigned i = 1; i < getNumWords(); ++i) in initSlowCase() 85 pVal = getMemory(getNumWords()); in initSlowCase() 86 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 96 pVal = getClearedMemory(getNumWords()); in initFromArray() 98 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords()); in initFromArray() 130 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 138 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 139 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 140 } else if (getNumWords() == RHS.getNumWords()) in AssignSlowCase() [all …]
|
D | APFloat.cpp | 641 if (!fill || fill->getNumWords() < numParts) in makeNaN() 645 std::min(fill->getNumWords(), numParts)); in makeNaN() 2088 SmallVector<uint64_t, 4> parts(result.getNumWords()); in convertToInteger() 2136 unsigned int partCount = Val.getNumWords(); in convertFromAPInt()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 145 pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 357 return APInt(N, makeArrayRef(pVal, getNumWords())).zext(getBitWidth()) in isIntN() 568 for (unsigned i = 0; i != getNumWords(); ++i) 1089 for (unsigned i = 0; i < getNumWords(); ++i) in setAllBits() 1105 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits() 1117 for (unsigned i = 0; i < getNumWords(); ++i) in flipAllBits() 1140 unsigned getNumWords() const { in getNumWords() function 1141 return getNumWords(BitWidth); in getNumWords() 1148 static unsigned getNumWords(unsigned BitWidth) { in getNumWords() function
|
/external/clang/include/clang/AST/ |
D | Expr.h | 1101 bool hasAllocation() const { return llvm::APInt::getNumWords(BitWidth) > 1; } in hasAllocation() 1110 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 537 unsigned NumWords = Val.getNumWords(); in setIntValue()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 3656 Record.append(Words, Words + Value.getNumWords()); in AddAPInt()
|
D | ASTReader.cpp | 6166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt()
|