Lines Matching refs:pub

551 	struct jpeg_source_mgr pub;	/* public fields */  member
648 src->pub.next_input_byte = src->buffer; in fill_input_buffer()
649 src->pub.bytes_in_buffer = nbytes; in fill_input_buffer()
676 while (num_bytes > (long) src->pub.bytes_in_buffer) { in skip_input_data()
677 num_bytes -= (long) src->pub.bytes_in_buffer; in skip_input_data()
683 src->pub.next_input_byte += (size_t) num_bytes; in skip_input_data()
684 src->pub.bytes_in_buffer -= (size_t) num_bytes; in skip_input_data()
742 src->pub.init_source = init_source; in jpeg_gdIOCtx_src()
743 src->pub.fill_input_buffer = fill_input_buffer; in jpeg_gdIOCtx_src()
744 src->pub.skip_input_data = skip_input_data; in jpeg_gdIOCtx_src()
745 src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */ in jpeg_gdIOCtx_src()
746 src->pub.term_source = term_source; in jpeg_gdIOCtx_src()
748 src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */ in jpeg_gdIOCtx_src()
749 src->pub.next_input_byte = NULL; /* until buffer loaded */ in jpeg_gdIOCtx_src()
756 struct jpeg_destination_mgr pub; /* public fields */ member
777 dest->pub.next_output_byte = dest->buffer; in init_destination()
778 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination()
813 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer()
814 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer()
832 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer; in term_destination()
862 dest->pub.init_destination = init_destination; in jpeg_gdIOCtx_dest()
863 dest->pub.empty_output_buffer = empty_output_buffer; in jpeg_gdIOCtx_dest()
864 dest->pub.term_destination = term_destination; in jpeg_gdIOCtx_dest()