Home
last modified time | relevance | path

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

123

/external/llvm/test/Bitcode/
Dpr18704.ll9 ;<MODULE_BLOCK NumWords=217 BlockCodeSize=3>
12 ; <TYPE_BLOCK_ID NumWords=23 BlockCodeSize=4>
59 ; <CONSTANTS_BLOCK NumWords=20 BlockCodeSize=4>
84 ; <METADATA_BLOCK NumWords=23 BlockCodeSize=3>
93 ; <VALUE_SYMTAB NumWords=29 BlockCodeSize=4>
107 ; <FUNCTION_BLOCK NumWords=18 BlockCodeSize=4>
109 ; <CONSTANTS_BLOCK NumWords=3 BlockCodeSize=4>
118 ; <VALUE_SYMTAB NumWords=4 BlockCodeSize=4>
123 ; <FUNCTION_BLOCK NumWords=23 BlockCodeSize=4>
125 ; <CONSTANTS_BLOCK NumWords=4 BlockCodeSize=4>
[all …]
/external/llvm-project/llvm/test/Bitcode/
Dpr18704.ll9 ;<MODULE_BLOCK NumWords=217 BlockCodeSize=3>
12 ; <TYPE_BLOCK_ID NumWords=23 BlockCodeSize=4>
59 ; <CONSTANTS_BLOCK NumWords=20 BlockCodeSize=4>
84 ; <METADATA_BLOCK NumWords=23 BlockCodeSize=3>
93 ; <VALUE_SYMTAB NumWords=29 BlockCodeSize=4>
107 ; <FUNCTION_BLOCK NumWords=18 BlockCodeSize=4>
109 ; <CONSTANTS_BLOCK NumWords=3 BlockCodeSize=4>
118 ; <VALUE_SYMTAB NumWords=4 BlockCodeSize=4>
123 ; <FUNCTION_BLOCK NumWords=23 BlockCodeSize=4>
125 ; <CONSTANTS_BLOCK NumWords=4 BlockCodeSize=4>
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DBitVector.h519 unsigned NumWords = NumBitWords(size()); variable
520 return Bits.take_front(NumWords) == RHS.Bits.take_front(NumWords);
592 unsigned NumWords = NumBitWords(Size); variable
593 assert(NumWords >= 1);
626 for (unsigned I = 0; I < NumWords - 1; ++I) {
631 Bits[NumWords - 1] >>= BitDistance;
641 unsigned NumWords = NumBitWords(Size); variable
642 assert(NumWords >= 1);
676 for (int I = NumWords - 1; I > 0; --I) {
803 uint32_t NumWords = NumBitWords(Size); in wordShl() local
[all …]
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeParser.cpp45 void NaClBitcodeParserListener::BeginBlockInfoBlock(unsigned NumWords) { in BeginBlockInfoBlock() argument
46 Parser->EnterBlock(NumWords); in BeginBlockInfoBlock()
116 unsigned NumWords; in ParseBlockInternal() local
117 if (Record.GetCursor().EnterSubBlock(GetBlockID(), &NumWords)) { in ParseBlockInternal()
121 EnterBlock(NumWords); in ParseBlockInternal()
DNaClBitstreamReader.cpp76 unsigned NumWords = Read(naclbitc::BlockSizeWidth); in EnterSubBlock() local
78 *NumWordsP = NumWords; in EnterSubBlock()
384 unsigned NumWords; in ReadBlockInfoBlock() local
385 if (EnterSubBlock(naclbitc::BLOCKINFO_BLOCK_ID, &NumWords)) in ReadBlockInfoBlock()
389 Listener->BeginBlockInfoBlock(NumWords); in ReadBlockInfoBlock()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DBitVector.h623 unsigned NumWords = NumBitWords(Size); variable
624 assert(NumWords >= 1);
657 for (unsigned I = 0; I < NumWords - 1; ++I) {
662 Bits[NumWords - 1] >>= BitDistance;
672 unsigned NumWords = NumBitWords(Size); variable
673 assert(NumWords >= 1);
707 for (int I = NumWords - 1; I > 0; --I) {
816 uint32_t NumWords = NumBitWords(Size); in wordShl() local
818 auto Src = Bits.take_front(NumWords).drop_back(Count); in wordShl()
819 auto Dest = Bits.take_front(NumWords).drop_front(Count); in wordShl()
[all …]
/external/tensorflow/tensorflow/core/lib/core/
Dbitmap.cc24 const size_t num_words = NumWords(n); in Reset()
25 if (num_words != NumWords(nbits_)) { in Reset()
81 const size_t nwords = NumWords(nbits_); in FirstUnset()
Dbitmap.h69 static size_t NumWords(size_t n) { return (n + kBits - 1) / kBits; } in NumWords() function
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DHashTable.cpp26 uint32_t NumWords; in readSparseBitVector() local
27 if (auto EC = Stream.readInteger(NumWords)) in readSparseBitVector()
33 for (uint32_t I = 0; I != NumWords; ++I) { in readSparseBitVector()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DHashTable.cpp26 uint32_t NumWords; in readSparseBitVector() local
27 if (auto EC = Stream.readInteger(NumWords)) in readSparseBitVector()
33 for (uint32_t I = 0; I != NumWords; ++I) { in readSparseBitVector()
/external/llvm-project/llvm/test/Other/
Dbcanalyzer-block-info.txt7 DATA: NumWords=4 BlockCodeSize=2>
21 DATA: NumWords=3 BlockCodeSize=3>
/external/llvm/test/Other/
Dbcanalyzer-block-info.txt7 DATA: NumWords=4 BlockCodeSize=2>
21 DATA: NumWords=3 BlockCodeSize=3>
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DMIMGInstructions.td547 int NumWords = dw;
549 RegisterClass RegClass = !if(!le(NumWords, 0), ?,
550 !if(!eq(NumWords, 1), VGPR_32,
551 !if(!eq(NumWords, 2), VReg_64,
552 !if(!eq(NumWords, 3), VReg_96,
553 !if(!eq(NumWords, 4), VReg_128,
554 !if(!le(NumWords, 8), VReg_256,
555 !if(!le(NumWords, 16), VReg_512, ?)))))));
621 let VAddrDwords = addr.NumWords in {
622 def _V # addr.NumWords
[all …]
/external/clang/lib/AST/
DTemplateBase.cpp79 unsigned NumWords = Value.getNumWords(); in TemplateArgument() local
80 if (NumWords > 1) { in TemplateArgument()
81 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t)); in TemplateArgument()
82 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t)); in TemplateArgument()
/external/llvm-project/clang/lib/AST/
DTemplateBase.cpp94 unsigned NumWords = Value.getNumWords(); in TemplateArgument() local
95 if (NumWords > 1) { in TemplateArgument()
96 void *Mem = Ctx.Allocate(NumWords * sizeof(uint64_t)); in TemplateArgument()
97 std::memcpy(Mem, Value.getRawData(), NumWords * sizeof(uint64_t)); in TemplateArgument()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DMIMGInstructions.td563 int NumWords = dw;
565 RegisterClass RegClass = !if(!le(NumWords, 0), ?,
566 !if(!eq(NumWords, 1), VGPR_32,
567 !if(!eq(NumWords, 2), VReg_64,
568 !if(!eq(NumWords, 3), VReg_96,
569 !if(!eq(NumWords, 4), VReg_128,
570 !if(!le(NumWords, 8), VReg_256,
571 !if(!le(NumWords, 16), VReg_512, ?)))))));
637 let VAddrDwords = addr.NumWords in {
638 def _V # addr.NumWords
[all …]
/external/icing/icing/legacy/index/
Dicing-flash-bitmap.h111 size_t NumWords() const;
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp47 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock() local
48 if (NumWordsP) *NumWordsP = NumWords; in EnterSubBlock()
/external/llvm-project/llvm/utils/TableGen/
DCodeGenDAGPatterns.h60 static unsigned constexpr NumWords = Capacity/WordWidth; member
61 static_assert(NumWords*WordWidth == Capacity,
78 std::memset(Words.data(), 0, NumWords*sizeof(WordType)); in clear()
97 for (unsigned i = 0; i != NumWords; ++i) in insert()
157 for (unsigned i = SkipWords; i != NumWords; ++i) { in find_from_pos()
186 std::array<WordType,NumWords> Words;
/external/llvm-project/llvm/docs/
DRemarks.rst469 <Meta BlockID=8 NumWords=13 BlockCodeSize=3>
480 <Meta BlockID=8 NumWords=3 BlockCodeSize=3>
484 <Remark BlockID=9 NumWords=8 BlockCodeSize=4>
496 <Meta BlockID=8 NumWords=15 BlockCodeSize=3>
501 <Remark BlockID=9 NumWords=8 BlockCodeSize=4>
/external/llvm-project/llvm/lib/Bitstream/Reader/
DBitstreamReader.cpp51 word_t NumWords = MaybeNum.get(); in EnterSubBlock() local
53 *NumWordsP = NumWords; in EnterSubBlock()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/
DBitstreamReader.cpp51 word_t NumWords = MaybeNum.get(); in EnterSubBlock() local
53 *NumWordsP = NumWords; in EnterSubBlock()
/external/clang/include/clang/AST/
DTemplateBase.h288 unsigned NumWords = APInt::getNumWords(Integer.BitWidth); in getAsIntegral() local
289 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
/external/llvm-project/clang/include/clang/AST/
DTemplateBase.h321 unsigned NumWords = APInt::getNumWords(Integer.BitWidth);
322 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
/external/llvm/include/llvm/ADT/
DBitVector.h541 void init_words(BitWord *B, unsigned NumWords, bool t) { in init_words() argument
542 memset(B, 0 - (int)t, NumWords*sizeof(BitWord)); in init_words()

123