Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Bitcode/
DBitstreamReader.h399 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/
Dllvm-bcanalyzer.cpp342 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/
DBitVector.h443 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/
Dquery_parser_unittest.cc74 TEST_F(QueryParserTest, NumWords) { in TEST_F() argument
/external/clang/lib/AST/
DExpr.cpp537 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/
DMipsISelLowering.cpp2656 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/
DBitcodeReader.cpp1035 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/
DAPInt.cpp173 unsigned NumWords = getNumWords(); in Profile() local
174 for (unsigned i = 0; i < NumWords; ++i) in Profile()
/external/clang/include/clang/AST/
DExpr.h1110 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/
DCore.cpp588 unsigned NumWords, in LLVMConstIntOfArbitraryPrecision() argument
593 makeArrayRef(Words, NumWords)))); in LLVMConstIntOfArbitraryPrecision()
/external/llvm/include/llvm-c/
DCore.h1311 unsigned NumWords,
/external/clang/lib/Serialization/
DASTReader.cpp6166 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); in ReadAPInt() local
6167 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); in ReadAPInt()
6168 Idx += NumWords; in ReadAPInt()