/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/ |
vpstate.h | 13 u8 scount; member in struct:nvbios_vpstate_header
|
/src/sys/arch/vax/boot/boot/ |
mfm.c | 459 int block, sect, head, cyl, scount; local in function:mfm_rxstrategy 480 scount = size / 512; 482 while (scount) { 495 *rsize = 512 * min(scount, lp->d_nsectors - sect); 534 scount -= *rsize / 512; 547 int block, sect, head, cyl, scount, cmd; local in function:mfm_rdstrategy 568 scount = size / 512; 570 while (scount) { 589 *rsize = 512 * min(scount, lp->d_nsectors - sect); 623 scount -= *rsize / 512 [all...] |
/src/sys/dev/qbus/ |
ts.c | 947 int scount; /* number of files/records to space */ local in function:tsioctl 963 scount = 1; 971 scount = mtop->mt_count; 977 scount = 1; /* wait for this rewind */ 996 if (callcount <= 0 || scount <= 0) { 998 printf("invalid values %d/%d\n", callcount, scount); 1003 tscommand(sc, dev, mtop->mt_op, scount);
|
/src/libexec/ftpd/ |
conf.c | 891 ssize_t scount; local in function:count_users 915 scount = read(fd, pids, sb.st_size); 916 if (scount == -1 || scount != sb.st_size || scount < 0) 918 count = (size_t)scount / sizeof(pid_t); 944 scount = write(fd, pids, count); 945 if (scount == -1 || (size_t)scount != count)
|
/src/sys/dev/raidframe/ |
rf_dagutils.c | 702 rf_ValidateBranch(RF_DagNode_t *node, int *scount, int *acount, 739 scount[node->succedents[i]->nodeNum]++; 750 if (rf_ValidateBranch(node->succedents[i], scount, 811 int *scount, *acount;/* per-node successor and antecedent counts */ local in function:rf_ValidateDAG 845 scount = RF_Malloc(nodecount * sizeof(*scount)); 850 && rf_ValidateBranch(dag_h->succedents[i], scount, 869 if (nodes[i]->numAntecedents != scount[nodes[i]->nodeNum]) { 871 nodes[i]->name, nodes[i]->numAntecedents, scount[nodes[i]->nodeNum]); 890 RF_Free(scount, nodecount * sizeof(int)) [all...] |