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

/external/chromium/chrome/browser/history/
H A Dquery_parser_unittest.cc74 TEST_F(QueryParserTest, NumWords) {
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h399 unsigned NumWords = Read(bitc::BlockSizeWidth); local
403 size_t SkipTo = NextChar + NumWords*4;
431 unsigned NumWords = Read(bitc::BlockSizeWidth); local
432 if (NumWordsP) *NumWordsP = NumWords;
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp342 unsigned NumWords = 0; local
343 if (Stream.EnterSubBlock(BlockID, &NumWords))
357 outs() << " NumWords=" << NumWords
/external/clang/include/clang/AST/
H A DTemplateBase.h251 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
252 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1142 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1143 if (NumWords > 1)
1144 return llvm::APInt(BitWidth, NumWords, pVal);
/external/llvm/include/llvm/ADT/
H A DBitVector.h491 void init_words(BitWord *B, unsigned NumWords, bool t) {
492 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
/external/clang/lib/AST/
H A DExpr.cpp550 unsigned NumWords = Val.getNumWords(); local
552 if (NumWords > 1) {
553 pVal = new (C) uint64_t[NumWords];
554 std::copy(Words, Words + NumWords, pVal);
555 } else if (NumWords == 1)
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2909 SelectionDAG &DAG, unsigned NumWords, SDValue FIN,
2916 for (unsigned i = 0; i < NumWords; ++i) {
3016 unsigned NumWords = (Flags.getByValSize() + 3) / 4; local
3017 LastFI = MFI->CreateFixedObject(NumWords * 4, VA.getLocMemOffset(),
3021 ReadByValArg(MF, Chain, dl, OutChains, DAG, NumWords, FIN, VA, Flags,
2907 ReadByValArg(MachineFunction &MF, SDValue Chain, DebugLoc dl, std::vector<SDValue> &OutChains, SelectionDAG &DAG, unsigned NumWords, SDValue FIN, const CCValAssign &VA, const ISD::ArgFlagsTy &Flags, const Argument *FuncArg) argument
/external/llvm/lib/Support/
H A DAPInt.cpp173 unsigned NumWords = getNumWords(); local
174 for (unsigned i = 0; i < NumWords; ++i)
/external/llvm/include/llvm-c/
H A DCore.h1320 unsigned NumWords,
/external/llvm/lib/VMCore/
H A DCore.cpp607 unsigned NumWords,
612 makeArrayRef(Words, NumWords))));
606 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp6216 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6217 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6218 Idx += NumWords;

Completed in 307 milliseconds