Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching defs:pub

35   struct jpeg_destination_mgr pub; /* public fields */
50 struct jpeg_destination_mgr pub; /* public fields */
78 dest->pub.next_output_byte = dest->buffer;
79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
123 dest->pub.next_output_byte = dest->buffer;
124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
151 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
152 dest->pub.free_in_buffer = dest->bufsize;
175 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
195 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
229 dest->pub.init_destination = init_destination;
230 dest->pub.empty_output_buffer = empty_output_buffer;
231 dest->pub.term_destination = term_destination;
275 dest->pub.init_destination = init_mem_destination;
276 dest->pub.empty_output_buffer = empty_mem_output_buffer;
277 dest->pub.term_destination = term_mem_destination;
290 dest->pub.next_output_byte = dest->buffer = *outbuffer;
291 dest->pub.free_in_buffer = dest->bufsize = *outsize;