/src/sbin/dump/ |
rcache.c | 88 static int64_t readsize; variable in typeref:typename:int64_t 280 readsize += size; 470 getpid(), nreads, (u_int) readsize, nphysread, 472 (int) (((physreadsize - readsize) * 100) / readsize));
|
/src/sys/arch/sparc/stand/ofwboot/ |
ofdev.c | 329 size_t readsize; local in function:search_label 341 if (strategy(devp, F_READ, LABELSECTOR, DEV_BSIZE, buf, &readsize) 342 || readsize != DEV_BSIZE) 439 size_t readsize; local in function:devopen 543 LABELSECTOR, DEV_BSIZE, b.buf, &readsize) != 0 544 || readsize != DEV_BSIZE
|
/src/usr.bin/vndcompress/ |
vndcompress.c | 174 const uint32_t readsize = (S->blkno == S->n_full_blocks? local in function:vndcompress 176 assert(readsize > 0); 177 assert(readsize <= S->blocksize); 184 if (!ADD_OK(uint64_t, S->offset, 2*(uintmax_t)readsize) || 185 !ADD_OK(off_t, S->offset, 2*(uintmax_t)readsize)) 188 (uintmax_t)readsize); 193 S->blocksize, readsize, uncompbuf, compbuf); 763 uint32_t readsize, void *uncompbuf, void *compbuf) 766 assert(readsize <= blocksize); 770 const ssize_t n_read = read_block(in_fd, uncompbuf, readsize); [all...] |
/src/sys/dev/scsipi/ |
st.c | 2432 int readsize; local in function:st_touch_tape 2452 readsize = st->blksize; 2456 readsize = 1; 2466 if (readsize == 1) 2471 st_read(st, bf, readsize, XS_CTL_SILENT); /* XXX */ 2476 } while (readsize != 1 && readsize > st->blksize);
|
/src/libexec/ftpd/ |
extern.h | 291 LLT readsize; /* data read size */ member in struct:ftpclass
|
ftpd.c | 2163 ssize_t readsize; local in function:send_data_with_read 2167 if (curclass.readsize > 0) 2168 readsize = curclass.readsize; 2170 readsize = st->st_blksize; 2171 if ((buf = malloc(readsize)) == NULL) { 2180 bufrem = readsize; 2183 c = read(filefd, buf, readsize); 2389 ssize_t readsize; local in function:receive_data 2422 if (curclass.readsize) [all...] |
/src/usr.sbin/bta2dpd/bta2dpd/ |
sbc_encode.c | 850 size_t readsize, totalSize; local in function:stream 912 readsize = (size_t)((global_blocks * global_bands * global_chan) * 2); 921 len = readloop(in, music, readsize); 922 readTime += (time_t)readsize; 923 if (len < (int)readsize) 937 if (len < (int)readsize) {
|
/src/sys/fs/nfs/client/ |
nfs_clrpcops.c | 2708 int reqsize, tryformoredirs = 1, readsize, eof = 0, gotmnton = 0; local in function:nfsrpc_readdir 2724 * will never make readsize > nm_readdirsize. 2726 readsize = nmp->nm_readdirsize; 2727 if (readsize > uio_uio_resid(uiop)) 2728 readsize = uio_uio_resid(uiop) + DIRBLKSIZ; 2873 * Loop around doing readdir rpc's of size readsize. 2882 *tl = txdr_unsigned(readsize); 2897 *tl++ = txdr_unsigned(readsize); 2898 *tl = txdr_unsigned(readsize); 2904 *tl = txdr_unsigned(readsize); [all...] |
/src/sys/dev/pci/bktr/ |
bktr_core.c | 1248 int readsize, readsize2; local in function:vbi_read 1268 readsize = (int)uio->uio_iov->iov_len; 1270 if (readsize > bktr->vbisize) readsize = bktr->vbisize; 1274 if((bktr->vbistart + readsize) >= VBI_BUFFER_SIZE) { 1279 status += uiomove((char *)bktr->vbibuffer, (readsize - readsize2), uio); 1282 status = uiomove((char *)bktr->vbibuffer + bktr->vbistart, readsize, uio); 1286 bktr->vbisize -= readsize; 1289 bktr->vbistart += readsize;
|