Searched defs:NumWords (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/AST/
H A DTemplateBase.cpp64 unsigned NumWords = Value.getNumWords(); local
65 if (NumWords > 1) {
66 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t));
67 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t));
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/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp342 unsigned NumWords = 0; local
343 if (Stream.EnterSubBlock(BlockID, &NumWords))
357 outs() << " NumWords=" << NumWords
/external/llvm/lib/Support/
H A DAPInt.cpp173 unsigned NumWords = getNumWords(); local
174 for (unsigned i = 0; i < NumWords; ++i)
/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/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/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/VMCore/
H A DCore.cpp607 unsigned NumWords,
612 makeArrayRef(Words, NumWords))));
606 LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[]) argument

Completed in 280 milliseconds