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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_tsd_shared.cpp22 static atomic_uint32_t CurrentIndex; member in namespace:__scudo
63 u32 Index = atomic_fetch_add(&CurrentIndex, 1, memory_order_relaxed);
/freebsd-13-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmbuffer.c216 UINT32 CurrentIndex; local
239 CurrentIndex = i + j;
240 if (CurrentIndex >= ByteCount)
248 AcpiOsPrintf (" 0x%2.2X", ByteData[CurrentIndex]);
252 if (CurrentIndex < (ByteCount - 1))
267 CurrentIndex = i + j;
268 if (CurrentIndex >= ByteCount)
273 BufChar = ByteData[CurrentIndex];
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h474 const NameIndex *CurrentIndex = nullptr; member in class:llvm::DWARFDebugNames::ValueIterator
476 /// Whether this is a local iterator (searches in CurrentIndex only) or not
519 return A.CurrentIndex == B.CurrentIndex && A.DataOffset == B.DataOffset;
529 const NameIndex *CurrentIndex; member in class:llvm::DWARFDebugNames::NameIterator
535 assert(CurrentName <= CurrentIndex->getNameCount());
547 /// CurrentIndex.
548 NameIterator(const NameIndex *CurrentIndex, uint32_t CurrentName) argument
549 : CurrentIndex(CurrentIndex), CurrentNam
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp799 const Header &Hdr = CurrentIndex->Hdr;
802 for (NameTableEntry NTE : *CurrentIndex) {
814 uint32_t Index = CurrentIndex->getBucketArrayEntry(Bucket);
819 uint32_t Hash = CurrentIndex->getHashArrayEntry(Index);
823 NameTableEntry NTE = CurrentIndex->getNameTableEntry(Index);
831 auto EntryOr = CurrentIndex->getEntry(&DataOffset);
849 for (const NameIndex *End = CurrentIndex->Section.NameIndices.end();
850 CurrentIndex != End; ++CurrentIndex) {
858 assert(CurrentIndex
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h318 auto CurrentIndex = getHighestParentAbove(I); local
319 if (!Visited.insert(CurrentIndex).second)
322 while (Links[CurrentIndex].hasBelow()) {
323 auto &CurrentBits = Links[CurrentIndex].Attrs;
324 auto NextIndex = Links[CurrentIndex].Below;
327 CurrentIndex = NextIndex;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_shared.h117 const u32 Index = atomic_fetch_add(&CurrentIndex, 1U, memory_order_relaxed);
160 atomic_u32 CurrentIndex; member in struct:scudo::TSDRegistrySharedT
/freebsd-13-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dmpidebug.h252 bit32 CurrentIndex; member in struct:hpTraceBufferParms_s
H A Dmpidebug.c891 pBParms->CurrentIndex = saRoot->CurrentTraceIndex;
/freebsd-13-stable/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdioctl.h608 bit32 CurrentIndex; member in struct:_TSTMTID_TRACE_BUFFER_INFO
H A Dtdioctl.c848 BufferParms.CurrentIndex = 0;
895 BufferParms.CurrentIndex = 0;
903 llist->CurrentIndex = BufferParms.CurrentIndex ;
927 BufferParms.CurrentIndex = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3053 size_t CurrentIndex = 0; member in class:__anon3449::PhiNodeSetIterator
3150 /// Updates the CurrentIndex so that it will point to a valid element.
3152 /// If the element of NodeList at CurrentIndex is valid, it does not
3153 /// change it. If there are no more valid elements, it updates CurrentIndex
3155 void SkipRemovedElements(size_t &CurrentIndex) { argument
3156 while (CurrentIndex < NodeList.size()) {
3157 auto it = NodeMap.find(NodeList[CurrentIndex]);
3159 // point to a different index, so CurrentIndex will still be invalid.
3160 if (it != NodeMap.end() && it->second == CurrentIndex)
3162 ++CurrentIndex;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp372 unsigned CurrentIndex = BeginIndex; local
378 BOI.Begin = CurrentIndex;
379 BOI.End = CurrentIndex + BI->input_size();
380 CurrentIndex = BOI.End;

Completed in 231 milliseconds