Searched refs:m_tmp (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/netinet/ |
H A D | sctp_auth.c | 981 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() 1021 m_offset -= 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() 1026 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) { in sctp_hmac_m() 1027 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset, in sctp_hmac_m() 1028 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset)); in sctp_hmac_m() 1030 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset, in sctp_hmac_m() [all …]
|
H A D | sctp_output.c | 4938 struct mbuf *mat, *m_tmp, *op_err, *op_err_last; in sctp_arethere_unrecognized_parameters() local 5186 m_tmp = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); in sctp_arethere_unrecognized_parameters() 5187 if (m_tmp == NULL) { in sctp_arethere_unrecognized_parameters() 5193 SCTP_BUF_LEN(m_tmp) = 0; in sctp_arethere_unrecognized_parameters() 5194 SCTP_BUF_NEXT(m_tmp) = NULL; in sctp_arethere_unrecognized_parameters() 5195 SCTP_BUF_NEXT(op_err_last) = m_tmp; in sctp_arethere_unrecognized_parameters() 5196 op_err_last = m_tmp; in sctp_arethere_unrecognized_parameters() 5505 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; in sctp_send_initiate_ack() local 6109 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { in sctp_send_initiate_ack() 6110 parameter_len += SCTP_BUF_LEN(m_tmp); in sctp_send_initiate_ack() [all …]
|
H A D | sctputil.c | 5722 struct mbuf *m_tmp; in sctp_sorecvmsg() local 5725 m_tmp = control->data; in sctp_sorecvmsg() 5726 while (m_tmp) { in sctp_sorecvmsg() 5727 cnt += SCTP_BUF_LEN(m_tmp); in sctp_sorecvmsg() 5728 if (SCTP_BUF_NEXT(m_tmp) == NULL) { in sctp_sorecvmsg() 5729 control->tail_mbuf = m_tmp; in sctp_sorecvmsg() 5732 m_tmp = SCTP_BUF_NEXT(m_tmp); in sctp_sorecvmsg()
|
/freebsd/sys/vm/ |
H A D | vm_phys.c | 838 for (vm_page_t m_tmp = m + 1; m_tmp < &m[1 << order]; in vm_phys_finish_init() local 839 m_tmp++, pa += PAGE_SIZE) in vm_phys_finish_init() 840 vm_page_init_page(m_tmp, pa, segind, VM_NFREEPOOL); in vm_phys_finish_init() 1499 vm_page_t m, m_set, m_tmp; in vm_phys_unfree_page() local 1549 m_tmp = vm_phys_seg_paddr_to_vm_page(seg, pa_half); in vm_phys_unfree_page() 1551 m_tmp = m_set; in vm_phys_unfree_page() 1554 vm_freelist_add(fl, m_tmp, order, pool, 0); in vm_phys_unfree_page()
|
/freebsd/contrib/sendmail/src/ |
H A D | map.c | 4581 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/sys/dev/mxge/ |
H A D | if_mxge.c | 2023 struct mbuf *m_tmp; in mxge_encap() local 2053 m_tmp = m_defrag(m, M_NOWAIT); in mxge_encap() 2054 if (m_tmp == NULL) { in mxge_encap() 2058 m = m_tmp; in mxge_encap()
|