Searched refs:to_read (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_prng_file.c110 ssize_t to_read; local
122 for (to_read = len; to_read > 0; to_read -= count) {
123 if ((count = timed_read(fh->fd, buffer, to_read > sizeof(buffer) ?
124 sizeof(buffer) : to_read,
136 (long) (len - to_read), fh->name);
137 return (len - to_read);
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dccid_serial.c229 int to_read; local
312 to_read = 10+dw2i(buffer, 1);
314 if ((to_read < 10) || (to_read > (int)*length))
316 DEBUG_CRITICAL2("Wrong value for frame size: %d", to_read);
320 DEBUG_COMM2("frame size: %d", to_read);
321 if ((rv = get_bytes(reader_index, buffer+5, to_read-5)) != STATUS_SUCCESS)
324 DEBUG_XXD("frame: ", buffer, to_read);
332 for (i=0; i<to_read; i++)
345 *length = to_read;
[all...]
/macosx-10.10/ntfs-84/kext/
H A Dntfs_page.c117 unsigned to_read; local
228 to_read = size;
230 if (to_read > attr_size)
231 to_read = attr_size;
238 attr_size = (to_read + PAGE_MASK) & ~PAGE_MASK;
H A Dntfs_logfile.c415 unsigned have_read, to_read; local
421 to_read = le32_to_cpu(rp->system_page_size) - size;
436 if (size > to_read)
437 size = to_read;
441 to_read -= size;
442 } while (to_read > 0);
/macosx-10.10/ntfs-84/util/
H A Dntfs.util.c663 * @to_read: how many bytes to read into the destination buffer
669 ssize_t to_read, off_t ofs)
675 while (to_read > 0) {
679 if (to_copy > to_read)
680 to_copy = to_read;
691 to_read -= to_copy;
724 int f, err, to_read; local
815 to_read = vol->mft_record_size;
829 if (io_size > to_read)
830 io_size = to_read;
668 ntfs_pread(int f, u8 *buf, long sector_size, void *dst, ssize_t to_read, off_t ofs) argument
[all...]
/macosx-10.10/ruby-106/ruby/
H A Dsiphash.c225 int to_read; local
230 to_read = sizeof(uint64_t) - state->buflen;
231 memcpy(state->buf + state->buflen, *pdata, to_read);
234 *pdata += to_read;
235 *plen -= to_read;
/macosx-10.10/emacs-93/emacs/src/
H A Ddoc.c617 size_t to_read;
630 to_read = cp_size - 1 - filled;
632 nr_read = emacs_read (fd, &cp[filled], to_read);
634 if (nr_read < to_read)
616 size_t to_read; variable
H A Dw32.c3724 int to_read;
3800 to_read = min (waiting, (DWORD) count);
3802 if (to_read > 0)
3803 nchars += _read (fd, buffer, to_read);
3722 int to_read; local
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A Dloadmsgcat.c974 size_t to_read; local
981 to_read = size;
985 long int nb = (long int) read (fd, read_ptr, to_read);
996 to_read -= nb;
998 while (to_read > 0);
/macosx-10.10/cxxfilt-11/cxxfilt/intl/
H A Dloadmsgcat.c974 size_t to_read; local
981 to_read = size;
985 long int nb = (long int) read (fd, read_ptr, to_read);
996 to_read -= nb;
998 while (to_read > 0);

Completed in 287 milliseconds