/external/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 399 unsigned NumWords = Read(bitc::BlockSizeWidth); in SkipBlock() local 403 size_t SkipTo = NextChar + NumWords*4; in SkipBlock() 431 unsigned NumWords = Read(bitc::BlockSizeWidth); variable 432 if (NumWordsP) *NumWordsP = NumWords;
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 342 unsigned NumWords = 0; in ParseBlock() local 343 if (Stream.EnterSubBlock(BlockID, &NumWords)) in ParseBlock() 357 outs() << " NumWords=" << NumWords in ParseBlock()
|
/external/llvm/include/llvm/ADT/ |
D | BitVector.h | 443 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument 444 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()
|
/external/chromium/chrome/browser/history/ |
D | query_parser_unittest.cc | 74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
|
/external/clang/lib/AST/ |
D | Expr.cpp | 537 unsigned NumWords = Val.getNumWords(); in setIntValue() local 539 if (NumWords > 1) { in setIntValue() 540 pVal = new (C) uint64_t[NumWords]; in setIntValue() 541 std::copy(Words, Words + NumWords, pVal); in setIntValue() 542 } else if (NumWords == 1) in setIntValue()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 2656 SelectionDAG &DAG, unsigned NumWords, SDValue FIN, in ReadByValArg() argument 2663 for (unsigned i = 0; i < NumWords; ++i) { in ReadByValArg() 2761 unsigned NumWords = (Flags.getByValSize() + 3) / 4; in LowerFormalArguments() local 2762 LastFI = MFI->CreateFixedObject(NumWords * 4, VA.getLocMemOffset(), in LowerFormalArguments() 2766 ReadByValArg(MF, Chain, dl, OutChains, DAG, NumWords, FIN, VA, Flags, in LowerFormalArguments()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1035 unsigned NumWords = Record.size(); in ParseConstants() local 1037 Words.resize(NumWords); in ParseConstants() 1038 for (unsigned i = 0; i != NumWords; ++i) in ParseConstants()
|
/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/clang/include/clang/AST/ |
D | Expr.h | 1110 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in getIntValue() local 1111 if (NumWords > 1) in getIntValue() 1112 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
/external/llvm/lib/VMCore/ |
D | Core.cpp | 588 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument 593 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1311 unsigned NumWords,
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 6166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local 6167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt() 6168 Idx += NumWords; in ReadAPInt()
|