Searched refs:image_height (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djcapistd.c67 * or if more than image_height scanlines are passed in.
84 if (cinfo->next_scanline >= cinfo->image_height)
90 cinfo->progress->pass_limit = (long) cinfo->image_height;
103 rows_left = cinfo->image_height - cinfo->next_scanline;
127 if (cinfo->next_scanline >= cinfo->image_height) {
135 cinfo->progress->pass_limit = (long) cinfo->image_height;
H A Dexample.c62 extern int image_height; /* Number of rows in image */
126 cinfo.image_height = image_height;
156 while (cinfo.next_scanline < cinfo.image_height) {
H A Djdinput.c62 jdiv_round_up((long) cinfo->image_height, (long) cinfo->block_size);
70 jdiv_round_up((long) cinfo->image_height * 2L, (long) cinfo->block_size);
78 jdiv_round_up((long) cinfo->image_height * 3L, (long) cinfo->block_size);
86 jdiv_round_up((long) cinfo->image_height * 4L, (long) cinfo->block_size);
94 jdiv_round_up((long) cinfo->image_height * 5L, (long) cinfo->block_size);
102 jdiv_round_up((long) cinfo->image_height * 6L, (long) cinfo->block_size);
110 jdiv_round_up((long) cinfo->image_height * 7L, (long) cinfo->block_size);
118 jdiv_round_up((long) cinfo->image_height * 8L, (long) cinfo->block_size);
126 jdiv_round_up((long) cinfo->image_height * 9L, (long) cinfo->block_size);
134 jdiv_round_up((long) cinfo->image_height * 1
[all...]
H A Djcmaster.c62 cinfo->jpeg_height = cinfo->image_height << 3;
68 cinfo->jpeg_height = cinfo->image_height << 2;
75 cinfo->jpeg_height = (cinfo->image_height << 1) + (JDIMENSION)
76 jdiv_round_up((long) cinfo->image_height * 2, 3L);
82 cinfo->jpeg_height = cinfo->image_height << 1;
89 cinfo->jpeg_height = cinfo->image_height + (JDIMENSION)
90 jdiv_round_up((long) cinfo->image_height * 3, 5L);
97 cinfo->jpeg_height = cinfo->image_height + (JDIMENSION)
98 jdiv_round_up((long) cinfo->image_height, 3L);
105 cinfo->jpeg_height = cinfo->image_height
[all...]
H A Drdrle.c121 cinfo->image_height = height;
264 progress->pub.pass_limit = cinfo->image_height;
274 for (row = 0; row < cinfo->image_height; row++) {
289 for (row = 0; row < cinfo->image_height; row++) {
312 for (row = 0; row < cinfo->image_height; row++) {
348 source->row = cinfo->image_height;
H A Dtransupp.h178 JPP((JDIMENSION image_width, JDIMENSION image_height,
H A Drdjpgcom.c285 unsigned int image_height, image_width; local
293 image_height = read_2_bytes();
315 image_width, image_height, num_components, data_precision);
H A Drdbmp.c230 for (row = 0; row < cinfo->image_height; row++) {
233 progress->pub.pass_limit = (long) cinfo->image_height;
264 source->source_row = cinfo->image_height;
444 cinfo->image_height = (JDIMENSION) biHeight;
H A Drdtarga.c281 source_row = cinfo->image_height - source->current_row - 1;
307 for (row = 0; row < cinfo->image_height; row++) {
310 progress->pub.pass_limit = (long) cinfo->image_height;
464 cinfo->image_height = height;
H A Djcprepct.c86 prep->rows_to_go = cinfo->image_height;
219 if (prep->rows_to_go == cinfo->image_height) {
H A Djctrans.c77 dstinfo->image_height = srcinfo->image_height;
H A Djcapimin.c162 if (cinfo->next_scanline < cinfo->image_height)
H A Dtransupp.c1111 dstinfo->image_width = dstinfo->image_height;
1112 dstinfo->image_height = jtemp;
1380 dstinfo->jpeg_height != srcinfo->image_height)
1461 * image_width, image_height: source image dimensions.
1467 * image_height = cinfo.image_height
1477 jtransform_perfect_transform(JDIMENSION image_width, JDIMENSION image_height,
1491 if (image_height % (JDIMENSION) MCU_height)
1498 if (image_height % (JDIMENSION) MCU_height)
H A Djpeglib.h287 JDIMENSION image_height; /* input image height */ member in struct:jpeg_compress_struct
373 * processing loop, e.g., "while (next_scanline < image_height)".
376 JDIMENSION next_scanline; /* 0 .. image_height-1 */
450 JDIMENSION image_height; /* nominal image height */ member in struct:jpeg_decompress_struct
H A Dcjpeg.c593 while (cinfo.next_scanline < cinfo.image_height) {
H A Djdmarker.c254 INPUT_2BYTES(cinfo, cinfo->image_height, return FALSE);
261 (int) cinfo->image_width, (int) cinfo->image_height,
270 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
H A Djdmaster.c147 jdiv_round_up((long) cinfo->image_height *
H A Drdppm.c331 cinfo->image_height = (JDIMENSION) h;
/macosx-10.9.5/ruby-104/ruby/lib/rss/maker/
H A Dimage.rb26 attr_accessor :about, :resource, :image_width, :image_height
30 add_need_initialize_variable("image_height")
33 alias height= image_height=
34 alias height image_height
/macosx-10.9.5/WebCore-7537.78.1/platform/image-encoders/
H A DJPEGImageEncoder.cpp102 compressData.image_height = size.height();
121 const unsigned char* pixelEnd = pixel + compressData.image_width * compressData.image_height * 4;
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_maker_image.rb21 "image_height" => "65",
57 assert_equal(@item_infos["image_height"].to_i, item.image_height)
/macosx-10.9.5/xnu-2422.115.4/osfmk/console/
H A Dvideo_console.h101 uint32_t image_width, uint32_t image_height,
/macosx-10.9.5/ruby-104/ruby/lib/rss/
H A Dimage.rb77 alias height= image_height=
78 alias height image_height
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_jpeg.c727 sp->cinfo.d.image_height < segment_height) {
733 sp->cinfo.d.image_height);
736 sp->cinfo.d.image_height > segment_height) {
747 sp->cinfo.d.image_width, sp->cinfo.d.image_height);
891 if( nrows > (int) sp->cinfo.d.image_height )
892 nrows = sp->cinfo.d.image_height;
992 if ( (nrows = sp->cinfo.d.image_height) ) {
1334 sp->cinfo.c.image_height = segment_height;
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngread.c773 png_uint_32 i, image_height; local
792 image_height=png_ptr->height;
793 png_ptr->num_rows = image_height; /* Make sure this is set correctly */
798 for (i = 0; i < image_height; i++)

Completed in 316 milliseconds

12