Home
last modified time | relevance | path

Searched refs:mnew (Results 1 – 14 of 14) sorted by relevance

/freebsd-12-stable/sys/dev/rtwn/pci/
Drtwn_pci_tx.c145 struct mbuf *mnew; in rtwn_pci_tx_start_frame() local
147 mnew = rtwn_mbuf_defrag(m, M_NOWAIT); in rtwn_pci_tx_start_frame()
148 if (mnew == NULL) { in rtwn_pci_tx_start_frame()
152 m = mnew; in rtwn_pci_tx_start_frame()
/freebsd-12-stable/sys/vm/
Dvm_page.h572 vm_page_t vm_page_replace(vm_page_t mnew, vm_object_t object,
763 vm_page_replace_checked(vm_page_t mnew, vm_object_t object, vm_pindex_t pindex, in vm_page_replace_checked() argument
768 mret = vm_page_replace(mnew, object, pindex); in vm_page_replace_checked()
Dvm_page.c1590 vm_page_replace(vm_page_t mnew, vm_object_t object, vm_pindex_t pindex) in vm_page_replace() argument
1595 KASSERT(mnew->object == NULL, in vm_page_replace()
1596 ("vm_page_replace: page %p already in object", mnew)); in vm_page_replace()
1597 KASSERT(mnew->queue == PQ_NONE, in vm_page_replace()
1598 ("vm_page_replace: new page %p is on a paging queue", mnew)); in vm_page_replace()
1606 mnew->object = object; in vm_page_replace()
1607 mnew->pindex = pindex; in vm_page_replace()
1608 mold = vm_radix_replace(&object->rtree, mnew); in vm_page_replace()
1613 TAILQ_INSERT_AFTER(&object->memq, mold, mnew, listq); in vm_page_replace()
1623 if (pmap_page_is_write_mapped(mnew)) in vm_page_replace()
/freebsd-12-stable/sys/dev/ipw/
Dif_ipw.c1163 struct mbuf *mnew, *m; in ipw_rx_data_intr() local
1182 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in ipw_rx_data_intr()
1183 if (mnew == NULL) { in ipw_rx_data_intr()
1191 error = bus_dmamap_load(sc->rxbuf_dmat, sbuf->map, mtod(mnew, void *), in ipw_rx_data_intr()
1194 m_freem(mnew); in ipw_rx_data_intr()
1214 sbuf->m = mnew; in ipw_rx_data_intr()
1556 struct mbuf *mnew; in ipw_tx_start() local
1610 mnew = m_defrag(m0, M_NOWAIT); in ipw_tx_start()
1611 if (mnew == NULL) { in ipw_tx_start()
1617 m0 = mnew; in ipw_tx_start()
/freebsd-12-stable/sys/dev/ral/
Drt2560.c1095 struct mbuf *mnew, *m; in rt2560_decryption_intr() local
1132 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in rt2560_decryption_intr()
1133 if (mnew == NULL) { in rt2560_decryption_intr()
1143 mtod(mnew, void *), MCLBYTES, rt2560_dma_map_addr, in rt2560_decryption_intr()
1146 m_freem(mnew); in rt2560_decryption_intr()
1166 data->m = mnew; in rt2560_decryption_intr()
1733 struct mbuf *mnew; in rt2560_tx_data() local
1793 mnew = m_defrag(m0, M_NOWAIT); in rt2560_tx_data()
1794 if (mnew == NULL) { in rt2560_tx_data()
1800 m0 = mnew; in rt2560_tx_data()
Drt2661.c967 struct mbuf *mnew, *m; in rt2661_rx_intr() local
1006 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in rt2661_rx_intr()
1007 if (mnew == NULL) { in rt2661_rx_intr()
1017 mtod(mnew, void *), MCLBYTES, rt2661_dma_map_addr, in rt2661_rx_intr()
1020 m_freem(mnew); in rt2661_rx_intr()
1040 data->m = mnew; in rt2661_rx_intr()
1423 struct mbuf *mnew; in rt2661_tx_data() local
1487 mnew = m_defrag(m0, M_NOWAIT); in rt2661_tx_data()
1488 if (mnew == NULL) { in rt2661_tx_data()
1494 m0 = mnew; in rt2661_tx_data()
/freebsd-12-stable/sys/dev/rt/
Dif_rt.c1837 struct mbuf *m, *mnew; in rt_rx_eof() local
1880 mnew = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, in rt_rx_eof()
1882 if (mnew == NULL) { in rt_rx_eof()
1888 mnew->m_len = mnew->m_pkthdr.len = MJUMPAGESIZE; in rt_rx_eof()
1891 ring->spare_dma_map, mnew, segs, &nsegs, BUS_DMA_NOWAIT); in rt_rx_eof()
1898 m_freem(mnew); in rt_rx_eof()
1923 data->m = mnew; in rt_rx_eof()
/freebsd-12-stable/sys/dev/iwi/
Dif_iwi.c1185 struct mbuf *mnew, *m; in iwi_frame_intr() local
1218 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in iwi_frame_intr()
1219 if (mnew == NULL) { in iwi_frame_intr()
1227 mtod(mnew, void *), MCLBYTES, iwi_dma_map_addr, &data->physaddr, in iwi_frame_intr()
1230 m_freem(mnew); in iwi_frame_intr()
1250 data->m = mnew; in iwi_frame_intr()
1781 struct mbuf *mnew; in iwi_tx_start() local
1876 mnew = m_defrag(m0, M_NOWAIT); in iwi_tx_start()
1877 if (mnew == NULL) { in iwi_tx_start()
1883 m0 = mnew; in iwi_tx_start()
/freebsd-12-stable/contrib/unbound/validator/
Dautotrust.c2058 time_t mold, mnew; in set_next_probe() local
2084 mnew = wait_probe_time(env->anchors); in set_next_probe()
2089 if(mold != mnew) { in set_next_probe()
2103 time_t mold, mnew; in autr_tp_remove() local
2129 mnew = wait_probe_time(env->anchors); in autr_tp_remove()
2144 if(mold != mnew) { in autr_tp_remove()
/freebsd-12-stable/sys/dev/malo/
Dif_malo.c1946 struct mbuf *m, *mnew; in malo_rx_proc() local
2036 mnew = malo_getrxmbuf(sc, bf); in malo_rx_proc()
2037 if (mnew == NULL) { in malo_rx_proc()
2046 bf->bf_m = mnew; in malo_rx_proc()
/freebsd-12-stable/sys/dev/usb/wlan/
Dif_uath.c2480 struct mbuf *m = data->m, *mnew, *mp; in uath_data_rxeof() local
2571 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in uath_data_rxeof()
2572 if (mnew == NULL) { in uath_data_rxeof()
2582 data->m = mnew; in uath_data_rxeof()
2583 data->buf = mtod(mnew, uint8_t *); in uath_data_rxeof()
Dif_urtw.c3955 struct mbuf *m, *mnew; in urtw_rxeof() local
4006 mnew = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in urtw_rxeof()
4007 if (mnew == NULL) in urtw_rxeof()
4011 data->m = mnew; in urtw_rxeof()
4012 data->buf = mtod(mnew, uint8_t *); in urtw_rxeof()
/freebsd-12-stable/contrib/gcc/config/rs6000/
Drs6000.opt87 mnew-mnemonics
/freebsd-12-stable/contrib/gcc/doc/
Dinvoke.texi654 -mnew-mnemonics -mold-mnemonics @gol
11317 @item -mnew-mnemonics
11319 @opindex mnew-mnemonics
11322 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
11331 should normally not specify either @option{-mnew-mnemonics} or
11368 @option{-mnew-mnemonics}, @option{-mpopcntb}, @option{-mpower},