Lines Matching refs:bytes
46 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize);
49 if (bytes == 0) {
57 src->bytes_in_buffer = bytes;
62 * Skip a certain number of bytes in the stream
66 size_t bytes = (size_t) numBytes;
68 if (bytes > src->bytes_in_buffer) {
69 size_t bytesToSkip = bytes - src->bytes_in_buffer;
106 size_t bytes = static_cast<size_t>(num_bytes);
107 if(bytes > src->bytes_in_buffer) {
111 src->next_input_byte += bytes;
112 src->bytes_in_buffer -= bytes;