HomeSort by: relevance | last modified time | path
    Searched defs:ndesc (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/dev/ieee1394/
fwohcivar.h 50 u_int ndesc; member in struct:fwohci_softc::fwohci_dbch
  /src/sys/arch/ia64/stand/ia64/efi/
main.c 205 int i, ndesc; local in function:command_memmap
236 ndesc = sz / dsz;
240 for (i = 0, p = map; i < ndesc;
  /src/sys/dev/hpc/
hpckbd.c 306 static struct wscons_keydesc *ndesc = NULL; local in function:hpckbd_keymap_setup
313 if (ndesc == NULL) {
318 ndesc = malloc(sz * sizeof(*ndesc), M_DEVBUF, M_WAITOK);
319 memcpy(ndesc, hpckbd_keymapdata.keydesc, sz * sizeof(*ndesc));
321 hpckbd_keymapdata.keydesc = ndesc;
327 ndesc[i].map = map;
328 ndesc[i].map_size = mapsize;
  /src/sys/kern/
exec_elf.c 942 const char *ndata, *ndesc; local in function:netbsd_elf_signature
961 ndesc = nptr;
968 isnetbsd |= netbsd_elf_note(epp, np, ndata, ndesc);
985 const Elf_Nhdr *np, const char *ndata, const char *ndesc)
1003 memcpy(&epp->ep_osversion, ndesc,
1033 memcpy(&flags, ndesc, sizeof(flags));
1053 * Ensure ndesc is NUL-terminated and of the
1056 if (strnlen(ndesc, np->n_descsz) + 1 !=
1061 strlcpy(epp->ep_machine_arch, ndesc,
1074 ELF_MD_MCMODEL_CHECK(epp, ndesc, np->n_descsz)
    [all...]
  /src/sys/arch/arm/xscale/
pxa2x0_dmac.c 902 struct dmac_desc *desc, *ndesc; local in function:pxa2x0_dmac_abort_xfer
945 for (desc = SLIST_FIRST(&dxs->dxs_descs); desc; desc = ndesc) {
946 ndesc = SLIST_NEXT(desc, d_link);
1151 struct dmac_desc *ndesc; local in function:dmac_continue_xfer
1153 desc; desc = ndesc) {
1154 ndesc = SLIST_NEXT(desc, d_link);
1197 struct dmac_desc *desc, *ndesc; local in function:dmac_channel_intr
1236 for (desc = SLIST_FIRST(&dxs->dxs_descs); desc; desc = ndesc) {
1237 ndesc = SLIST_NEXT(desc, d_link);
  /src/sys/dev/marvell/
if_mvxpe.c 2305 uint32_t ptxs, ptxsu, ndesc; local in function:mvxpe_tx_queue_complete
2311 ndesc = MVXPE_PTXS_GET_TBC(ptxs);
2312 if (ndesc == 0)
2316 "tx complete queue %d, %d descriptors.\n", q, ndesc);
2318 mvxpe_ring_sync_tx(sc, q, tx->tx_dma, ndesc,
2321 for (i = 0; i < ndesc; i++) {
2368 while (ndesc > 255) {
2371 ndesc -= 255;
2373 if (ndesc > 0) {
2374 ptxsu = MVXPE_PTXSU_NORB(ndesc);
2560 uint32_t prxs, prxsu, ndesc; local in function:mvxpe_rx_queue_refill
    [all...]
  /src/sys/dev/pci/cxgb/
cxgb_sge.c 874 txq_prod(struct sge_txq *txq, unsigned int ndesc, struct txq_state *txqs)
876 txq->in_use += ndesc;
882 txq->unacked += ndesc;
886 txq->pidx += ndesc;
1065 * @ndesc: number of Tx descriptors spanned by the SGL
1082 write_wr_hdr_sgl(unsigned int ndesc, struct tx_desc *txd, struct txq_state *txqs,
1090 if (__predict_true(ndesc == 1)) {
1113 ndesc--;
1162 unsigned int ndesc, flits, cntrl, mlen; local in function:t3_encap
1280 ndesc = calc_tx_descs(m0, nsegs)
1787 unsigned int ndesc; local in function:ofld_xmit
1861 unsigned int ndesc = m_get_priority(m); local in function:restart_offloadq
    [all...]
  /src/sys/dev/ic/
rtw.c 1321 int *ndesc, device_t dev)
1344 *ndesc = i;
1707 struct rtw_txsoft *ts, int ndesc)
1717 tdb->tdb_nfree += ndesc;
1771 int ndesc; local in function:rtw_collect_txring
1784 ndesc = 1 + ts->ts_last - ts->ts_first;
1786 ndesc += tdb->tdb_ndesc;
1788 KASSERT(ndesc > 0);
1790 rtw_txdescs_sync(tdb, ts->ts_first, ndesc,
1808 rtw_txdescs_sync(tdb, ts->ts_first, ndesc,
    [all...]

Completed in 21 milliseconds