Searched refs:NumWords (Results 1 – 13 of 13) sorted by relevance
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 64 unsigned NumWords = Value.getNumWords(); in TemplateArgument() local 65 if (NumWords > 1) { in TemplateArgument() 66 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t)); in TemplateArgument() 67 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t)); in TemplateArgument()
|
D | Expr.cpp | 630 unsigned NumWords = Val.getNumWords(); in setIntValue() local 632 if (NumWords > 1) { in setIntValue() 633 pVal = new (C) uint64_t[NumWords]; in setIntValue() 634 std::copy(Words, Words + NumWords, pVal); in setIntValue() 635 } else if (NumWords == 1) in setIntValue()
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 344 unsigned NumWords = 0; in ParseBlock() local 345 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock() 359 outs() << " NumWords=" << NumWords in ParseBlock()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitstreamReader.cpp | 75 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local 76 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
|
/external/chromium/chrome/browser/history/ |
D | query_parser_unittest.cc | 74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
|
/external/chromium_org/chrome/browser/history/ |
D | query_parser_unittest.cc | 74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 278 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local 279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
D | Expr.h | 1217 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue() local 1218 if (NumWords > 1) in getIntValue() 1219 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
/external/llvm/include/llvm/ADT/ |
D | BitVector.h | 554 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument 555 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 173 unsigned NumWords = getNumWords(); in Profile() local 174 for (unsigned i = 0; i < NumWords; ++i) in Profile()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1373 unsigned NumWords,
|
/external/llvm/lib/IR/ |
D | Core.cpp | 633 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument 638 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 7166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local 7167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt() 7168 Idx += NumWords; in ReadAPInt()
|