Searched refs:m_tmp (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/sys/vm/
H A Dvm_phys.c734 vm_page_t m_tmp; local
736 for (m_tmp = m; m_tmp < &m[1 << order]; m_tmp++)
737 m_tmp->pool = pool;
753 vm_page_t m_set, m_tmp; local
794 m_tmp = &seg->first_page[atop(pa_half - seg->start)];
796 m_tmp = m_set;
799 vm_freelist_add(fl, m_tmp, order, 0);
813 vm_page_t m, m_tmp; local
[all...]
H A Dvm_pageout.c572 vm_page_t m, m_tmp, next; local
619 m_tmp = m;
620 vm_pageout_flush(&m_tmp, 1, VM_PAGER_PUT_SYNC,
H A Dvm_page.c1706 vm_page_t m, m_tmp, m_ret; local
1814 for (m_tmp = m, m = m_ret;
1818 if (m >= m_tmp)
/freebsd-10.0-release/sys/netinet/
H A Dsctp_auth.c1005 struct mbuf *m_tmp; local
1043 m_tmp = m;
1044 while ((m_tmp != NULL) && (m_offset >= (uint32_t) SCTP_BUF_LEN(m_tmp))) {
1045 m_offset -= SCTP_BUF_LEN(m_tmp);
1046 m_tmp = SCTP_BUF_NEXT(m_tmp);
1049 while (m_tmp != NULL) {
1050 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) {
1051 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_
1605 struct mbuf *m_tmp; local
[all...]
H A Dsctp_output.c5349 struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last; local
5891 for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5892 p_len += SCTP_BUF_LEN(m_tmp);
5893 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5894 /* m_tmp should now point to last one */
5907 SCTP_BUF_NEXT(m_tmp) = m_cookie;
5909 for (m_tmp
7318 struct mbuf *m_tmp; local
[all...]
H A Dsctputil.c5367 struct mbuf *m_tmp; local
5370 m_tmp = control->data;
5371 while (m_tmp) {
5372 cnt += SCTP_BUF_LEN(m_tmp);
5373 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5374 control->tail_mbuf = m_tmp;
5377 m_tmp = SCTP_BUF_NEXT(m_tmp);
/freebsd-10.0-release/contrib/sendmail/src/
H A Dmap.c3900 char m_tmp[MAXPATHLEN + LDAPMAP_MAX_PASSWD]; local
4430 lmap->ldap_secret = sfgets(m_tmp, sizeof(m_tmp),
4434 if (strlen(m_tmp) > LDAPMAP_MAX_PASSWD)
4441 strlen(m_tmp) > 0)
4444 if (m_tmp[strlen(m_tmp) - 1] == '\n')
4445 m_tmp[strlen(m_tmp) - 1] = '\0';
4447 lmap->ldap_secret = m_tmp;
[all...]
/freebsd-10.0-release/sys/dev/mxge/
H A Dif_mxge.c2080 struct mbuf *m_tmp; local
2113 m_tmp = m_defrag(m, M_NOWAIT);
2114 if (m_tmp == NULL) {
2118 m = m_tmp;

Completed in 228 milliseconds