Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h488 const NameIndex *CurrentIndex = nullptr;
533 return A.CurrentIndex == B.CurrentIndex && A.DataOffset == B.DataOffset;
543 const NameIndex *CurrentIndex; variable
549 assert(CurrentName <= CurrentIndex->getNameCount()); in next()
562 NameIterator(const NameIndex *CurrentIndex, uint32_t CurrentName) in NameIterator() argument
563 : CurrentIndex(CurrentIndex), CurrentName(CurrentName) {} in NameIterator()
566 return CurrentIndex->getNameTableEntry(CurrentName);
579 return A.CurrentIndex == B.CurrentIndex && A.CurrentName == B.CurrentName;
/freebsd-13.1/sys/contrib/dev/acpica/components/disassembler/
H A Ddmbuffer.c216 UINT32 CurrentIndex; in AcpiDmDisasmByteList() local
239 CurrentIndex = i + j; in AcpiDmDisasmByteList()
240 if (CurrentIndex >= ByteCount) in AcpiDmDisasmByteList()
248 AcpiOsPrintf (" 0x%2.2X", ByteData[CurrentIndex]); in AcpiDmDisasmByteList()
252 if (CurrentIndex < (ByteCount - 1)) in AcpiDmDisasmByteList()
267 CurrentIndex = i + j; in AcpiDmDisasmByteList()
268 if (CurrentIndex >= ByteCount) in AcpiDmDisasmByteList()
273 BufChar = ByteData[CurrentIndex]; in AcpiDmDisasmByteList()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp799 const Header &Hdr = CurrentIndex->Hdr; in findEntryOffsetInCurrentIndex()
802 for (NameTableEntry NTE : *CurrentIndex) { in findEntryOffsetInCurrentIndex()
814 uint32_t Index = CurrentIndex->getBucketArrayEntry(Bucket); in findEntryOffsetInCurrentIndex()
819 uint32_t Hash = CurrentIndex->getHashArrayEntry(Index); in findEntryOffsetInCurrentIndex()
823 NameTableEntry NTE = CurrentIndex->getNameTableEntry(Index); in findEntryOffsetInCurrentIndex()
831 auto EntryOr = CurrentIndex->getEntry(&DataOffset); in getEntryAtCurrentOffset()
850 CurrentIndex != End; ++CurrentIndex) { in searchFromStartOfCurrentIndex()
858 assert(CurrentIndex && "Incrementing an end() iterator?"); in next()
865 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next()
871 ++CurrentIndex; in next()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A 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()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_tsd_shared.cpp22 static atomic_uint32_t CurrentIndex; variable
63 u32 Index = atomic_fetch_add(&CurrentIndex, 1, memory_order_relaxed); in initThread()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_shared.h156 const u32 Index = atomic_fetch_add(&CurrentIndex, 1U, memory_order_relaxed); in initThread()
204 atomic_u32 CurrentIndex = {}; member
/freebsd-13.1/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dmpidebug.h252 bit32 CurrentIndex; member
H A Dmpidebug.c891 pBParms->CurrentIndex = saRoot->CurrentTraceIndex; in siTraceGetInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3208 size_t CurrentIndex = 0; member in __anon5386100c0c11::PhiNodeSetIterator
3308 void SkipRemovedElements(size_t &CurrentIndex) { in SkipRemovedElements() argument
3309 while (CurrentIndex < NodeList.size()) { in SkipRemovedElements()
3315 ++CurrentIndex; in SkipRemovedElements()
3321 : Set(Set), CurrentIndex(Start) {} in PhiNodeSetIterator()
3324 assert(CurrentIndex < Set->NodeList.size() && in operator *()
3326 return Set->NodeList[CurrentIndex]; in operator *()
3330 assert(CurrentIndex < Set->NodeList.size() && in operator ++()
3332 ++CurrentIndex; in operator ++()
3333 Set->SkipRemovedElements(CurrentIndex); in operator ++()
[all …]
/freebsd-13.1/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdioctl.h608 bit32 CurrentIndex; member
H A Dtdioctl.c848 BufferParms.CurrentIndex = 0; in tiCOMMgntIOCTL()
895 BufferParms.CurrentIndex = 0; in tiCOMMgntIOCTL()
903 llist->CurrentIndex = BufferParms.CurrentIndex ; in tiCOMMgntIOCTL()
927 BufferParms.CurrentIndex = 0; in tiCOMMgntIOCTL()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp380 unsigned CurrentIndex = BeginIndex; in populateBundleOperandInfos() local
386 BOI.Begin = CurrentIndex; in populateBundleOperandInfos()
387 BOI.End = CurrentIndex + BI->input_size(); in populateBundleOperandInfos()
388 CurrentIndex = BOI.End; in populateBundleOperandInfos()