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

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterFlags.h31 : m_name(std::move(name)), m_start(bit_position), m_end(bit_position) {}
34 unsigned GetSizeInBits() const { return m_end - m_start + 1; }
48 unsigned GetEnd() const { return m_end; }
67 (m_end == rhs.m_end);
77 unsigned m_end; member in class:lldb_private::RegisterFlags::Field
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp133 m_end(const_cast<uint8_t *>(static_cast<const uint8_t *>(data)) + length),
171 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order),
181 m_end = rhs.m_end;
195 m_end = nullptr;
230 m_end = nullptr;
233 m_end = m_start + length;
284 m_start = m_end = nullptr;
295 m_end
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DRegisterFlags.cpp21 : m_name(std::move(name)), m_start(start), m_end(end) {
22 assert(m_start <= m_end && "Start bit must be <= end bit.");
27 m_end);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataExtractor.h270 uint64_t GetByteSize() const { return m_end - m_start; }
406 const uint8_t *GetDataEnd() const { return m_end; }
1010 const uint8_t *m_end = member in class:lldb_private::DataExtractor
/freebsd-current/sys/vm/
H A Dvm_phys.c1356 vm_page_t m_end; local
1367 m_end = m + npages;
1370 if (m < m_end &&
1378 while (m + (1 << order) <= m_end) {
1381 __func__, m_end - npages, m));
1386 vm_phys_enq_beg(m, m_end - m, fl, 1);
1398 vm_page_t m_start, m_end; local
1410 m_end = m + npages;
1413 m_end -= 1 << order_end;
1418 if (m_start < m_end)
[all...]
H A Dvm_page.c2694 * "m_end" for a run of contiguous physical pages that satisfy the
2701 * "m_end" is never dereferenced, so it need not point to a vm_page
2704 * "npages" must be greater than zero. "m_start" and "m_end" must not
2709 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end, argument
2725 for (m = m_start; m < m_end && run_len < npages; m += m_inc) {
2740 if (m + npages > m_end)
2890 vm_page_t m, m_end, m_new; local
2898 m_end = m_run + npages;
2899 for (; error == 0 && m < m_end; m++) {
/freebsd-current/sys/netinet/
H A Dsctp_auth.h207 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
H A Dsctp_output.c10940 struct mbuf *m_out, *m_end = NULL; local
10957 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
11000 SCTP_BUF_NEXT(m_end) = m_abort;
13792 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, argument
13801 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13839 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
/freebsd-current/sys/powerpc/aim/
H A Dmmu_oea64.c3662 vm_page_t m_end; local
3666 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++) {
4040 vm_page_t m, m_end; local
4077 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++)
/freebsd-current/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 275 milliseconds