Searched refs:toread (Results 1 - 15 of 15) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr21559.c10 int toread; local
14 toread = blocksize;
17 while (toread != 0)
19 bytes = bar (toread);
26 toread -= bytes;
H A Dvrp18.c10 int toread; local
14 toread = blocksize;
17 while (toread != 0)
19 bytes = bar (toread);
26 toread -= bytes;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; local
14 toread = blocksize;
17 while (toread != 0)
19 bytes = bar (toread);
26 toread -= bytes;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20050303-1.c6 int toread; local
11 while (toread = (nleft < (2147483647 * 2U + 1U)) ? nleft: (2147483647 * 2U + 1U) )
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20050303-1.c3 int toread; local
8 while (toread = (nleft < (2147483647 * 2U + 1U)) ? nleft: (2147483647 * 2U + 1U) )
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/demos/tunala/
H A Dbuffer.c90 int toread = buffer_unused(buf); local
91 if(toread == 0)
94 toread = read(fd, buf->data + buf->used, toread);
95 if(toread > 0) {
96 buf->used += toread;
97 buf->total_in += toread;
99 return toread;
/netbsd-6-1-5-RELEASE/sys/rump/fs/lib/libsyspuffs/
H A Dpuffs_rumpglue.c122 size_t toread; local
136 toread = sizeof(struct putter_hdr);
138 n = rumpuser_read(pap->comfd, buf+off, toread, &error);
146 toread = phdr->pth_framelen - off;
148 toread = off - sizeof(struct putter_hdr);
149 } while (toread);
/netbsd-6-1-5-RELEASE/tests/fs/common/
H A Dfstest_puffs.c161 size_t toread; local
181 toread = sizeof(struct putter_hdr);
182 assert(toread < BUFSIZE);
184 n = xread(comfd, buf+off, toread);
192 toread = phdr->pth_framelen - off;
194 toread = off - sizeof(struct putter_hdr);
195 } while (toread);
/netbsd-6-1-5-RELEASE/sys/arch/hpc/stand/hpcboot/
H A Dfile_manager.cpp202 size_t toread = toskip; local
203 if (toread > DUMMYBUFSIZE)
204 toread = DUMMYBUFSIZE;
206 size_t nread = _read(dummybuf, toread);
213 if (nread != toread)
/netbsd-6-1-5-RELEASE/sys/fs/ntfs/
H A Dntfs_vnops.c121 u_int64_t toread; local
132 toread = 0;
134 toread = MIN(uio->uio_resid, fp->f_size - uio->uio_offset );
136 dprintf((", toread: %qu\n",(long long)toread));
138 if (toread == 0)
142 fp->f_attrname, uio->uio_offset, toread, NULL, uio);
304 u_int32_t toread; local
310 toread = MIN(bp->b_bcount,
312 dprintf(("ntfs_strategy: toread
[all...]
H A Dntfs_subr.c1736 off_t off = roff, left = rsize, toread; local
1746 toread = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off);
1748 (long long) off, (long long) toread,
1753 toread, data, &init, uio);
1757 (long long) off, (long long) toread);
1765 left -= toread;
1766 off += toread;
1767 data = (char *)data + toread;
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp293 int toread = lf*4 - 2; local
294 unsigned char *buf = new unsigned char[toread];
295 if (fread(buf, 1, toread, fp) != (size_t)toread) {
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dclient.c1485 size_t toread;
1527 toread = usize - nread;
1528 if (toread > sizeof buf)
1529 toread = sizeof buf;
1531 nread += try_read_from_server (buf, toread);
2835 size_t toread;
2852 toread = size - totalread;
2853 if (toread > sizeof buf)
2854 toread = sizeof buf;
2856 nread = try_read_from_server (buf, toread);
1484 size_t toread; local
2834 size_t toread; local
[all...]
H A Dserver.c1623 size_t toread = size; local
1631 while (toread > 0)
1637 status = buf_read_data (buf_from_net, toread, &data, &nread);
1663 toread -= nread;
2461 size_t toread; local
2589 status = buf_input_data (buf_from_primary, &toread);
2598 while (buf_clientlog && toread > 0)
2600 s = buf_read_data (buf_clientlog, toread, &data, &got);
2648 toread -= got;
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dzap_leaf.c375 int toread = MIN(array_numints - bseen, ZAP_LEAF_ARRAY_BYTES); local
377 if (bcmp(la->la_array, (char *)zn->zn_key_orig + bseen, toread))
380 bseen += toread;

Completed in 402 milliseconds