Searched refs:m_end (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataEncoder.cpp27 : m_start(nullptr), m_end(nullptr),
36 m_end(static_cast<uint8_t *>(data) + length), m_byte_order(endian),
45 : m_start(nullptr), m_end(nullptr), m_byte_order(endian),
56 m_end = nullptr;
75 m_start = m_end = nullptr;
86 m_end = m_start + data_length; // We got all the bytes we wanted
88 m_end = m_start + bytes_left; // Not all the bytes requested were
H A DDataExtractor.cpp123 : m_start(nullptr), m_end(nullptr),
133 m_end(const_cast<uint8_t *>(static_cast<const uint8_t *>(data)) + length),
146 : m_start(nullptr), m_end(nullptr), m_byte_order(endian),
160 : m_start(nullptr), m_end(nullptr), m_byte_order(data.m_byte_order),
173 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order),
183 m_end = rhs.m_end;
197 m_end = nullptr;
232 m_end
[all...]
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dlist.c218 l->m_end = leend;
264 return entry_to_iter(l, l->m_end);
270 return entry_to_citer(l, l->m_end);
356 next = (struct list_entry *)l->m_end;
374 ghost1 = (struct list_entry *)l->m_end;
386 l->m_end = src->m_end;
H A Dlist.h77 void *m_end; member in struct:atf_list
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataEncoder.h226 size_t GetByteSize() const { return m_end - m_start; }
233 uint8_t *m_end; member in class:lldb_private::DataEncoder
H A DDataExtractor.h257 uint64_t GetByteSize() const { return m_end - m_start; }
393 const uint8_t *GetDataEnd() const { return m_end; }
1003 *m_end; ///< A pointer to the byte that is past the end of the data. member in class:lldb_private::DataExtractor
/freebsd-11-stable/sys/netinet/
H A Dsctp_auth.h214 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
H A Dsctp_output.c10940 struct mbuf *m_out, *m_end = NULL; local
10956 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10991 SCTP_BUF_NEXT(m_end) = m_abort;
13794 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, argument
13803 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13841 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
/freebsd-11-stable/sys/vm/
H A Dvm_page.c2066 * "m_end" for a run of contiguous physical pages that satisfy the
2073 * "m_end" is never dereferenced, so it need not point to a vm_page
2076 * "npages" must be greater than zero. "m_start" and "m_end" must not
2081 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end, argument
2099 for (m = m_start; m < m_end && run_len < npages; m += m_inc) {
2114 if (m + npages > m_end)
2283 vm_page_t m, m_end, m_new; local
2291 m_end = m_run + npages;
2293 for (; error == 0 && m < m_end; m++) {
H A Dvm_phys.c1142 vm_page_t m_end, m_run, m_start; local
1167 m_end = &seg->first_page[atop(pa_end - seg->start)];
1168 m_run = vm_page_scan_contig(npages, m_start, m_end,
H A Dvm_page.h512 vm_page_t m_end, u_long alignment, vm_paddr_t boundary, int options);

Completed in 127 milliseconds