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