Home
last modified time | relevance | path

Searched refs:CurrentIndex (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFAcceleratorTable.h475 const NameIndex *CurrentIndex = nullptr; variable
520 return A.CurrentIndex == B.CurrentIndex && A.DataOffset == B.DataOffset;
530 const NameIndex *CurrentIndex; variable
536 assert(CurrentName <= CurrentIndex->getNameCount()); in next()
549 NameIterator(const NameIndex *CurrentIndex, uint32_t CurrentName) in NameIterator() argument
550 : CurrentIndex(CurrentIndex), CurrentName(CurrentName) {} in NameIterator()
553 return CurrentIndex->getNameTableEntry(CurrentName);
566 return A.CurrentIndex == B.CurrentIndex && A.CurrentName == B.CurrentName;
/third_party/skia/third_party/externals/angle2/src/common/
Dvector_utils.h93 template <size_t CurrentIndex, size_t OtherDimension, typename OtherType, typename... Args>
99 template <size_t CurrentIndex, typename OtherType, typename... Args>
104 template <size_t CurrentIndex>
218 template <size_t CurrentIndex, size_t OtherDimension, typename OtherType, typename... Args>
222 static_assert(CurrentIndex + OtherDimension <= Dimension, in initWithList()
226 mData[CurrentIndex + i] = static_cast<Type>(arg1.mData[i]); in initWithList()
228 initWithList<CurrentIndex + OtherDimension>(args...); in initWithList()
232 template <size_t CurrentIndex, typename OtherType, typename... Args>
236 static_assert(CurrentIndex + 1 <= Dimension, "Too much data in the vector constructor."); in initWithList()
237 mData[CurrentIndex] = static_cast<Type>(arg1); in initWithList()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp784 const Header &Hdr = CurrentIndex->Hdr; in findEntryOffsetInCurrentIndex()
787 for (NameTableEntry NTE : *CurrentIndex) { in findEntryOffsetInCurrentIndex()
799 uint32_t Index = CurrentIndex->getBucketArrayEntry(Bucket); in findEntryOffsetInCurrentIndex()
804 uint32_t Hash = CurrentIndex->getHashArrayEntry(Index); in findEntryOffsetInCurrentIndex()
808 NameTableEntry NTE = CurrentIndex->getNameTableEntry(Index); in findEntryOffsetInCurrentIndex()
816 auto EntryOr = CurrentIndex->getEntry(&DataOffset); in getEntryAtCurrentOffset()
834 for (const NameIndex *End = CurrentIndex->Section.NameIndices.end(); in searchFromStartOfCurrentIndex()
835 CurrentIndex != End; ++CurrentIndex) { in searchFromStartOfCurrentIndex()
843 assert(CurrentIndex && "Incrementing an end() iterator?"); in next()
850 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStratifiedSets.h318 auto CurrentIndex = getHighestParentAbove(I); in propagateAttrs() local
319 if (!Visited.insert(CurrentIndex).second) in propagateAttrs()
322 while (Links[CurrentIndex].hasBelow()) { in propagateAttrs()
323 auto &CurrentBits = Links[CurrentIndex].Attrs; in propagateAttrs()
324 auto NextIndex = Links[CurrentIndex].Below; in propagateAttrs()
327 CurrentIndex = NextIndex; in propagateAttrs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2949 size_t CurrentIndex = 0; member in __anone2ed542f0711::PhiNodeSetIterator
3051 void SkipRemovedElements(size_t &CurrentIndex) { in SkipRemovedElements() argument
3052 while (CurrentIndex < NodeList.size()) { in SkipRemovedElements()
3053 auto it = NodeMap.find(NodeList[CurrentIndex]); in SkipRemovedElements()
3056 if (it != NodeMap.end() && it->second == CurrentIndex) in SkipRemovedElements()
3058 ++CurrentIndex; in SkipRemovedElements()
3064 : Set(Set), CurrentIndex(Start) {} in PhiNodeSetIterator()
3067 assert(CurrentIndex < Set->NodeList.size() && in operator *()
3069 return Set->NodeList[CurrentIndex]; in operator *()
3073 assert(CurrentIndex < Set->NodeList.size() && in operator ++()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.h952 assert(CurrentIndex < NumIndexes); in addIndex()
953 Indexes[CurrentIndex++] = Index; in addIndex()
1017 SizeT CurrentIndex = 0; variable
/third_party/node/deps/v8/src/objects/
Dshared-function-info.h654 int CurrentIndex() const { return index_ - 1; } in CurrentIndex() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstructions.cpp364 unsigned CurrentIndex = BeginIndex; in populateBundleOperandInfos() local
370 BOI.Begin = CurrentIndex; in populateBundleOperandInfos()
371 BOI.End = CurrentIndex + BI->input_size(); in populateBundleOperandInfos()
372 CurrentIndex = BOI.End; in populateBundleOperandInfos()
/third_party/node/deps/v8/src/debug/
Dliveedit.cc1171 DCHECK_EQ(sfi.function_literal_id(), script_it.CurrentIndex()); in PatchScript()