Searched refs:ptr_value (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp38 lldb::addr_t ptr_value = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS); local
45 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error);
49 return ptr_value;
61 lldb::addr_t ptr_value = DerefToNSErrorPointer(valobj);
62 if (ptr_value == LLDB_INVALID_ADDRESS)
66 lldb::addr_t code_location = ptr_value + 2 * ptr_size;
67 lldb::addr_t domain_location = ptr_value + 3 * ptr_size;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp153 uint64_t ptr_value = m_ptr_obj->GetValueAsUnsigned(0, &success); local
156 if (ptr_value == 0)
159 stream.Printf("0x%" PRIx64, ptr_value);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp108 static int appendPointer(char **Buffer, const char *BufferEnd, u64 ptr_value) { argument
111 Res += appendUnsigned(Buffer, BufferEnd, ptr_value, 16,
/freebsd-12-stable/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) { argument
122 result += AppendUnsigned(buff, buff_end, ptr_value, 16,
/freebsd-12-stable/sys/dev/ixl/
H A Di40e_nvm.c384 u16 ptr_value = 0; local
388 status = i40e_read_nvm_word(hw, module_ptr, &ptr_value);
400 if (ptr_value == I40E_NVM_INVALID_PTR_VAL ||
401 ptr_value == I40E_NVM_INVALID_VAL) {
407 if (ptr_value & I40E_PTR_TYPE) {
416 status = i40e_read_nvm_word(hw, ptr_value + module_offset,
425 offset = ptr_value + module_offset + specific_ptr +
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2938 addr_t ptr_value = GetPointerValue(&address_type); local
2940 if (ptr_value != LLDB_INVALID_ADDRESS) {
2941 Address ptr_addr(ptr_value);
2952 addr_t ptr_value = GetPointerValue(&address_type); local
2954 if (ptr_value != LLDB_INVALID_ADDRESS) {
2955 Address ptr_addr(ptr_value);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1560 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2129 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
2134 scalar = (uint32_t)ptr_value;
2136 scalar = ptr_value;

Completed in 290 milliseconds