Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp37 lldb::addr_t ptr_value = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in DerefToNSErrorPointer() local
44 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error); in DerefToNSErrorPointer()
48 return ptr_value; in DerefToNSErrorPointer()
60 lldb::addr_t ptr_value = DerefToNSErrorPointer(valobj); in NSError_SummaryProvider() local
61 if (ptr_value == LLDB_INVALID_ADDRESS) in NSError_SummaryProvider()
65 lldb::addr_t code_location = ptr_value + 2 * ptr_size; in NSError_SummaryProvider()
66 lldb::addr_t domain_location = ptr_value + 3 * ptr_size; in NSError_SummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp162 uint64_t ptr_value = m_ptr_obj->GetValueAsUnsigned(0, &success); in GetSummary() local
165 if (ptr_value == 0) in GetSummary()
168 stream.Printf("0x%" PRIx64, ptr_value); in GetSummary()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp100 void ScopedString::appendPointer(u64 ptr_value) { in appendPointer() argument
102 appendUnsigned(ptr_value, 16, SCUDO_POINTER_FORMAT_LENGTH, in appendPointer()
H A Dstring_utils.h41 void appendPointer(u64 ptr_value);
/freebsd/sys/dev/ixl/
H A Di40e_nvm.c385 u16 ptr_value = 0; in i40e_read_nvm_module_data() local
389 status = i40e_read_nvm_word(hw, module_ptr, &ptr_value); in i40e_read_nvm_module_data()
401 if (ptr_value == I40E_NVM_INVALID_PTR_VAL || in i40e_read_nvm_module_data()
402 ptr_value == I40E_NVM_INVALID_VAL) { in i40e_read_nvm_module_data()
408 if (ptr_value & I40E_PTR_TYPE) { in i40e_read_nvm_module_data()
417 status = i40e_read_nvm_word(hw, ptr_value + module_offset, in i40e_read_nvm_module_data()
426 offset = ptr_value + module_offset + specific_ptr + in i40e_read_nvm_module_data()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp119 static int AppendPointer(char **buff, const char *buff_end, u64 ptr_value) { in AppendPointer() argument
122 result += AppendUnsigned(buff, buff_end, ptr_value, 16, in AppendPointer()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2983 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2985 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
2986 Address ptr_addr(ptr_value); in CastPointerType()
2997 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2999 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
3000 Address ptr_addr(ptr_value); in CastPointerType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1654 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2264 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, in WritePointerToMemory() argument
2269 scalar = (uint32_t)ptr_value; in WritePointerToMemory()
2271 scalar = ptr_value; in WritePointerToMemory()