md 277 arch/i386/i386/mem.c struct mem_range_desc *md;
md 296 arch/i386/i386/mem.c md = (struct mem_range_desc *)
md 299 arch/i386/i386/mem.c error = mem_range_attr_get(md, &nd);
md 301 arch/i386/i386/mem.c error = copyout(md, mo->mo_desc,
md 303 arch/i386/i386/mem.c free(md, M_MEMDESC);
md 311 arch/i386/i386/mem.c md = malloc(sizeof(struct mem_range_desc), M_MEMDESC, M_WAITOK);
md 312 arch/i386/i386/mem.c error = copyin(mo->mo_desc, md, sizeof(struct mem_range_desc));
md 314 arch/i386/i386/mem.c md->mr_owner[sizeof(md->mr_owner) - 1] = 0;
md 316 arch/i386/i386/mem.c error = mem_range_attr_set(md, &mo->mo_arg[0]);
md 317 arch/i386/i386/mem.c free(md, M_MEMDESC);
md 743 dev/pci/musycc.c struct musycc_dma_data *md;
md 750 dev/pci/musycc.c md = &mg->mg_dma_d[c];
md 751 dev/pci/musycc.c md->tx_pend = NULL;
md 752 dev/pci/musycc.c md->tx_cur = NULL;
md 753 dev/pci/musycc.c md->tx_cnt = size;
md 754 dev/pci/musycc.c md->tx_pkts = 0;
md 757 dev/pci/musycc.c for (i = 0; i < md->tx_cnt; i++) {
md 767 dev/pci/musycc.c if (md->tx_cur) {
md 768 dev/pci/musycc.c md->tx_cur->nextdesc = dd;
md 769 dev/pci/musycc.c md->tx_cur->next = htole32(base + (caddr_t)dd -
md 771 dev/pci/musycc.c md->tx_cur = dd;
md 773 dev/pci/musycc.c md->tx_pend = md->tx_cur = dd;
md 776 dev/pci/musycc.c dd->nextdesc = md->tx_pend;
md 777 dev/pci/musycc.c dd->next = htole32(base + (caddr_t)md->tx_pend - mg->mg_listkva);
md 778 dev/pci/musycc.c md->tx_pend = dd;
md 798 dev/pci/musycc.c struct musycc_dma_data *md;
md 805 dev/pci/musycc.c md = &mg->mg_dma_d[c];
md 806 dev/pci/musycc.c md->rx_cnt = size;
md 823 dev/pci/musycc.c if (md->rx_prod) {
md 824 dev/pci/musycc.c md->rx_prod->nextdesc = dd;
md 825 dev/pci/musycc.c md->rx_prod->next = htole32(base + (caddr_t)dd -
md 827 dev/pci/musycc.c md->rx_prod = dd;
md 829 dev/pci/musycc.c last = md->rx_prod = dd;
md 847 dev/pci/musycc.c struct musycc_dma_data *md;
md 850 dev/pci/musycc.c md = &mg->mg_dma_d[c];
md 854 dev/pci/musycc.c dd = md->tx_pend;
md 870 dev/pci/musycc.c } while (dd != md->tx_pend);
md 871 dev/pci/musycc.c md->tx_pend = md->tx_cur = NULL;
md 872 dev/pci/musycc.c md->tx_cnt = md->tx_use = md->tx_pkts = 0;
md 878 dev/pci/musycc.c struct musycc_dma_data *md;
md 881 dev/pci/musycc.c md = &mg->mg_dma_d[c];
md 885 dev/pci/musycc.c dd = md->rx_prod;
md 901 dev/pci/musycc.c } while (dd != md->rx_prod);
md 902 dev/pci/musycc.c md->rx_prod = NULL;
md 903 dev/pci/musycc.c md->rx_cnt = 0;
md 1749 dev/pci/musycc.c struct musycc_grpdesc *md = mg->mg_group;
md 1759 dev/pci/musycc.c printf("global conf: %08x\n", letoh32(md->global_conf));
md 1760 dev/pci/musycc.c d = letoh32(md->group_conf);
md 1773 dev/pci/musycc.c d = letoh32(md->port_conf);
md 1783 dev/pci/musycc.c letoh32(md->msglen_conf) & MUSYCC_MAXFRM_MASK,
md 1784 dev/pci/musycc.c (letoh32(md->msglen_conf) >> MUSYCC_MAXFRM2_SHIFT) &
md 1786 dev/pci/musycc.c printf("interrupt queue %x len %d\n", letoh32(md->int_queuep),
md 1787 dev/pci/musycc.c letoh32(md->int_queuelen));
md 1788 dev/pci/musycc.c printf("memory protection %x\n", letoh32(md->memprot));
md 1792 dev/pci/musycc.c if (md->tx_tsmap[i] & MUSYCC_TSLOT_ENABLED)
md 1794 dev/pci/musycc.c md->tx_tsmap[i] & MUSYCC_TSLOT_ENABLED ? "C" : " ",
md 1795 dev/pci/musycc.c md->tx_tsmap[i] & MUSYCC_TSLOT_SUB ? "S" : " ",
md 1796 dev/pci/musycc.c md->tx_tsmap[i] & MUSYCC_TSLOT_56K ? "*" : " ",
md 1797 dev/pci/musycc.c MUSYCC_TSLOT_CHAN(md->tx_tsmap[i]));
md 1798 dev/pci/musycc.c else if (md->rx_tsmap[i] & MUSYCC_TSLOT_ENABLED)
md 1800 dev/pci/musycc.c if (md->rx_tsmap[i] & MUSYCC_TSLOT_ENABLED)
md 1802 dev/pci/musycc.c md->rx_tsmap[i] & MUSYCC_TSLOT_ENABLED ? "C" : " ",
md 1803 dev/pci/musycc.c md->rx_tsmap[i] & MUSYCC_TSLOT_SUB ? "S" : " ",
md 1804 dev/pci/musycc.c md->rx_tsmap[i] & MUSYCC_TSLOT_56K ? "*" : " ",
md 1805 dev/pci/musycc.c MUSYCC_TSLOT_CHAN(md->rx_tsmap[i]));
md 1812 dev/pci/musycc.c if (md->tx_cconf[i] != 0) {
md 1813 dev/pci/musycc.c d = letoh32(md->tx_cconf[i]);
md 1824 dev/pci/musycc.c d = letoh32(md->rx_cconf[i]);
md 1946 dev/pci/musycc.c struct musycc_grpdesc *md = mg->mg_group;
md 1957 dev/pci/musycc.c if (md->tx_headp[i] == 0 && md->rx_headp[i] == 0)
md 1960 dev/pci/musycc.c md->tx_headp[i], md->tx_msgp[i],
md 1961 dev/pci/musycc.c md->rx_headp[i], md->rx_msgp[i]);
md 1966 dev/pci/musycc.c if (md->tx_headp[i] == 0)
md 1989 dev/pci/musycc.c if (md->rx_headp[i] == 0)
md 165 dev/sequencer.c struct midi_dev *md;
md 193 dev/sequencer.c md = midiseq_open(unit, flags);
md 194 dev/sequencer.c if (md) {
md 195 dev/sequencer.c sc->devs[sc->nmidi++] = md;
md 196 dev/sequencer.c md->seq = sc;
md 458 dev/sequencer.c struct midi_dev *md;
md 502 dev/sequencer.c md = sc->devs[devno];
md 503 dev/sequencer.c strncpy(si->name, md->name, sizeof si->name);
md 505 dev/sequencer.c si->synth_subtype = md->subtype;
md 506 dev/sequencer.c si->nr_voices = md->nr_voices;
md 507 dev/sequencer.c si->instr_bank_size = md->instr_bank_size;
md 508 dev/sequencer.c si->capabilities = md->capabilities;
md 632 dev/sequencer.c struct midi_dev *md;
md 635 dev/sequencer.c md = sc->devs[i];
md 636 dev/sequencer.c midiseq_reset(md);
md 638 dev/sequencer.c midiseq_ctlchange(md, chn, MIDI_CTRL_ALLOFF, 0);
md 639 dev/sequencer.c midiseq_ctlchange(md, chn, MIDI_CTRL_RESET, 0);
md 640 dev/sequencer.c midiseq_pitchbend(md, chn, MIDI_BEND_NEUTRAL);
md 681 dev/sequencer.c struct midi_dev *md;
md 686 dev/sequencer.c md = sc->devs[dev];
md 701 dev/sequencer.c md, voice, note, parm));
md 702 dev/sequencer.c error = midiseq_noteon(md, voice, note, parm);
md 705 dev/sequencer.c error = midiseq_noteoff(md, voice, note, parm);
md 708 dev/sequencer.c error = midiseq_keypressure(md, voice, note, parm);
md 723 dev/sequencer.c struct midi_dev *md;
md 732 dev/sequencer.c md = sc->devs[dev];
md 744 dev/sequencer.c error = midiseq_pgmchange(md, chan, p1);
md 749 dev/sequencer.c error = midiseq_ctlchange(md, chan, p1, w14);
md 752 dev/sequencer.c error = midiseq_pitchbend(md, chan, w14);
md 755 dev/sequencer.c error = midiseq_chnpressure(md, chan, p1);
md 790 dev/sequencer.c struct midi_dev *md;
md 797 dev/sequencer.c md = sc->devs[dev];
md 801 dev/sequencer.c midiseq_out(md, &c, 1, 0);
md 807 dev/sequencer.c midiseq_out(md, buf, i, 0);
md 990 dev/sequencer.c midiseq_in(struct midi_dev *md, u_char *msg, int len)
md 992 dev/sequencer.c int unit = md->unit;
md 997 dev/sequencer.c md, msg[0], msg[1], msg[2]));
md 1026 dev/sequencer.c seq_event_intr(md->seq, &ev);
md 1034 dev/sequencer.c struct midi_dev *md;
md 1044 dev/sequencer.c md = malloc(sizeof *md, M_DEVBUF, M_WAITOK);
md 1045 dev/sequencer.c sc->seq_md = md;
md 1046 dev/sequencer.c memset(md, 0, sizeof *md);
md 1047 dev/sequencer.c md->msc = sc;
md 1049 dev/sequencer.c md->unit = unit;
md 1050 dev/sequencer.c md->name = mi.name;
md 1051 dev/sequencer.c md->subtype = 0;
md 1052 dev/sequencer.c md->nr_voices = 128; /* XXX */
md 1053 dev/sequencer.c md->instr_bank_size = 128; /* XXX */
md 1055 dev/sequencer.c md->capabilities |= SYNTH_CAP_INPUT;
md 1056 dev/sequencer.c return (md);
md 1060 dev/sequencer.c midiseq_close(struct midi_dev *md)
md 1062 dev/sequencer.c DPRINTFN(2, ("midiseq_close: %d\n", md->unit));
md 1063 dev/sequencer.c midiclose(makedev(0, md->unit), 0, 0, 0);
md 1064 dev/sequencer.c free(md, M_DEVBUF);
md 1068 dev/sequencer.c midiseq_reset(struct midi_dev *md)
md 1071 dev/sequencer.c DPRINTFN(3, ("midiseq_reset: %d\n", md->unit));
md 1075 dev/sequencer.c midiseq_out(struct midi_dev *md, u_char *buf, u_int cc, int chk)
md 1078 dev/sequencer.c md->msc, md->unit, buf[0], cc));
md 1081 dev/sequencer.c if (chk && md->last_cmd == buf[0])
md 1084 dev/sequencer.c md->last_cmd = buf[0];
md 1085 dev/sequencer.c return (midi_writebytes(md->unit, buf, cc));
md 1089 dev/sequencer.c midiseq_noteon(struct midi_dev *md, int chan, int note, int vel)
md 1103 dev/sequencer.c return (midiseq_out(md, buf, 3, 1));
md 1107 dev/sequencer.c midiseq_noteoff(struct midi_dev *md, int chan, int note, int vel)
md 1119 dev/sequencer.c return (midiseq_out(md, buf, 3, 1));
md 1123 dev/sequencer.c midiseq_keypressure(struct midi_dev *md, int chan, int note, int vel)
md 1135 dev/sequencer.c return (midiseq_out(md, buf, 3, 1));
md 1139 dev/sequencer.c midiseq_pgmchange(struct midi_dev *md, int chan, int parm)
md 1148 dev/sequencer.c return (midiseq_out(md, buf, 2, 1));
md 1152 dev/sequencer.c midiseq_chnpressure(struct midi_dev *md, int chan, int parm)
md 1161 dev/sequencer.c return (midiseq_out(md, buf, 2, 1));
md 1165 dev/sequencer.c midiseq_ctlchange(struct midi_dev *md, int chan, int parm, int w14)
md 1175 dev/sequencer.c return (midiseq_out(md, buf, 3, 1));
md 1179 dev/sequencer.c midiseq_pitchbend(struct midi_dev *md, int chan, int parm)
md 1188 dev/sequencer.c return (midiseq_out(md, buf, 3, 1));
md 1192 dev/sequencer.c midiseq_loadpatch(struct midi_dev *md, struct sysex_info *sysex, struct uio *uio)
md 1214 dev/sequencer.c error = midiseq_out(md, &c, 1, 0);
md 1227 dev/sequencer.c error = midiseq_out(md, buf, i, 0);
md 1239 dev/sequencer.c return (midiseq_out(md, &c, 1, 0));
md 1243 dev/sequencer.c midiseq_putc(struct midi_dev *md, int data)
md 1247 dev/sequencer.c return (midiseq_out(md, &c, 1, 0));
md 976 dev/wscons/wskbd.c struct wskbd_mapdata md;
md 1120 dev/wscons/wskbd.c md = *(sc->id->t_keymap); /* structure assignment */
md 1121 dev/wscons/wskbd.c md.layout = enc;
md 1122 dev/wscons/wskbd.c error = wskbd_load_keymap(&md, &sc->sc_map,
md 111 kern/kern_malloc_debug.c struct debug_malloc_entry *md = NULL;
md 130 kern/kern_malloc_debug.c md = TAILQ_FIRST(&debug_malloc_freelist);
md 131 kern/kern_malloc_debug.c if (md == NULL) {
md 135 kern/kern_malloc_debug.c TAILQ_REMOVE(&debug_malloc_freelist, md, md_list);
md 138 kern/kern_malloc_debug.c TAILQ_INSERT_HEAD(&debug_malloc_usedlist, md, md_list);
md 142 kern/kern_malloc_debug.c pmap_kenter_pa(md->md_va, md->md_pa, VM_PROT_READ|VM_PROT_WRITE);
md 145 kern/kern_malloc_debug.c md->md_size = size;
md 146 kern/kern_malloc_debug.c md->md_type = type;
md 152 kern/kern_malloc_debug.c *addr = (void *)(md->md_va + PAGE_SIZE - roundup(size, sizeof(long)));
md 159 kern/kern_malloc_debug.c struct debug_malloc_entry *md;
md 173 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_usedlist, md_list)
md 174 kern/kern_malloc_debug.c if (md->md_va == va)
md 181 kern/kern_malloc_debug.c if (md == NULL) {
md 185 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_freelist, md_list)
md 186 kern/kern_malloc_debug.c if (md->md_va == va)
md 193 kern/kern_malloc_debug.c TAILQ_REMOVE(&debug_malloc_usedlist, md, md_list);
md 195 kern/kern_malloc_debug.c TAILQ_INSERT_TAIL(&debug_malloc_freelist, md, md_list);
md 200 kern/kern_malloc_debug.c pmap_kremove(md->md_va, PAGE_SIZE);
md 235 kern/kern_malloc_debug.c struct debug_malloc_entry *md;
md 239 kern/kern_malloc_debug.c md = pool_get(&debug_malloc_pool, wait ? PR_WAITOK : PR_NOWAIT);
md 240 kern/kern_malloc_debug.c if (md == NULL)
md 246 kern/kern_malloc_debug.c pool_put(&debug_malloc_pool, md);
md 263 kern/kern_malloc_debug.c pool_put(&debug_malloc_pool, md);
md 269 kern/kern_malloc_debug.c md->md_va = va;
md 270 kern/kern_malloc_debug.c md->md_pa = VM_PAGE_TO_PHYS(pg);
md 273 kern/kern_malloc_debug.c TAILQ_INSERT_HEAD(&debug_malloc_freelist, md, md_list);
md 287 kern/kern_malloc_debug.c struct debug_malloc_entry *md;
md 290 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_freelist, md_list) {
md 291 kern/kern_malloc_debug.c if (va >= md->md_va &&
md 292 kern/kern_malloc_debug.c va < md->md_va + 2 * PAGE_SIZE)
md 295 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_usedlist, md_list) {
md 296 kern/kern_malloc_debug.c if (va >= md->md_va + PAGE_SIZE &&
md 297 kern/kern_malloc_debug.c va < md->md_va + 2 * PAGE_SIZE)
md 305 kern/kern_malloc_debug.c struct debug_malloc_entry *md;
md 308 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_freelist, md_list) {
md 309 kern/kern_malloc_debug.c if (addr >= md->md_va &&
md 310 kern/kern_malloc_debug.c addr < md->md_va + 2 * PAGE_SIZE) {
md 313 kern/kern_malloc_debug.c addr, md->md_type, md->md_size);
md 317 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_usedlist, md_list) {
md 318 kern/kern_malloc_debug.c if (addr >= md->md_va + PAGE_SIZE &&
md 319 kern/kern_malloc_debug.c addr < md->md_va + 2 * PAGE_SIZE) {
md 322 kern/kern_malloc_debug.c addr, md->md_type, md->md_size);
md 337 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_freelist, md_list)
md 338 kern/kern_malloc_debug.c (*pr)("\t0x%x\t0x%x\t%d\n", md->md_va, md->md_size,
md 339 kern/kern_malloc_debug.c md->md_type);
md 341 kern/kern_malloc_debug.c TAILQ_FOREACH(md, &debug_malloc_usedlist, md_list)
md 342 kern/kern_malloc_debug.c (*pr)("\t0x%x\t0x%x\t%d\n", md->md_va, md->md_size,
md 343 kern/kern_malloc_debug.c md->md_type);
md 4442 net/zlib.c uInt md; /* mask for distance tree */
md 4452 net/zlib.c md = inflate_mask[bd];
md 4480 net/zlib.c e = (t = td + ((uInt)b & md))->exop;
md 329 netinet/ip_carp.c unsigned char md[20], u_int8_t ctx)
md 337 netinet/ip_carp.c SHA1Final(md, &sha1ctx);
md 342 netinet/ip_carp.c SHA1Update(&sha1ctx, md, 20);
md 343 netinet/ip_carp.c SHA1Final(md, &sha1ctx);
md 348 netinet/ip_carp.c unsigned char md[20])
md 355 netinet/ip_carp.c if (!bcmp(md, md2, sizeof(md2)))
md 371 netinet6/mld6.c struct mbuf *mh, *md;
md 399 netinet6/mld6.c MGET(md, M_DONTWAIT, MT_DATA);
md 400 netinet6/mld6.c if (md == NULL) {
md 404 netinet6/mld6.c mh->m_next = md;
md 423 netinet6/mld6.c md->m_len = sizeof(struct mld_hdr);
md 424 netinet6/mld6.c mldh = mtod(md, struct mld_hdr *);
md 102 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 167 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 212 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 343 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 369 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 417 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 517 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 683 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 737 nfs/nfs_serv.c if (mp == md) {
md 885 nfs/nfs_serv.c struct mbuf *mb, *mb2, *mreq, *mrep, *md;
md 896 nfs/nfs_serv.c md = nfsd->nd_md;
md 933 nfs/nfs_serv.c if (mp == md) {
md 1234 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 1264 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 1473 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 1499 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 1621 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 1648 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 1705 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 1740 nfs/nfs_serv.c error = nfs_namei(&fromnd, ffhp, len, slp, nam, &md,
md 1766 nfs/nfs_serv.c error = nfs_namei(&tond, tfhp, len2, slp, nam, &md,
md 1885 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 1921 nfs/nfs_serv.c error = nfs_namei(&nd, dfhp, len, slp, nam, &md, &dpos,
md 1981 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 2008 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 2122 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 2148 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 2236 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 2260 nfs/nfs_serv.c error = nfs_namei(&nd, fhp, len, slp, nam, &md, &dpos,
md 2363 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 2625 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 2946 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 3005 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 3081 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 3149 nfs/nfs_serv.c struct mbuf *mrep = nfsd->nd_mrep, *md = nfsd->nd_md;
md 666 nfs/nfs_socket.c struct mbuf *mrep, *nam, *md;
md 714 nfs/nfs_socket.c md = mrep;
md 715 nfs/nfs_socket.c dpos = mtod(md, caddr_t);
md 736 nfs/nfs_socket.c rep->r_md = md;
md 838 nfs/nfs_socket.c struct mbuf *md, *mheadend;
md 988 nfs/nfs_socket.c md = rep->r_md;
md 1026 nfs/nfs_socket.c error = nfs_savenickauth(nmp, cred, i, key, &md, &dpos, mrep);
md 1061 nfs/nfs_socket.c *mdp = md;
md 1072 nfs/nfs_socket.c *mdp = md;
md 1565 nfs/nfs_socket.c struct mbuf *mrep, *md;
md 1570 nfs/nfs_socket.c md = nd->nd_md;
md 1754 nfs/nfs_socket.c nd->nd_md = md;
md 1121 nfs/nfs_subs.c struct mbuf *md;
md 1128 nfs/nfs_subs.c md = *mdp;
md 1129 nfs/nfs_subs.c t1 = (mtod(md, caddr_t) + md->m_len) - *dposp;
md 1347 nfs/nfs_subs.c struct mbuf *md;
md 1361 nfs/nfs_subs.c md = *mdp;
md 1362 nfs/nfs_subs.c rem = mtod(md, caddr_t) + md->m_len - fromcp;
md 1366 nfs/nfs_subs.c md = md->m_next;
md 1367 nfs/nfs_subs.c if (md == NULL) {
md 1371 nfs/nfs_subs.c fromcp = mtod(md, caddr_t);
md 1372 nfs/nfs_subs.c rem = md->m_len;
md 1383 nfs/nfs_subs.c *mdp = md;
md 950 nfs/nfs_syscalls.c struct mbuf *md = *mdp;
md 996 nfs/nfs_syscalls.c *mdp = md;
md 118 nfs/nfs_vfsops.c struct mbuf *mreq, *mrep = NULL, *md, *mb, *mb2;
md 194 nfs/nfs_vfsops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 200 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb;
md 225 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 437 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 556 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 614 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 897 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 927 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 992 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1109 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1220 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1402 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1520 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1562 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1629 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1695 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1769 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 1994 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 2179 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2, *mdsav1, *mdsav2;
md 2295 nfs/nfs_vnops.c mdsav1 = md;
md 2317 nfs/nfs_vnops.c mdsav2 = md;
md 2318 nfs/nfs_vnops.c md = mdsav1;
md 2321 nfs/nfs_vnops.c md = mdsav2;
md 2471 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 2541 nfs/nfs_vnops.c struct mbuf *mreq, *mrep, *md, *mb, *mb2;
md 93 nfs/nfsm_subs.h { t1 = mtod(md, caddr_t)+md->m_len-dpos; \
md 97 nfs/nfsm_subs.h } else if ((t1 = nfsm_disct(&md, &dpos, (s), t1, &cp2)) != 0){ \
md 186 nfs/nfsm_subs.h if ((t1 = nfs_loadattrcache(&ttvp, &md, &dpos, (a))) != 0) { \
md 197 nfs/nfsm_subs.h if ((t1 = nfs_loadattrcache(&ttvp, &md, &dpos, \
md 317 nfs/nfsm_subs.h (t1 = nfsm_mbuftouio(&md,(p),(s),&dpos)) != 0) { \
md 340 nfs/nfsm_subs.h (c), &mrep, &md, &dpos)) != 0) { \
md 400 nfs/nfsm_subs.h { t1 = mtod(md, caddr_t)+md->m_len-dpos; \
md 403 nfs/nfsm_subs.h } else if ((t1 = nfs_adv(&md, &dpos, (s), t1)) != 0) { \