/freebsd/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) {} 146 m_offset(offset) { in Address() 183 m_offset = LLDB_INVALID_ADDRESS; 329 lldb::addr_t GetOffset() const { return m_offset; } 355 bool IsValid() const { return m_offset != LLDB_INVALID_ADDRESS; } 449 bool changed = m_offset != offset; in Slide() 450 m_offset = offset; in Slide() 456 m_offset = addr; 460 if (m_offset ! 503 lldb::addr_t m_offset = LLDB_INVALID_ADDRESS; ///< Offset into section if \a global() variable [all...] |
/freebsd/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) {} 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() 170 dw_offset_t m_offset : DW_DIE_OFFSET_MAX_BITSIZE;
|
H A D | DWARFDebugArangeSet.h | 46 void SetOffset(uint32_t offset) { m_offset = offset; } 62 dw_offset_t m_offset; 60 dw_offset_t m_offset; global() variable
|
H A D | DWARFDebugInfoEntry.cpp | 47 m_offset = *offset_ptr; in Extract() 52 static_cast<uint64_t>(m_offset), llvm::formatv(fmt, vals...)); in Extract() 654 return m_offset == rhs.m_offset && m_parent_idx == rhs.m_parent_idx && in operator ==()
|
/freebsd/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() 257 memcpy(bp + 1, (const char *)ptr + 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() [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/contrib/llvm-project/lldb/source/Core/ |
H A D | Address.cpp | 235 Address::Address(lldb::addr_t abs_addr) : m_section_wp(), m_offset(abs_addr) {} in Address() 245 m_offset = rhs.m_offset; in operator =() 258 m_offset = file_addr - section_sp->GetFileAddress(); in ResolveAddressUsingFileSections() 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() [all …]
|
/freebsd/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() 932 const lldb::addr_t load_addr = process_address + m_offset; in Materialize() 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() [all …]
|
/freebsd/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/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/sys/netinet/ |
H A D | sctp_auth.c | 973 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer) in sctp_hmac_m() argument 1020 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_hmac_m() 1021 m_offset -= SCTP_BUF_LEN(m_tmp); in sctp_hmac_m() 1027 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset, in sctp_hmac_m() 1028 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset)); in sctp_hmac_m() 1030 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+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 1117 return (sctp_hmac_m(hmac_algo, key->key, key->keylen, m, m_offset, digest, 0)); in sctp_compute_hmac_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/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/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointResolver.cpp | 69 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver() 160 options_dict_sp->AddIntegerItem(GetKey(OptionNames::Offset), m_offset); in WrapOptionsDict() 349 loc_addr.Slide(m_offset); in AddLocation() 360 m_offset = offset; in SetOffset()
|
/freebsd/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/usr.bin/mail/ |
H A D | fio.c | 90 this.m_offset = 0; in setptr() 122 this.m_offset = boffsetof(offset); in setptr() 204 positionof(mp->m_block, mp->m_offset), SEEK_SET) < 0) in setinput()
|
/freebsd/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() 892 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory() 920 if (m_offset.SetValueFromString(option_value).Fail()) in SetOptionValue() 939 OptionValueUInt64 m_offset; member in CommandObjectMemoryFind::OptionGroupFindMemory 1098 found_location + m_memory_options.m_offset.GetCurrentValue(), in DoExecute() [all …]
|
H A D | CommandObjectPlatform.cpp | 582 fd, m_options.m_offset, &buffer[0], m_options.m_count, error); in DoExecute() 611 if (option_arg.getAsInteger(0, m_offset)) in SetOptionValue() 628 m_offset = 0; in OptionParsingStarting() 638 uint32_t m_offset; member in CommandObjectPlatformFRead::CommandOptions 675 platform_sp->WriteFile(fd, m_options.m_offset, &m_options.m_data[0], in DoExecute() 704 if (option_arg.getAsInteger(0, m_offset)) in SetOptionValue() 719 m_offset = 0; in OptionParsingStarting() 729 uint32_t m_offset; member in CommandObjectPlatformFWrite::CommandOptions
|
/freebsd/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/contrib/llvm-project/lldb/source/Symbol/ |
H A D | ObjectContainer.cpp | 26 m_offset(file_offset), m_length(length) { in ObjectContainer()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | NSIndexPath.cpp | 111 .GetSyntheticChildAtOffset(_indexes_id.m_offset, in Update() 116 _length_id.m_offset, m_uint_star_type, true)); in Update()
|