Home
last modified time | relevance | path

Searched refs:m_offset (Results 1 – 25 of 51) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DAddress.h137 Address() : m_section_wp(), m_offset(LLDB_INVALID_ADDRESS) {} in Address()
148 : m_section_wp(rhs.m_section_wp), m_offset(rhs.m_offset) {} in Address()
165 m_offset(offset) { in Address()
210 m_offset = LLDB_INVALID_ADDRESS; in Clear()
350 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
380 bool IsValid() const { return m_offset != LLDB_INVALID_ADDRESS; } in IsValid()
469 bool changed = m_offset != offset; in SetOffset()
470 m_offset = offset; in SetOffset()
476 m_offset = addr; in SetRawAddress()
480 if (m_offset != LLDB_INVALID_ADDRESS) { in Slide()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp19 : m_offset(DW_INVALID_OFFSET), m_header(), m_arange_descriptors() { in DWARFDebugArangeSet()
28 m_offset = DW_INVALID_OFFSET; in Clear()
138 m_offset = *offset_ptr; in Extract()
168 if (data.ValidOffset(m_offset + sizeof(m_header.length) + in Extract()
174 const uint32_t header_size = *offset_ptr - m_offset; in Extract()
180 *offset_ptr = m_offset + first_tuple_offset; in Extract()
208 m_offset, m_header.length, m_header.version, m_header.cu_offset, in Extract()
218 m_offset, m_header.length, m_header.version, m_header.cu_offset, in Extract()
229 return m_offset + m_header.length + 4; in GetOffsetOfNextEntry()
H A DDWARFDebugAbbrev.h31 : m_offset(DW_INVALID_OFFSET), m_idx_offset(0), m_decls() {} in DWARFAbbreviationDeclarationSet()
34 : m_offset(offset), m_idx_offset(idx_offset), m_decls() {} in DWARFAbbreviationDeclarationSet()
37 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
50 dw_offset_t m_offset;
H A DDWARFCompileUnit.cpp29 cu_sp->m_offset = *offset_ptr; in Extract()
64 *offset_ptr = cu_sp->m_offset; in Extract()
74 m_offset, m_length, m_version, GetAbbrevOffset(), m_addr_size, in Dump()
H A DDWARFDebugArangeSet.h43 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset()
71 uint32_t m_offset; variable
H A DDWARFDebugInfoEntry.h58 : m_offset(DW_INVALID_OFFSET), m_parent_idx(0), m_sibling_idx(0), in DWARFDebugInfoEntry()
61 explicit operator bool() const { return m_offset != DW_INVALID_OFFSET; }
202 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
278 m_offset; // Offset within the .debug_info of the start of this entry
H A DDWARFUnit.h82 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
100 return m_offset + GetHeaderByteSize(); in GetFirstDIEOffset()
224 dw_offset_t m_offset; variable
H A DDWARFUnit.cpp54 func_cat, "%8.8x: DWARFUnit::ExtractUnitDIEIfNeeded()", m_offset); in ExtractUnitDIEIfNeeded()
162 func_cat, "%8.8x: DWARFUnit::ExtractDIEsIfNeeded()", m_offset); in ExtractDIEsRWLocked()
387 dwo_cu->SetBaseObjOffset(m_offset); in AddUnitDIE()
424 m_base_obj_offset != DW_INVALID_OFFSET ? m_base_obj_offset : m_offset; in GetID()
432 return m_offset + GetLengthByteSize() + GetLength(); in GetNextCompileUnitOffset()
H A DDWARFDebugInfoEntry.cpp40 m_offset = *offset_ptr; in FastExtract()
60 m_offset, (unsigned)abbr_idx); in FastExtract()
188 *offset_ptr = m_offset; in FastExtract()
226 m_offset = offset; in Extract()
481 m_offset, form_value.Unsigned()); in GetDIENamesAndRanges()
609 lldb::offset_t offset = m_offset; in Dump()
614 s.Printf("\n0x%8.8x: ", m_offset); in Dump()
1841 return m_offset == rhs.m_offset && m_parent_idx == rhs.m_parent_idx && in operator ==()
/freebsd-12.1/usr.sbin/ppp/
H A Dmbuf.c212 bp->m_offset += nb; in mbuf_Read()
249 if (bp && bp->m_offset) { in m_prepend()
250 if (bp->m_offset >= len) { in m_prepend()
251 bp->m_offset -= len; in m_prepend()
257 len -= bp->m_offset; in m_prepend()
260 bp->m_len += bp->m_offset; in m_prepend()
261 bp->m_offset = 0; in m_prepend()
265 head->m_offset = extra; in m_prepend()
281 bp->m_offset += n; in m_adj()
401 else if ((bp->m_offset & (sizeof(long) - 1)) != 0) { in m_pullup()
[all …]
H A Dmbuf.h35 u_short m_offset; /* offset from header end to start position */ member
51 ((bp) ? (u_char *)((bp)+1) + (bp)->m_offset : (u_char *)bp)
54 ((bp) ? (const u_char *)((bp)+1) + (bp)->m_offset : (const u_char *)bp)
H A Dpred.c266 wp->m_offset += 2; /* skip length */ in Pred1Input()
271 wp->m_offset++; in Pred1Input()
274 wp->m_offset += 2; in Pred1Input()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DAddress.cpp243 m_offset = rhs.m_offset; in operator =()
261 m_offset = file_addr; in ResolveAddressUsingFileSections()
283 return sect_file_addr + m_offset; in GetFileAddress()
290 return m_offset; in GetFileAddress()
302 return sect_load_addr + m_offset; in GetLoadAddress()
311 return m_offset; in GetLoadAddress()
344 m_offset = target->GetCallableLoadAddress(m_offset, GetAddressClass()); in SetCallableLoadAddress()
368 m_offset = target->GetOpcodeLoadAddress(m_offset, addr_class); in SetOpcodeLoadAddress()
404 s->Address(m_offset, addr_size); in Dump()
410 s->Address(m_offset, addr_size); in Dump()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DObjectContainer.h47 m_offset(file_offset), m_length(length), m_data() { in ObjectContainer()
106 virtual lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
187 m_offset; ///< The offset in bytes into the file, or the address in memory variable
H A DUnwindPlan.h326 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
328 void SetOffset(lldb::addr_t offset) { m_offset = offset; } in SetOffset()
330 void SlideOffset(lldb::addr_t offset) { m_offset += offset; } in SlideOffset()
359 lldb::addr_t m_offset; // Offset into the function for this row variable
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DMaterializer.h96 Entity() : m_alignment(1), m_size(0), m_offset(0) {} in Entity()
114 uint32_t GetOffset() { return m_offset; } in GetOffset()
116 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset()
123 uint32_t m_offset; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp276 : m_tid(tid), m_offset(offset), m_size(size), m_value(value), in ReadRegOperation()
283 unsigned m_offset; member in ReadRegOperation
300 m_value = *(uint32_t *)(((caddr_t)&regs) + m_offset); in Execute()
302 m_value = *(uint64_t *)(((caddr_t)&regs) + m_offset); in Execute()
322 unsigned m_offset; member in WriteRegOperation
334 *(uintptr_t *)(((caddr_t)&regs) + m_offset) = in Execute()
349 : m_tid(tid), m_offset(offset), m_size(size), m_value(value), in ReadDebugRegOperation()
356 unsigned m_offset; member in ReadDebugRegOperation
370 m_value = *(uintptr_t *)(((caddr_t)&regs) + m_offset); in Execute()
390 unsigned m_offset; member in WriteDebugRegOperation
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DMaterializer.cpp157 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
208 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
214 (uint64_t)process_address + m_offset, in Dematerialize()
354 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
441 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
605 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
685 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
853 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
957 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
1062 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
[all …]
/freebsd-12.1/lib/libdevdctl/
H A Dexception.h151 size_t m_offset; variable
164 return (m_offset); in GetOffset()
/freebsd-12.1/sys/netinet/
H A Dsctp_auth.c1035 m_offset -= SCTP_BUF_LEN(m_tmp); in sctp_hmac_m()
1042 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset)); in sctp_hmac_m()
1045 SCTP_BUF_LEN(m_tmp) - m_offset); in sctp_hmac_m()
1049 m_offset = 0; in sctp_hmac_m()
1104 uint32_t m_offset, uint8_t *digest) in sctp_compute_hmac_m() argument
1576 m_offset -= SCTP_BUF_LEN(m_tmp); in sctp_zero_m()
1581 data = mtod(m_tmp, uint8_t *)+m_offset; in sctp_zero_m()
1582 if (size > (uint32_t)(SCTP_BUF_LEN(m_tmp) - m_offset)) { in sctp_zero_m()
1583 memset(data, 0, SCTP_BUF_LEN(m_tmp) - m_offset); in sctp_zero_m()
1584 size -= SCTP_BUF_LEN(m_tmp) - m_offset; in sctp_zero_m()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp68 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver()
163 options_dict_sp->AddIntegerItem(GetKey(OptionNames::Offset), m_offset); in WrapOptionsDict()
342 loc_addr.Slide(m_offset); in AddLocation()
353 m_offset = offset; in SetOffset()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h92 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
242 lldb::addr_t m_offset; // A random offset the user asked us to add to any variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.h181 JITVars() : m_alignment(0), m_size(0), m_offset(0) {} in JITVars()
187 m_offset; ///< The offset of the variable in the struct, in bytes member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp66 m_offset(0, 0) {} in OptionGroupReadMemory()
101 error = m_offset.SetValueFromString(option_value); in SetOptionValue()
117 m_offset.Clear(); in OptionParsingStarting()
280 m_view_as_type.OptionWasSet() || m_offset.OptionWasSet(); in AnyOptionWasSet()
287 OptionValueUInt64 m_offset; member in OptionGroupReadMemory
653 addr = addr + (*size * m_memory_options.m_offset.GetCurrentValue()); in DoExecute()
899 OptionGroupFindMemory() : OptionGroup(), m_count(1), m_offset(0) {} in OptionGroupFindMemory()
928 if (m_offset.SetValueFromString(option_value).Fail()) in SetOptionValue()
949 OptionValueUInt64 m_offset; member in CommandObjectMemoryFind::OptionGroupFindMemory
1128 found_location + m_memory_options.m_offset.GetCurrentValue(), in DoExecute()
[all …]
/freebsd-12.1/usr.bin/mail/
H A Dfio.c98 this.m_offset = 0; in setptr()
130 this.m_offset = boffsetof(offset); in setptr()
212 positionof(mp->m_block, mp->m_offset), SEEK_SET) < 0) in setinput()

123