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

/freebsd-13-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-13-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-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataEncoder.h226 size_t GetByteSize() const { return m_end - m_start; }
232 uint8_t *m_end; member in class:lldb_private::DataEncoder
H A DDataExtractor.h259 uint64_t GetByteSize() const { return m_end - m_start; }
395 const uint8_t *GetDataEnd() const { return m_end; }
1002 *m_end; ///< A pointer to the byte that is past the end of the data. member in class:lldb_private::DataExtractor
/freebsd-13-stable/sys/vm/
H A Dvm_phys.c1152 vm_page_t m_end; local
1162 m_end = m + npages;
1165 m + (1 << order) <= m_end) {
1168 __func__, m_end - npages, m));
1173 while (m + (1 << order) <= m_end) {
1176 __func__, m_end - npages, m));
1181 while (m < m_end) {
1184 __func__, m_end - npages, m));
1185 order = flsl(m_end - m) - 1;
1200 vm_page_t m_start, m_end; local
1240 vm_page_t m_end, m_run, m_start; local
[all...]
H A Dvm_page.h666 vm_page_t m_end, u_long alignment, vm_paddr_t boundary, int options);
H A Dvm_page.c2554 * "m_end" for a run of contiguous physical pages that satisfy the
2561 * "m_end" is never dereferenced, so it need not point to a vm_page
2564 * "npages" must be greater than zero. "m_start" and "m_end" must not
2569 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end, argument
2585 for (m = m_start; m < m_end && run_len < npages; m += m_inc) {
2600 if (m + npages > m_end)
2752 vm_page_t m, m_end, m_new; local
2760 m_end = m_run + npages;
2761 for (; error == 0 && m < m_end; m++) {
/freebsd-13-stable/sys/netinet/
H A Dsctp_auth.h210 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
H A Dsctp_output.c10846 struct mbuf *m_out, *m_end = NULL; local
10862 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10897 SCTP_BUF_NEXT(m_end) = m_abort;
13704 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, argument
13713 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13751 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
/freebsd-13-stable/sys/powerpc/aim/
H A Dmmu_oea64.c3642 vm_page_t m_end; local
3646 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++) {
4020 vm_page_t m, m_end; local
4057 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++)
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp4610 T m_end;
4617 m_end(end),
4621 assert(m_current != m_end && "Range start and end cannot be equal");
4623 assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && "Step moves away from end");
4636 return (m_positive) ? (m_current < m_end) : (m_current > m_end);
8422 size_t m_end = 0;
8446 m_end = m_pos;
8448 ++m_end;
[all...]

Completed in 234 milliseconds