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

  /src/sys/arch/x68k/stand/libsa/
fd.c 97 int nhead, nsect; local in function:fdstrategy
108 nhead = sc->fmt.maxsec.H - sc->fmt.minsec.H + 1;
112 head = (dblk / nsect) % nhead + sc->fmt.minsec.H;
113 cyl = (dblk / nsect) / nhead + sc->fmt.minsec.C;
  /src/sys/arch/sun3/dev/
xdvar.h 107 u_short sectpercyl; /* nhead*nsect */
108 u_char nhead; /* number of heads */ member in struct:xd_softc
xyvar.h 108 u_short sectpercyl; /* nhead*nsect */
109 u_char nhead; /* number of heads */ member in struct:xy_softc
  /src/sys/dev/vme/
xdvar.h 108 u_short sectpercyl; /* nhead*nsect */
109 u_char nhead; /* number of heads */ member in struct:xd_softc
xyvar.h 105 u_short sectpercyl; /* nhead*nsect */
106 u_char nhead; /* number of heads */ member in struct:xy_softc
  /src/usr.bin/systat/
netstat.c 121 struct netinfo *nhead; variable in typeref:struct:netinfo *
144 while (p != nhead) {
179 nhead = (struct netinfo *)(void *)&netcb;
181 netcb.ni_forw = netcb.ni_prev = nhead;
193 for (p = netcb.ni_forw; p != nhead; p = p->ni_forw)
231 for (p = netcb.ni_forw; p != nhead; p = p->ni_forw)
276 for (p = netcb.ni_forw; p != nhead; p = p->ni_forw)
314 for (p = netcb.ni_forw; p != nhead; p = p->ni_forw) {
326 if (p == nhead) {
331 p->ni_prev = nhead;
    [all...]
  /src/usr.sbin/sunlabel/
sunlabel.c 100 * Note also that the geometry assumptions behind having nhead and
105 * mostly invalid these days anyway. (I just use nhead=32 nsect=64,
119 uint32_t nhead; /* Tracks-per-cylinder (usually # of heads) */ member in struct:label
124 uint32_t spc; /* Sectors per cylinder - nhead*nsect */
202 {"nhead", &label.nhead, print_int, chval_int, update_spc, 0 },
403 label.nhead = 0;
449 label.nhead = l_s[218];
453 label.spc = label.nhead * label.nsect;
529 l_s[218] = label.nhead;
    [all...]
  /src/sys/uvm/
uvm_page.c 736 struct pgflist *ohead, *nhead; local in function:uvm_page_redim
822 nhead = &npgb->pgb_colors[nc];
823 LIST_INSERT_HEAD(nhead, pg, pageq.list);

Completed in 17 milliseconds