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

/freebsd-10.0-release/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-10.0-release/contrib/lukemftpd/src/
H A Dftpd.c2102 size_t readsize; local
2106 if (curclass.readsize)
2107 readsize = curclass.readsize;
2109 readsize = (size_t)st->st_blksize;
2110 if ((buf = malloc(readsize)) == NULL) {
2121 c = read(filefd, buf, readsize);
2324 size_t readsize; local
2360 if (curclass.readsize)
2361 readsize
[all...]
H A Dextern.h299 LLT readsize; /* data read size */ member in struct:ftpclass
H A Dconf.c122 curclass.readsize = 0;
384 } else if (strcasecmp(word, "readsize") == 0) {
385 curclass.readsize = 0;
386 CONF_LL(readsize, arg, 0, LLTMAX);
/freebsd-10.0-release/sys/dev/bktr/
H A Dbktr_core.c1248 int readsize, readsize2, start; local
1281 readsize = (int)uio->uio_iov->iov_len;
1283 if (readsize > bktr->vbisize) readsize = bktr->vbisize;
1287 if((bktr->vbistart + readsize) >= VBI_BUFFER_SIZE) {
1295 status = uiomove((caddr_t)bktr->vbibuffer, (readsize - readsize2), uio);
1299 status = uiomove((caddr_t)bktr->vbibuffer + bktr->vbistart, readsize, uio);
1305 bktr->vbisize -= readsize;
1308 bktr->vbistart += readsize;
/freebsd-10.0-release/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-10.0-release/sbin/fsck_ffs/
H A Dsuj.c2541 int readsize; local
2558 blk = jblocks_next(suj_jblocks, size, &readsize);
2561 size = readsize;
2594 size != readsize &&
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clrpcops.c2647 int reqsize, tryformoredirs = 1, readsize, eof = 0, gotmnton = 0; local
2663 * will never make readsize > nm_readdirsize.
2665 readsize = nmp->nm_readdirsize;
2666 if (readsize > uio_uio_resid(uiop))
2667 readsize = uio_uio_resid(uiop) + DIRBLKSIZ;
2813 * Loop around doing readdir rpc's of size readsize.
2822 *tl = txdr_unsigned(readsize);
2837 *tl++ = txdr_unsigned(readsize);
2838 *tl = txdr_unsigned(readsize);
2844 *tl = txdr_unsigned(readsize);
[all...]

Completed in 125 milliseconds