Home
last modified time | relevance | path

Searched refs:NumWords (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/AST/
DTemplateBase.cpp64 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()
DExpr.cpp630 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/
Dllvm-bcanalyzer.cpp344 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/
DBitstreamReader.cpp75 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local
76 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
/external/chromium/chrome/browser/history/
Dquery_parser_unittest.cc74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
/external/chromium_org/chrome/browser/history/
Dquery_parser_unittest.cc74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
/external/clang/include/clang/AST/
DTemplateBase.h278 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
DExpr.h1217 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/
DBitVector.h554 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/
DAPInt.cpp173 unsigned NumWords = getNumWords(); in Profile() local
174 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/external/llvm/include/llvm-c/
DCore.h1373 unsigned NumWords,
/external/llvm/lib/IR/
DCore.cpp633 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument
638 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
/external/clang/lib/Serialization/
DASTReader.cpp7166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local
7167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt()
7168 Idx += NumWords; in ReadAPInt()