Searched refs:m_offset (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddress.h119 Address() : m_section_wp(), m_offset(LLDB_INVALID_ADDRESS) {}
128 : m_section_wp(rhs.m_section_wp), m_offset(rhs.m_offset) {}
143 m_offset(offset) {
180 m_offset = LLDB_INVALID_ADDRESS;
306 lldb::addr_t GetOffset() const { return m_offset; }
332 bool IsValid() const { return m_offset != LLDB_INVALID_ADDRESS; }
426 bool changed = m_offset != offset;
427 m_offset = offset;
433 m_offset
490 lldb::addr_t m_offset; ///< Offset into section if \\a m_section_wp is valid... member in class:lldb_private::Address
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.h30 : m_offset(DW_INVALID_OFFSET), m_idx_offset(0), m_decls() {}
33 : m_offset(offset), m_idx_offset(idx_offset), m_decls() {}
36 dw_offset_t GetOffset() const { return m_offset; }
53 dw_offset_t m_offset; member in class:DWARFAbbreviationDeclarationSet
H A DDWARFDebugArangeSet.cpp17 : m_offset(DW_INVALID_OFFSET), m_header(), m_arange_descriptors() {
26 m_offset = DW_INVALID_OFFSET;
40 m_offset = *offset_ptr;
80 if (!data.ValidOffset(m_offset + sizeof(m_header.length) + m_header.length -
93 const uint32_t header_size = *offset_ptr - m_offset;
99 *offset_ptr = m_offset + first_tuple_offset;
H A DDWARFDebugArangeSet.h41 void SetOffset(uint32_t offset) { m_offset = offset; }
57 uint32_t m_offset; member in class:DWARFDebugArangeSet
H A DDWARFDebugInfoEntry.h38 : m_offset(DW_INVALID_OFFSET), m_parent_idx(0), m_sibling_idx(0),
41 explicit operator bool() const { return m_offset != DW_INVALID_OFFSET; }
119 dw_offset_t GetOffset() const { return m_offset; }
169 dw_offset_t m_offset; // Offset within the .debug_info/.debug_types member in class:DWARFDebugInfoEntry
H A DDWARFUnit.h39 dw_offset_t m_offset = 0; member in class:DWARFUnitHeader
57 dw_offset_t GetOffset() const { return m_offset; }
71 uint32_t GetNextUnitOffset() const { return m_offset + m_length + 4; }
H A DDWARFDebugAbbrev.cpp28 m_offset = begin_offset;
/freebsd-13-stable/lib/libdevdctl/
H A Dexception.h151 size_t m_offset; member in class:DevdCtl::ParseException
164 return (m_offset);
H A Dexception.cc93 m_offset(offset)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectContainer.h42 m_offset(file_offset), m_length(length), m_data() {
93 virtual lldb::addr_t GetOffset() const { return m_offset; }
164 m_offset; ///< The offset in bytes into the file, or the address in memory member in class:lldb_private::ObjectContainer
H A DUnwindPlan.h337 lldb::addr_t GetOffset() const { return m_offset; }
339 void SetOffset(lldb::addr_t offset) { m_offset = offset; }
341 void SlideOffset(lldb::addr_t offset) { m_offset += offset; }
370 lldb::addr_t m_offset; // Offset into the function for this row member in class:lldb_private::UnwindPlan::Row
/freebsd-13-stable/usr.sbin/ppp/
H A Dmbuf.h35 u_short m_offset; /* offset from header end to start position */ member in struct:mbuf
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 Dmbuf.c212 bp->m_offset += nb;
249 if (bp && bp->m_offset) {
250 if (bp->m_offset >= len) {
251 bp->m_offset -= len;
257 len -= bp->m_offset;
259 memcpy(bp + 1, (const char *)ptr + len, bp->m_offset);
260 bp->m_len += bp->m_offset;
261 bp->m_offset = 0;
265 head->m_offset = extra;
281 bp->m_offset
[all...]
H A Dpred.c266 wp->m_offset += 2; /* skip length */
271 wp->m_offset++;
274 wp->m_offset += 2;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h93 Entity() : m_alignment(1), m_size(0), m_offset(0) {}
111 uint32_t GetOffset() { return m_offset; }
113 void SetOffset(uint32_t offset) { m_offset = offset; }
118 uint32_t m_offset; member in class:lldb_private::Materializer::Entity
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h77 lldb::addr_t GetOffset() const { return m_offset; }
220 lldb::addr_t m_offset; // A random offset the user asked us to add to any member in class:lldb_private::BreakpointResolver
H A DBreakpointResolverFileLine.h26 lldb::addr_t m_offset, bool check_inlines,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp232 Address::Address(lldb::addr_t abs_addr) : m_section_wp(), m_offset(abs_addr) {}
235 : m_section_wp(), m_offset(LLDB_INVALID_ADDRESS) {
242 m_offset = rhs.m_offset;
255 m_offset = file_addr - section_sp->GetFileAddress();
260 m_offset = file_addr;
300 return sect_file_addr + m_offset;
307 return m_offset;
319 return sect_load_addr + m_offset;
328 return m_offset;
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.h160 JITVars() : m_alignment(0), m_size(0), m_offset(0) {}
166 m_offset; ///< The offset of the variable in the struct, in bytes member in struct:lldb_private::ClangExpressionVariable::JITVars
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp66 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {}
160 // Add the m_offset to the dictionary:
161 options_dict_sp->AddIntegerItem(GetKey(OptionNames::Offset), m_offset); local
341 loc_addr.Slide(m_offset);
348 // lldb::addr_t slide = offset - m_offset;
352 m_offset = offset;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp142 const lldb::addr_t load_addr = process_address + m_offset;
194 const lldb::addr_t load_addr = process_address + m_offset;
200 (uint64_t)process_address + m_offset,
339 const lldb::addr_t load_addr = process_address + m_offset;
427 const lldb::addr_t load_addr = process_address + m_offset;
596 const lldb::addr_t load_addr = process_address + m_offset;
677 const lldb::addr_t load_addr = process_address + m_offset;
786 const lldb::addr_t load_addr = process_address + m_offset;
852 const lldb::addr_t load_addr = process_address + m_offset;
952 const lldb::addr_t load_addr = process_address + m_offset;
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp265 : m_tid(tid), m_offset(offset), m_size(size), m_value(value),
272 unsigned m_offset; member in class:ReadRegOperation
289 m_value = *(uint32_t *)(((caddr_t)&regs) + m_offset);
291 m_value = *(uint64_t *)(((caddr_t)&regs) + m_offset);
293 memcpy((void *)&m_value, (((caddr_t)&regs) + m_offset), m_size);
304 : m_tid(tid), m_offset(offset), m_value(value), m_result(result) {}
310 unsigned m_offset; member in class:WriteRegOperation
322 *(uintptr_t *)(((caddr_t)&regs) + m_offset) =
336 : m_tid(tid), m_offset(offset), m_size(size), m_value(value),
343 unsigned m_offset; member in class:ReadDebugRegOperation
376 unsigned m_offset; member in class:WriteDebugRegOperation
[all...]
/freebsd-13-stable/sys/netinet/
H A Dsctp_auth.c976 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer)
1023 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) {
1024 m_offset -= SCTP_BUF_LEN(m_tmp);
1030 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset,
1031 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset));
1033 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset,
1034 SCTP_BUF_LEN(m_tmp) - m_offset);
1038 m_offset = 0;
1093 uint32_t m_offset, uint8_t *digest)
1120 return (sctp_hmac_m(hmac_algo, key->key, key->keylen, m, m_offset, diges
975 sctp_hmac_m(uint16_t hmac_algo, uint8_t *key, uint32_t keylen, struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer) argument
1092 sctp_compute_hmac_m(uint16_t hmac_algo, sctp_key_t *key, struct mbuf *m, uint32_t m_offset, uint8_t *digest) argument
1552 sctp_zero_m(struct mbuf *m, uint32_t m_offset, uint32_t size) argument
[all...]
/freebsd-13-stable/usr.bin/mail/
H A Dfio.c98 this.m_offset = 0;
130 this.m_offset = boffsetof(offset);
212 positionof(mp->m_block, mp->m_offset), SEEK_SET) < 0)
H A Ddef.h73 short m_offset; /* offset in block of message */ member in struct:message

Completed in 318 milliseconds

12