Home
last modified time | relevance | path

Searched refs:m_tmp (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/netinet/
H A Dsctp_auth.c984 struct mbuf *m_tmp; in sctp_hmac_m() local
1022 m_tmp = m; in sctp_hmac_m()
1023 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_hmac_m()
1025 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1028 while (m_tmp != NULL) { in sctp_hmac_m()
1039 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1554 struct mbuf *m_tmp; in sctp_zero_m() local
1562 m_tmp = m; in sctp_zero_m()
1563 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_zero_m()
1565 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_zero_m()
[all …]
H A Dsctp_output.c5150 if (m_tmp == NULL) { in sctp_arethere_unrecognized_parameters()
5156 SCTP_BUF_LEN(m_tmp) = 0; in sctp_arethere_unrecognized_parameters()
5157 SCTP_BUF_NEXT(m_tmp) = NULL; in sctp_arethere_unrecognized_parameters()
5159 op_err_last = m_tmp; in sctp_arethere_unrecognized_parameters()
6045 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6075 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6076 parameter_len += SCTP_BUF_LEN(m_tmp); in sctp_send_initiate_ack()
6077 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_send_initiate_ack()
6078 m_last = m_tmp; in sctp_send_initiate_ack()
7454 struct mbuf *m_tmp; in sctp_move_to_outqueue() local
[all …]
H A Dsctputil.c5664 struct mbuf *m_tmp; in sctp_sorecvmsg() local
5667 m_tmp = control->data; in sctp_sorecvmsg()
5668 while (m_tmp) { in sctp_sorecvmsg()
5669 cnt += SCTP_BUF_LEN(m_tmp); in sctp_sorecvmsg()
5670 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_sorecvmsg()
5671 control->tail_mbuf = m_tmp; in sctp_sorecvmsg()
5674 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_sorecvmsg()
/f-stack/freebsd/vm/
H A Dvm_phys.c1282 vm_page_t m_tmp; in vm_phys_set_pool() local
1284 for (m_tmp = m; m_tmp < &m[1 << order]; m_tmp++) in vm_phys_set_pool()
1285 m_tmp->pool = pool; in vm_phys_set_pool()
1301 vm_page_t m_set, m_tmp; in vm_phys_unfree_page() local
1341 m_tmp = &seg->first_page[atop(pa_half - seg->start)]; in vm_phys_unfree_page()
1343 m_tmp = m_set; in vm_phys_unfree_page()
1346 vm_freelist_add(fl, m_tmp, order, 0); in vm_phys_unfree_page()