/src/sys/arch/sgimips/stand/common/ |
iris_disk.c | 139 uint8_t capbuf[2]; local in function:diskinit 160 capbuf[0] = 0; 161 capbuf[1] = 0; 163 stat = scsi_read_capacity((uint8_t *)capbuf, sizeof(capbuf)); 166 if (capbuf[1] > DEV_BSIZE) 167 for (; capbuf[1] > DEV_BSIZE; capbuf[1] >>= 1)
|
/src/sys/arch/luna68k/stand/boot/ |
sd.c | 106 uint32_t capbuf[2]; local in function:sdident 109 if (!scident(sc->sc_ctlr, sc->sc_tgt, sc->sc_lun, &inqbuf, capbuf)) 112 sc->sc_blks = capbuf[0]; 113 sc->sc_blksize = capbuf[1];
|
sc.c | 196 uint32_t capbuf[2]; local in function:scident 223 scsi_immed_command(ctlr, target, lun, &cap, (uint8_t *)&capbuf, 224 sizeof(capbuf))) 242 capout[0] = capbuf[0]; 243 capout[1] = capbuf[1]; 255 uint32_t capbuf[2], blocks, blksize; local in function:scprobe 259 if (!scident(hs->sc_ctlr, target, lun, &inqbuf, capbuf)) 263 blocks = capbuf[0] + 1; 264 blksize = capbuf[1];
|
/src/sys/arch/hp300/stand/common/ |
sd.c | 91 int capbuf[2]; local in function:sdinit 123 capbuf[0] = 0; 124 capbuf[1] = 0; 126 (u_char *)capbuf, sizeof(capbuf)); 128 if (capbuf[1] > DEV_BSIZE) 129 for (; capbuf[1] > DEV_BSIZE; capbuf[1] >>= 1)
|
/src/usr.bin/videoctl/ |
videoctl.c | 200 char capbuf[128]; local in function:video_print_caps 232 snprintb(capbuf, sizeof(capbuf), V4L2_CAP_BITMASK, 234 printf("info.cap.capabilities=%s\n", capbuf);
|