Lines Matching defs:pub
1316 struct jpeg_source_mgr pub;
1346 src->pub.next_input_byte = src->buffer;
1347 src->pub.bytes_in_buffer = n;
1359 while (num_bytes > (long) src->pub.bytes_in_buffer)
1361 num_bytes -= (long) src->pub.bytes_in_buffer;
1365 src->pub.next_input_byte += (size_t) num_bytes;
1366 src->pub.bytes_in_buffer -= (size_t) num_bytes;
1978 src->pub.init_source = jpeg_init_source;
1979 src->pub.fill_input_buffer = jpeg_fill_input_buffer;
1980 src->pub.skip_input_data = jpeg_skip_input_data;
1981 src->pub.resync_to_restart = jpeg_resync_to_restart; /* default */
1982 src->pub.term_source = jpeg_term_source;
1983 src->pub.bytes_in_buffer = 0;
1984 src->pub.next_input_byte = NULL;