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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHashTable.cpp26 uint32_t NumWords; local
27 if (auto EC = Stream.readInteger(NumWords))
33 for (uint32_t I = 0; I != NumWords; ++I) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h623 unsigned NumWords = NumBitWords(Size);
624 assert(NumWords >= 1);
657 for (unsigned I = 0; I < NumWords - 1; ++I) {
662 Bits[NumWords - 1] >>= BitDistance;
672 unsigned NumWords = NumBitWords(Size);
673 assert(NumWords >= 1);
707 for (int I = NumWords - 1; I > 0; --I) {
802 /// most significant at Bits[NumWords-1]. A logical shift left, however,
816 uint32_t NumWords = NumBitWords(Size);
818 auto Src = Bits.take_front(NumWords)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h62 static unsigned constexpr NumWords = Capacity/WordWidth; member in struct:llvm::MachineValueTypeSet
63 static_assert(NumWords*WordWidth == Capacity,
80 std::memset(Words.data(), 0, NumWords*sizeof(WordType));
99 for (unsigned i = 0; i != NumWords; ++i)
159 for (unsigned i = SkipWords; i != NumWords; ++i) {
188 std::array<WordType,NumWords> Words;
H A DCodeEmitterGen.cpp479 int NumWords = APInt::getNumWords(BitWidth); local
486 << " LoadIntFromMemory(Inst, (uint8_t*)&InstBits[opcode * " << NumWords
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp51 word_t NumWords = MaybeNum.get();
53 *NumWordsP = NumWords;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h308 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); local
309 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1419 unsigned NumWords = llvm::APInt::getNumWords(BitWidth); local
1420 if (NumWords > 1)
1421 return llvm::APInt(BitWidth, NumWords, pVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp756 unsigned NumWords = 0; local
757 if (Error Err = Stream.EnterSubBlock(BlockID, &NumWords))
774 O->OS << " NumWords=" << NumWords
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp1029 uint64_t NumWords = NumBytes >> 4; local
1041 uint32_t LowNumWords = NumWords & 0xFFFF;
1048 if ((NumWords & 0xFFFF0000) != 0) {
1051 .addImm((NumWords & 0xFFFF0000) >> 16) // High half
1059 .addImm(NumWords)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp375 unsigned NumWords = Words.size(); local
378 for (unsigned i = 0; i != NumWords && IsSplat; ++i) {
486 for (unsigned i = 0; i != NumWords/2; ++i) {
490 {HalfV1, Words[i+NumWords/2]});
H A DHexagonLoopIdiomRecognition.cpp2264 Value *NumWords = Expander.expandCodeFor(NumWordsS, Int32Ty, local
2266 if (Instruction *In = dyn_cast<Instruction>(NumWords))
2268 NumWords = Simp;
2276 NewCall = CondBuilder.CreateCall(Fn, {Op0, Op1, NumWords});
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp519 uint32_t NumWords = NumBytes >> 2; local
521 if (NumWords < 65536)
523 .addImm(NumWords)
528 .addImm(NumWords)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp167 unsigned NumWords = getNumWords(); local
168 for (unsigned i = 0; i < NumWords; ++i)
265 unsigned NumWords = getNumWords(); local
266 tcMultiplyPart(U.pVal, U.pVal, RHS, 0, NumWords, NumWords, false);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp905 unsigned NumWords = Val.getNumWords(); local
907 if (NumWords > 1) {
908 pVal = new (C) uint64_t[NumWords];
909 std::copy(Words, Words + NumWords, pVal);
910 } else if (NumWords == 1)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1885 unsigned NumWords,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp1304 unsigned NumWords,
1309 makeArrayRef(Words, NumWords))));

Completed in 475 milliseconds