Lines Matching refs:stream
42 * Fill the input buffer from the stream
62 * Skip a certain number of bytes in the stream
85 * We do not need to do anything to terminate our stream
126 * We provide skia implementations of all of the stream processing functions required by libjpeg
128 skjpeg_source_mgr::skjpeg_source_mgr(SkStream* stream)
129 : fStream(stream)
131 if (stream->hasLength() && stream->getMemoryBase()) {
137 bytes_in_buffer = static_cast<size_t>(stream->getLength());
138 next_input_byte = static_cast<const JOCTET*>(stream->getMemoryBase());