| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Address.h | 131 : m_section_wp(rhs.m_section_wp), m_offset(rhs.m_offset) {} in Address() 146 m_offset(offset) { in Address() 183 m_offset = LLDB_INVALID_ADDRESS; in Clear() 329 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset() 355 bool IsValid() const { return m_offset != LLDB_INVALID_ADDRESS; } in IsValid() 449 bool changed = m_offset != offset; in SetOffset() 450 m_offset = offset; in SetOffset() 456 m_offset = addr; in SetRawAddress() 460 if (m_offset != LLDB_INVALID_ADDRESS) { in Slide() 461 m_offset += offset; in Slide() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugArangeSet.cpp | 19 : m_offset(DW_INVALID_OFFSET), m_next_offset(DW_INVALID_OFFSET) {} in DWARFDebugArangeSet() 22 m_offset = DW_INVALID_OFFSET; in Clear() 37 m_offset = *offset_ptr; in extract() 83 if (!data.ValidOffset(m_offset + sizeof(m_header.length) + m_header.length - in extract() 96 const uint32_t header_size = *offset_ptr - m_offset; in extract() 102 *offset_ptr = m_offset + first_tuple_offset; in extract() 146 m_offset, num_terminators); in extract()
|
| H A D | DWARFDebugInfoEntry.h | 42 : m_offset(DW_INVALID_OFFSET), m_parent_idx(0), m_sibling_idx(0), in DWARFDebugInfoEntry() 45 explicit operator bool() const { return m_offset != DW_INVALID_OFFSET; } 128 dw_offset_t GetOffset() const { return m_offset; } in GetOffset() 179 dw_offset_t m_offset : DW_DIE_OFFSET_MAX_BITSIZE; variable
|
| H A D | DWARFDebugArangeSet.h | 46 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset() 62 dw_offset_t m_offset; variable
|
| H A D | DWARFDebugInfoEntry.cpp | 46 m_offset = *offset_ptr; in Extract() 65 (uint64_t)m_offset, (unsigned)abbr_idx); in Extract() 81 (uint64_t)m_offset, (unsigned)attribute.Form); in Extract() 82 *offset_ptr = m_offset; in Extract() 729 return m_offset == rhs.m_offset && m_parent_idx == rhs.m_parent_idx && in operator ==()
|
| H A D | DWARFUnit.h | 45 dw_offset_t m_offset = 0; variable 63 dw_offset_t GetOffset() const { return m_offset; } in GetOffset() 79 dw_offset_t GetNextUnitOffset() const { return m_offset + m_length + 4; } in GetNextUnitOffset()
|
| /freebsd-14.2/usr.sbin/ppp/ |
| H A D | mbuf.c | 210 bp->m_offset += nb; in mbuf_Read() 247 if (bp && bp->m_offset) { in m_prepend() 248 if (bp->m_offset >= len) { in m_prepend() 249 bp->m_offset -= len; in m_prepend() 255 len -= bp->m_offset; in m_prepend() 258 bp->m_len += bp->m_offset; in m_prepend() 259 bp->m_offset = 0; in m_prepend() 263 head->m_offset = extra; in m_prepend() 279 bp->m_offset += n; in m_adj() 399 else if ((bp->m_offset & (sizeof(long) - 1)) != 0) { in m_pullup() [all …]
|
| H A D | mbuf.h | 33 u_short m_offset; /* offset from header end to start position */ member 49 ((bp) ? (u_char *)((bp)+1) + (bp)->m_offset : (u_char *)bp) 52 ((bp) ? (const u_char *)((bp)+1) + (bp)->m_offset : (const u_char *)bp)
|
| H A D | pred.c | 264 wp->m_offset += 2; /* skip length */ in Pred1Input() 269 wp->m_offset++; in Pred1Input() 272 wp->m_offset += 2; in Pred1Input()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Address.cpp | 245 m_offset = rhs.m_offset; in operator =() 263 m_offset = file_addr; in ResolveAddressUsingFileSections() 303 return sect_file_addr + m_offset; in GetFileAddress() 310 return m_offset; in GetFileAddress() 322 return sect_load_addr + m_offset; in GetLoadAddress() 331 return m_offset; in GetLoadAddress() 364 m_offset = target->GetCallableLoadAddress(m_offset, GetAddressClass()); in SetCallableLoadAddress() 388 m_offset = target->GetOpcodeLoadAddress(m_offset, addr_class); in SetOpcodeLoadAddress() 437 s->Printf(" + %" PRIu64, m_offset); in Dump() 445 DumpAddress(s->AsRawOstream(), m_offset, addr_size); in Dump() [all …]
|
| /freebsd-14.2/lib/libdevdctl/ |
| H A D | exception.h | 149 size_t m_offset; variable 162 return (m_offset); in GetOffset()
|
| H A D | exception.cc | 90 m_offset(offset) in ParseException()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Expression/ |
| H A D | Materializer.cpp | 154 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() 206 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize() 212 (uint64_t)process_address + m_offset, in Dematerialize() 353 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog() 444 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() 607 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize() 687 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog() 1000 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize() 1107 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog() 1212 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | Materializer.h | 134 uint32_t GetOffset() { return m_offset; } in GetOffset() 136 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset() 141 uint32_t m_offset = 0; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | ObjectContainer.h | 75 virtual lldb::addr_t GetOffset() const { return m_offset; } in GetOffset() 137 lldb::addr_t m_offset; variable
|
| H A D | UnwindPlan.h | 335 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset() 337 void SetOffset(lldb::addr_t offset) { m_offset = offset; } in SetOffset() 339 void SlideOffset(lldb::addr_t offset) { m_offset += offset; } in SlideOffset() 387 lldb::addr_t m_offset = 0; // Offset into the function for this row variable
|
| /freebsd-14.2/sys/netinet/ |
| H A D | sctp_auth.c | 1021 m_offset -= SCTP_BUF_LEN(m_tmp); in sctp_hmac_m() 1028 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset)); in sctp_hmac_m() 1031 SCTP_BUF_LEN(m_tmp) - m_offset); in sctp_hmac_m() 1035 m_offset = 0; in sctp_hmac_m() 1090 uint32_t m_offset, uint8_t *digest) in sctp_compute_hmac_m() argument 1561 m_offset -= SCTP_BUF_LEN(m_tmp); in sctp_zero_m() 1566 data = mtod(m_tmp, uint8_t *)+m_offset; in sctp_zero_m() 1567 if (size > (uint32_t)(SCTP_BUF_LEN(m_tmp) - m_offset)) { in sctp_zero_m() 1568 memset(data, 0, SCTP_BUF_LEN(m_tmp) - m_offset); in sctp_zero_m() 1569 size -= SCTP_BUF_LEN(m_tmp) - m_offset; in sctp_zero_m() [all …]
|
| H A D | sctp_auth.h | 183 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer); 186 struct mbuf *m, uint32_t m_offset, uint8_t *digest);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolver.cpp | 68 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver() 159 options_dict_sp->AddIntegerItem(GetKey(OptionNames::Offset), m_offset); in WrapOptionsDict() 340 loc_addr.Slide(m_offset); in AddLocation() 351 m_offset = offset; in SetOffset()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointResolver.h | 78 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset() 222 lldb::addr_t m_offset; // A random offset the user asked us to add to any variable
|
| /freebsd-14.2/usr.bin/mail/ |
| H A D | fio.c | 96 this.m_offset = 0; in setptr() 128 this.m_offset = boffsetof(offset); in setptr() 210 positionof(mp->m_block, mp->m_offset), SEEK_SET) < 0) in setinput()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/ |
| H A D | TraceHTR.h | 105 : m_offset(offset), m_size(size), m_metadata(metadata) {} in HTRBlock() 128 size_t m_offset;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 53 : m_num_per_line(1, 1), m_offset(0, 0), in OptionGroupReadMemory() 93 error = m_offset.SetValueFromString(option_value); in SetOptionValue() 107 m_offset.Clear(); in OptionParsingStarting() 272 m_view_as_type.OptionWasSet() || m_offset.OptionWasSet() || in AnyOptionWasSet() 280 OptionValueUInt64 m_offset; member in OptionGroupReadMemory 650 addr = addr + (*size * m_memory_options.m_offset.GetCurrentValue()); in DoExecute() 889 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory() 917 if (m_offset.SetValueFromString(option_value).Fail()) in SetOptionValue() 936 OptionValueUInt64 m_offset; member in CommandObjectMemoryFind::OptionGroupFindMemory 1124 found_location + m_memory_options.m_offset.GetCurrentValue(), in DoExecute() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | ObjectContainer.cpp | 26 m_offset(file_offset), m_length(length) { in ObjectContainer()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSIndexPath.cpp | 109 .GetSyntheticChildAtOffset(_indexes_id.m_offset, in Update() 114 _length_id.m_offset, m_uint_star_type, true)); in Update()
|