Lines Matching refs:pub
52 struct jpeg_source_mgr pub;
75 src->pub.next_input_byte = src->buffer;
76 src->pub.bytes_in_buffer = nbytes;
90 while (num_bytes > (long) src->pub.bytes_in_buffer) {
91 num_bytes -= (long) src->pub.bytes_in_buffer;
92 (void) src->pub.fill_input_buffer(cinfo);
94 src->pub.next_input_byte += (size_t) num_bytes;
95 src->pub.bytes_in_buffer -= (size_t) num_bytes;
125 src->pub.init_source = init_source;
126 src->pub.fill_input_buffer = fill_input_buffer;
127 src->pub.skip_input_data = skip_input_data;
128 src->pub.resync_to_restart = jpeg_resync_to_restart;
129 src->pub.term_source = term_source;
131 src->pub.bytes_in_buffer = 0;
132 src->pub.next_input_byte = NULL;