Lines Matching defs:bytes
582 size_t bytes = 0, max_bytes;
595 /* check how many bytes we want to send */
596 bytes = 0;
598 bytes += iov[i].iov_len;
607 tcstream->chunk_size = bytes > max_bytes ? max_bytes : bytes;
610 bytes = tcstream->chunk_size;
612 for (i = 0; i < iov_count && bytes > 0; i++) {
613 if (bytes <= iov[i].iov_len)
615 bytes -= iov[i].iov_len;
626 iov_new[iov_count-2].iov_len = bytes;