/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/nativeclient/ |
randombytes_nativeclient.c | 20 size_t toread = size; local in function:randombytes_nativeclient_buf 26 while (toread > (size_t) 0U) { 31 toread -= readnb;
|
/src/sys/rump/fs/lib/libsyspuffs/ |
puffs_rumpglue.c | 131 size_t toread; local in function:writethread 145 toread = sizeof(struct putter_hdr); 150 iov.iov_len = toread; 159 toread = phdr->pth_framelen - off; 161 toread = off - sizeof(struct putter_hdr); 162 } while (toread);
|
/src/sys/arch/hpc/stand/hpcboot/ |
file_manager.cpp | 202 size_t toread = toskip; local in function:FileManager::_skip_compressed 203 if (toread > DUMMYBUFSIZE) 204 toread = DUMMYBUFSIZE; 206 size_t nread = _read(dummybuf, toread); 213 if (nread != toread)
|
/src/sys/fs/ntfs/ |
ntfs_vnops.c | 120 u_int64_t toread; local in function:ntfs_read 131 toread = 0; 133 toread = MIN(uio->uio_resid, fp->f_size - uio->uio_offset ); 135 dprintf((", toread: %qu\n",(long long)toread)); 137 if (toread == 0) 141 fp->f_attrname, uio->uio_offset, toread, NULL, uio); 309 u_int32_t toread; local in function:ntfs_strategy 315 toread = MIN(bp->b_bcount, 317 dprintf(("ntfs_strategy: toread: %d, fsize: %d\n" [all...] |
ntfs_subr.c | 1484 off_t off = roff, left = rsize, toread; local in function:ntfs_readattr_plain 1494 toread = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off); 1496 (long long) off, (long long) toread, 1501 toread, data, &init, uio); 1505 (long long) off, (long long) toread); 1513 left -= toread; 1514 off += toread; 1515 data = (char *)data + toread;
|
/src/tests/fs/common/ |
fstest_puffs.c | 162 size_t toread; local in function:writeshovel 182 toread = sizeof(struct putter_hdr); 183 assert(toread < BUFSIZE); 185 n = xread(comfd, buf+off, toread); 193 toread = phdr->pth_framelen - off; 195 toread = off - sizeof(struct putter_hdr); 196 } while (toread);
|