Home
last modified time | relevance | path

Searched refs:entry_ptr (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h111 const Entry *FindNextValueForName(const Entry *entry_ptr) const { in FindNextValueForName() argument
115 const Entry *next_entry = entry_ptr + 1; in FindNextValueForName()
117 if (next_entry->cstring == entry_ptr->cstring) in FindNextValueForName()
/llvm-project/llvm/utils/gdb-scripts/
H A Dprettyprinters.py254 entry_ptr = it_deref.cast(entry_base_ty.pointer())
255 entry = entry_ptr.dereference()
258 value_ptr = (entry_ptr + 1).cast(value_ty.pointer())
259 str_data = (entry_ptr + 1).cast(gdb.lookup_type("uintptr_t")) + max(
/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp305 CommandArgumentEntry *entry_ptr = GetArgumentEntryAtIndex(0); in HandleCompletion()
306 if (!entry_ptr) { in HandleCompletion()
307 assert(entry_ptr && "We said there was one entry, but there wasn't.");
311 CommandArgumentEntry &entry = *entry_ptr; in HandleArgumentCompletion()
314 CommandArgumentEntry *entry_ptr = GetArgumentEntryAtIndex(0); HandleArgumentCompletion() local
/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp1541 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint(); in GenerateBlockFunction()
1542 --entry_ptr; in GenerateBlockFunction()
1556 if (entry_ptr->getNextNonDebugInstruction()) in GenerateBlockFunction()
1557 entry_ptr = entry_ptr->getNextNonDebugInstruction()->getIterator(); in GenerateBlockFunction()
1559 entry_ptr = entry->end(); in GenerateBlockFunction()
1560 Builder.SetInsertPoint(entry, entry_ptr); in GenerateBlockFunction()
1580 entry_ptr == entry->end() ? nullptr : &*entry_ptr); in GenerateBlockFunction()
1529 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint(); GenerateBlockFunction() local