Lines Matching refs:pub
26 struct jpeg_error_mgr pub;
45 struct jpeg_error_mgr* pRet = jpeg_std_error(&(err->pub));
46 err->pub.error_exit = my_error_exit;
53 struct jpeg_source_mgr pub;
75 src->pub.next_input_byte = src->buffer;
76 src->pub.bytes_in_buffer = src->length;
89 while (num_bytes > (long)src->pub.bytes_in_buffer) {
90 num_bytes -= (long)src->pub.bytes_in_buffer;
94 src->pub.next_input_byte += (size_t) num_bytes;
95 src->pub.bytes_in_buffer -= (size_t) num_bytes;
118 src->pub.init_source = jpeg_init_source;
119 src->pub.fill_input_buffer = jpeg_fill_input_buffer;
120 src->pub.skip_input_data = jpeg_skip_input_data;
121 src->pub.resync_to_restart = jpeg_resync_to_restart;
122 src->pub.term_source = jpeg_term_source;
123 src->pub.bytes_in_buffer = 0;
124 src->pub.next_input_byte = NULL;