Home
last modified time | relevance | path

Searched refs:func_file_addr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpressionList.h34 lldb::addr_t func_file_addr) in DWARFExpressionList() argument
36 m_func_file_addr(func_file_addr) {} in DWARFExpressionList()
62 void SetFuncFileAddress(lldb::addr_t func_file_addr) { in SetFuncFileAddress() argument
63 m_func_file_addr = func_file_addr; in SetFuncFileAddress()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp469 addr_t func_file_addr = func_addr.GetFileAddress(); in DumpAddressOffsetFromFunction() local
471 if (addr_file_addr > func_file_addr || in DumpAddressOffsetFromFunction()
472 (addr_file_addr == func_file_addr && print_zero_offsets)) { in DumpAddressOffsetFromFunction()
474 addr_file_addr - func_file_addr); in DumpAddressOffsetFromFunction()
475 } else if (addr_file_addr < func_file_addr) { in DumpAddressOffsetFromFunction()
477 func_file_addr - addr_file_addr); in DumpAddressOffsetFromFunction()