/freebsd/contrib/atf/atf-c/detail/ |
H A D | list.c | 218 l->m_end = leend; in atf_list_init() 264 return entry_to_iter(l, l->m_end); in atf_list_end() 270 return entry_to_citer(l, l->m_end); in atf_list_end_c() 356 next = (struct list_entry *)l->m_end; in atf_list_append() 374 ghost1 = (struct list_entry *)l->m_end; in atf_list_append_list() 386 l->m_end = src->m_end; in atf_list_append_list()
|
H A D | list.h | 77 void *m_end; member
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | DataExtractor.cpp | 133 m_end(const_cast<uint8_t *>(static_cast<const uint8_t *>(data)) + length), in DataExtractor() 171 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order), in DataExtractor() 181 m_end = rhs.m_end; in operator =() 195 m_end = nullptr; in Clear() 230 m_end = nullptr; in SetData() 233 m_end = m_start + length; in SetData() 284 m_start = m_end = nullptr; in SetData() 295 m_end = m_start + data_length; // We got all the bytes we wanted in SetData() 297 m_end = m_start + bytes_left; // Not all the bytes requested were in SetData() 791 const char *end = reinterpret_cast<const char *>(m_end); in GetCStr() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RegisterFlags.h | 96 unsigned GetEnd() const { return m_end; } in GetEnd() 116 (m_end == rhs.m_end); 127 unsigned m_end; variable
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterFlags.cpp | 22 : m_name(std::move(name)), m_start(start), m_end(end), in Field() 24 assert(m_start <= m_end && "Start bit must be <= end bit."); in Field() 28 : m_name(std::move(name)), m_start(bit_position), m_end(bit_position), in Field() 33 : m_name(std::move(name)), m_start(start), m_end(end), in Field() 52 m_end); in DumpToLog() 86 return GetSizeInBits(m_start, m_end); in GetSizeInBits() 103 return GetMaxValue(m_start, m_end); in GetMaxValue()
|
/freebsd/sys/vm/ |
H A D | vm_phys.c | 1356 vm_page_t m_end; in vm_phys_enqueue_contig() local 1367 m_end = m + npages; in vm_phys_enqueue_contig() 1370 if (m < m_end && in vm_phys_enqueue_contig() 1378 while (m + (1 << order) <= m_end) { in vm_phys_enqueue_contig() 1381 __func__, m_end - npages, m)); in vm_phys_enqueue_contig() 1386 vm_phys_enq_beg(m, m_end - m, fl, 1); in vm_phys_enqueue_contig() 1398 vm_page_t m_start, m_end; in vm_phys_free_contig() local 1410 m_end = m + npages; in vm_phys_free_contig() 1413 m_end -= 1 << order_end; in vm_phys_free_contig() 1418 if (m_start < m_end) in vm_phys_free_contig() [all …]
|
H A D | vm_page.c | 2913 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end, in vm_page_scan_contig() argument 2929 for (m = m_start; m < m_end && run_len < npages; m += m_inc) { in vm_page_scan_contig() 2944 if (m + npages > m_end) in vm_page_scan_contig() 3094 vm_page_t m, m_end, m_new; in vm_page_reclaim_run() local 3102 m_end = m_run + npages; in vm_page_reclaim_run() 3103 for (; error == 0 && m < m_end; m++) { in vm_page_reclaim_run()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | DataExtractor.h | 270 uint64_t GetByteSize() const { return m_end - m_start; } in GetByteSize() 406 const uint8_t *GetDataEnd() const { return m_end; } in GetDataEnd() 1010 const uint8_t *m_end = variable
|
/freebsd/sys/netinet/ |
H A D | sctp_auth.h | 207 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
|
H A D | sctp_output.c | 10940 struct mbuf *m_out, *m_end = NULL; in sctp_send_abort_tcb() local 10957 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset, in sctp_send_abort_tcb() 11000 SCTP_BUF_NEXT(m_end) = m_abort; in sctp_send_abort_tcb() 13792 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, in sctp_add_auth_chunk() argument 13801 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) || in sctp_add_auth_chunk() 13839 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0); in sctp_add_auth_chunk()
|
/freebsd/sys/powerpc/aim/ |
H A D | mmu_oea64.c | 3662 vm_page_t m_end; in moea64_sp_refchg_process() local 3666 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++) { in moea64_sp_refchg_process() 4040 vm_page_t m, m_end; in moea64_sp_protect() local 4077 for (m_end = &m[HPT_SP_PAGES]; m < m_end; m++) in moea64_sp_protect()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 4610 T m_end; member in Catch::Generators::RangeGenerator 4617 m_end(end), in RangeGenerator() 4621 assert(m_current != m_end && "Range start and end cannot be equal"); in RangeGenerator() 4623 …assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && "Step moves … in RangeGenerator() 4636 return (m_positive) ? (m_current < m_end) : (m_current > m_end); in next() 8422 size_t m_end = 0; member in Catch::clara::TextFlow::Column::iterator 8446 m_end = m_pos; in calcLength() 8448 ++m_end; in calcLength() 8450 while (m_end < line().size() && line()[m_end] != '\n') in calcLength() 8451 ++m_end; in calcLength() [all …]
|