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

Lines Matching refs:pub

30   struct jpeg_source_mgr pub;   /* public fields */
119 src->pub.next_input_byte = src->buffer;
120 src->pub.bytes_in_buffer = nbytes;
245 src->pub.init_source = init_source;
246 src->pub.fill_input_buffer = fill_input_buffer;
247 src->pub.skip_input_data = skip_input_data;
248 src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
249 src->pub.term_source = term_source;
251 src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
252 src->pub.next_input_byte = NULL; /* until buffer loaded */