Lines Matching defs:buffer
29 JOCTET * buffer; /* start of buffer */
49 * but we don't clear the input buffer.
57 * Fill the input buffer --- called whenever buffer is emptied.
59 * In typical applications, this should read fresh data into the buffer
61 * reset the pointer & count to the start of the buffer, and return TRUE
62 * indicating that the buffer has been reloaded. It is not necessary to
63 * fill the buffer entirely, only to obtain at least one more byte.
67 * the buffer. In most cases, generating a warning message and inserting a
78 * decompression after it has loaded more data into the input buffer. Note
86 * the front of the buffer rather than discarding it.
95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
102 src->buffer[0] = (JOCTET) 0xFF;
103 src->buffer[1] = (JOCTET) JPEG_EOI;
107 src->pub.next_input_byte = src->buffer;
121 * beyond the data currently in the buffer, the buffer can be marked empty so
124 * buffer is the application writer's problem.
186 /* The source object and input buffer are made permanent so that a series
188 * only before the first one. (If we discarded the buffer at the end of
198 src->buffer = (JOCTET *)
211 src->pub.next_input_byte = NULL; /* until buffer loaded */