Searched refs:amnt (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/tools/tools/scsi-defects/
H A Dscsi-defects.pl69 chop($amnt = <PIPE>);
72 if ($amnt == 0) {
77 print "There are " . $amnt / 8 . " defects in this list.\n";
79 $amnt += 4;
83 "$amnt -i $amnt - |") ||
/freebsd-13-stable/sys/powerpc/powernv/
H A Dopal_nvram.c216 int rv, amnt; local
222 amnt = MIN(uio->uio_resid, sc->sc_size - uio->uio_offset);
223 amnt = MIN(amnt, NVRAM_BUFSIZE);
224 if (amnt == 0)
228 amnt, uio->uio_offset);
240 rv = uiomove(sc->sc_buf, amnt, uio);
253 int rv, amnt; local
260 amnt = MIN(uio->uio_resid, sc->sc_size - uio->uio_offset);
261 amnt
[all...]
/freebsd-13-stable/sys/dev/powermac_nvram/
H A Dpowermac_nvram.c269 int rv, amnt, data_available; local
278 amnt = MIN(uio->uio_resid, data_available);
280 amnt, uio);
283 sc->sc_rpos += amnt;
296 int rv, amnt, data_available; local
308 amnt = MIN(uio->uio_resid, data_available);
310 amnt, uio);
313 sc->sc_wpos += amnt;
/freebsd-13-stable/sys/arm64/intel/
H A Dstratix10-soc-fpga-mgr.c120 int amnt; local
135 amnt = MIN(uio->uio_resid, (SVC_BUF_SIZE - sc->mem.fill));
136 uiomove((void *)addr, amnt, uio);
137 sc->mem.fill += amnt;
/freebsd-13-stable/sys/fs/fuse/
H A Dfuse_ipc.h89 #define FUSE_DIMALLOC(fiov, spc1, spc2, amnt) do { \
90 fiov_adjust(fiov, (sizeof(*(spc1)) + (amnt))); \

Completed in 136 milliseconds