Lines Matching refs:dest
45 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in init_destination() local
48 dest->buffer = (JOCTET *) in init_destination()
52 dest->pub.next_output_byte = dest->buffer; in init_destination()
53 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination()
83 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in empty_output_buffer() local
85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer()
89 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer()
90 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer()
108 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in term_destination() local
109 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer; in term_destination()
113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount) in term_destination()
116 fflush(dest->outfile); in term_destination()
118 if (ferror(dest->outfile)) in term_destination()
132 my_dest_ptr dest; in jpeg_stdio_dest() local
140 if (cinfo->dest == NULL) { /* first time for this JPEG object? */ in jpeg_stdio_dest()
141 cinfo->dest = (struct jpeg_destination_mgr *) in jpeg_stdio_dest()
146 dest = (my_dest_ptr) cinfo->dest; in jpeg_stdio_dest()
147 dest->pub.init_destination = init_destination; in jpeg_stdio_dest()
148 dest->pub.empty_output_buffer = empty_output_buffer; in jpeg_stdio_dest()
149 dest->pub.term_destination = term_destination; in jpeg_stdio_dest()
150 dest->outfile = outfile; in jpeg_stdio_dest()