Lines Matching defs:pub
1284 struct jpeg_source_mgr pub;
1308 src->pub.next_input_byte = src->buffer;
1309 src->pub.bytes_in_buffer = 512;
1321 while (num_bytes > (long) src->pub.bytes_in_buffer)
1323 num_bytes -= (long) src->pub.bytes_in_buffer;
1327 src->pub.next_input_byte += (size_t) num_bytes;
1328 src->pub.bytes_in_buffer -= (size_t) num_bytes;
1466 src->pub.init_source = jpeg_init_source;
1467 src->pub.fill_input_buffer = jpeg_fill_input_buffer;
1468 src->pub.skip_input_data = jpeg_skip_input_data;
1469 src->pub.resync_to_restart = jpeg_resync_to_restart; /* default */
1470 src->pub.term_source = jpeg_term_source;
1471 src->pub.bytes_in_buffer = 0;
1472 src->pub.next_input_byte = NULL;