Home
last modified time | relevance | path

Searched refs:unit_offset (Results 1 – 3 of 3) sorted by path

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.cpp54 std::optional<uint64_t> unit_offset = entry.getCUOffset(); in ToDIERef() local
55 if (!unit_offset) { in ToDIERef()
56 unit_offset = entry.getLocalTUOffset(); in ToDIERef()
57 if (!unit_offset) in ToDIERef()
62 m_debug_info.GetUnitAtOffset(DIERef::Section::DebugInfo, *unit_offset); in ToDIERef()
H A DSymbolFileDWARF.cpp148 dw_offset_t line_offset, dw_offset_t unit_offset) { in ParseLLVMLineTable() argument
172 dw_offset_t unit_offset) { in ParseLLVMLineTablePrologue() argument
/freebsd/lib/libcam/
H A Dcamlib.c118 int unit_offset; in cam_get_device() local
221 for (unit_offset = 1; in cam_get_device()
222 (unit_offset < (strlen(tmpstr))) in cam_get_device()
223 && (isdigit(tmpstr[strlen(tmpstr) - unit_offset])); unit_offset++); in cam_get_device()
225 unit_offset--; in cam_get_device()
230 *unit = atoi(&tmpstr[strlen(tmpstr) - unit_offset]); in cam_get_device()
236 tmpstr[strlen(tmpstr) - unit_offset] = '\0'; in cam_get_device()