Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:buffer

58  * work the output buffer must be allocated in near data space, because we are
72 char *iobuffer; /* fwrite's I/O buffer */
73 JSAMPROW pixrow; /* decompressor output buffer */
74 size_t buffer_width; /* width of I/O buffer */
86 * output buffer is physically the same as the fwrite buffer.
113 ptr = dest->pub.buffer[0];
140 ptr = dest->pub.buffer[0];
162 ptr = dest->pub.buffer[0];
233 /* Create physical I/O buffer. Note we make this near on a PC. */
241 /* When quantizing, we need an output buffer for colormap indexes
242 * that's separate from the physical I/O buffer. We also need a
243 * separate buffer if pixel format translation must take place.
245 dest->pub.buffer = (*cinfo->mem->alloc_sarray)
256 /* We will fwrite() directly from decompressor output buffer. */
260 dest->pub.buffer = & dest->pixrow;