Searched refs:readsize (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sbin/fsck_msdosfs/
H A Dfat.c700 size_t readsize; local
736 readsize = fat32_cache_size;
742 readsize = fat->fatsize;
744 fat->fatbuf = malloc(readsize);
746 perr("No space for FAT (%zu)", readsize);
754 if ((size_t)read(fd, fat->fatbuf, readsize) != readsize) {
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dgrep.c356 size_t readsize; local
411 readsize = buffer + bufalloc - readbuf;
412 readsize -= readsize % pagesize;
417 size_t mmapsize = readsize;
463 bytesread = BZ2_bzRead (&bzerr, bzbufdesc, readbuf, readsize);
474 bytesread = read (bufdesc, readbuf, readsize);
484 bytesread = gzread (gzbufdesc, readbuf, readsize);
487 bytesread = read (bufdesc, readbuf, readsize);
/freebsd-11-stable/sys/dev/bktr/
H A Dbktr_core.c1247 int readsize, readsize2, start; local
1280 readsize = (int)uio->uio_iov->iov_len;
1282 if (readsize > bktr->vbisize) readsize = bktr->vbisize;
1286 if((bktr->vbistart + readsize) >= VBI_BUFFER_SIZE) {
1294 status = uiomove((caddr_t)bktr->vbibuffer, (readsize - readsize2), uio);
1298 status = uiomove((caddr_t)bktr->vbibuffer + bktr->vbistart, readsize, uio);
1304 bktr->vbisize -= readsize;
1307 bktr->vbistart += readsize;
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoffgen.c152 bfd_size_type readsize; /* Length of file_info. */ local
186 readsize = (bfd_size_type) nscns * scnhsz;
187 external_sections = bfd_alloc (abfd, readsize);
191 if (bfd_bread ((void *) external_sections, readsize, abfd) != readsize)
/freebsd-11-stable/sbin/fsck_ffs/
H A Dsuj.c2554 int readsize; local
2571 blk = jblocks_next(suj_jblocks, size, &readsize);
2574 size = readsize;
2607 size != readsize &&
/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clrpcops.c2786 int reqsize, tryformoredirs = 1, readsize, eof = 0, gotmnton = 0; local
2802 * will never make readsize > nm_readdirsize.
2804 readsize = nmp->nm_readdirsize;
2805 if (readsize > uio_uio_resid(uiop))
2806 readsize = uio_uio_resid(uiop) + DIRBLKSIZ;
2951 * Loop around doing readdir rpc's of size readsize.
2960 *tl = txdr_unsigned(readsize);
2975 *tl++ = txdr_unsigned(readsize);
2976 *tl = txdr_unsigned(readsize);
2982 *tl = txdr_unsigned(readsize);
[all...]

Completed in 110 milliseconds