Home
last modified time | relevance | path

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

/freebsd-14.2/sys/netinet/
H A Dsctp_auth.c981 struct mbuf *m_tmp; in sctp_hmac_m() local
1019 m_tmp = m; in sctp_hmac_m()
1020 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_hmac_m()
1022 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1025 while (m_tmp != NULL) { in sctp_hmac_m()
1036 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_hmac_m()
1551 struct mbuf *m_tmp; in sctp_zero_m() local
1559 m_tmp = m; in sctp_zero_m()
1560 while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) { in sctp_zero_m()
1562 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_zero_m()
[all …]
H A Dsctp_output.c5189 if (m_tmp == NULL) { in sctp_arethere_unrecognized_parameters()
5195 SCTP_BUF_LEN(m_tmp) = 0; in sctp_arethere_unrecognized_parameters()
5196 SCTP_BUF_NEXT(m_tmp) = NULL; in sctp_arethere_unrecognized_parameters()
5198 op_err_last = m_tmp; in sctp_arethere_unrecognized_parameters()
6111 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6141 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack()
6142 parameter_len += SCTP_BUF_LEN(m_tmp); in sctp_send_initiate_ack()
6143 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_send_initiate_ack()
6144 m_last = m_tmp; in sctp_send_initiate_ack()
7504 struct mbuf *m_tmp; in sctp_move_to_outqueue() local
[all …]
H A Dsctputil.c5723 struct mbuf *m_tmp; in sctp_sorecvmsg() local
5726 m_tmp = control->data; in sctp_sorecvmsg()
5727 while (m_tmp) { in sctp_sorecvmsg()
5728 cnt += SCTP_BUF_LEN(m_tmp); in sctp_sorecvmsg()
5729 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_sorecvmsg()
5730 control->tail_mbuf = m_tmp; in sctp_sorecvmsg()
5733 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_sorecvmsg()
/freebsd-14.2/sys/vm/
H A Dvm_phys.c764 vm_page_t m_tmp; in vm_phys_set_pool() local
766 for (m_tmp = m; m_tmp < &m[1 << order]; m_tmp++) in vm_phys_set_pool()
767 m_tmp->pool = pool; in vm_phys_set_pool()
1311 vm_page_t m_set, m_tmp; in vm_phys_unfree_page() local
1351 m_tmp = &seg->first_page[atop(pa_half - seg->start)]; in vm_phys_unfree_page()
1353 m_tmp = m_set; in vm_phys_unfree_page()
1356 vm_freelist_add(fl, m_tmp, order, 0); in vm_phys_unfree_page()
/freebsd-14.2/contrib/sendmail/src/
H A Dmap.c4581 char m_tmp[MAXPATHLEN + LDAPMAP_MAX_PASSWD]; local
5123 lmap->ldap_secret = sfgets(m_tmp, sizeof(m_tmp),
5127 if (strlen(m_tmp) > LDAPMAP_MAX_PASSWD)
5134 strlen(m_tmp) > 0)
5137 if (m_tmp[strlen(m_tmp) - 1] == '\n')
5138 m_tmp[strlen(m_tmp) - 1] = '\0';
5140 lmap->ldap_secret = m_tmp;
5152 (void) sm_snprintf(m_tmp, sizeof(m_tmp),
5155 lmap->ldap_secret = m_tmp;
/freebsd-14.2/sys/dev/mxge/
H A Dif_mxge.c2024 struct mbuf *m_tmp; in mxge_encap() local
2054 m_tmp = m_defrag(m, M_NOWAIT); in mxge_encap()
2055 if (m_tmp == NULL) { in mxge_encap()
2059 m = m_tmp; in mxge_encap()