Searched refs:image_width (Results 1 - 12 of 12) sorted by relevance
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jcsample.c | 163 cinfo->image_width, output_cols * h_expand); 196 cinfo->max_v_samp_factor, cinfo->image_width); 199 cinfo->image_width, compptr->width_in_blocks * DCTSIZE); 230 cinfo->image_width, output_cols * 2); 267 cinfo->image_width, output_cols * 2); 310 cinfo->image_width, output_cols * 2); 411 cinfo->image_width, output_cols);
|
H A D | jdmaster.c | 106 jdiv_round_up((long) cinfo->image_width, 8L); 113 jdiv_round_up((long) cinfo->image_width, 4L); 120 jdiv_round_up((long) cinfo->image_width, 2L); 126 cinfo->output_width = cinfo->image_width; 155 jdiv_round_up((long) cinfo->image_width * 167 cinfo->output_width = cinfo->image_width;
|
H A D | jdinput.c | 51 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION) 89 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor, 100 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor, 167 jdiv_round_up((long) cinfo->image_width,
|
H A D | jccolor.c | 144 JDIMENSION num_cols = cinfo->image_width; 200 JDIMENSION num_cols = cinfo->image_width; 238 JDIMENSION num_cols = cinfo->image_width; 290 JDIMENSION num_cols = cinfo->image_width; 321 JDIMENSION num_cols = cinfo->image_width;
|
H A D | jpegdecoder.c | 583 cinfo.image_width, cinfo.image_height, 592 jsrc.hOutputBuffer = (*env)->NewByteArray(env, cinfo.image_width); 594 jsrc.hOutputBuffer = (*env)->NewIntArray(env, cinfo.image_width); 671 ip = jsrc.outbuf.ip + cinfo.image_width; 672 bp = jsrc.outbuf.bp + cinfo.image_width * 4; 681 ip = jsrc.outbuf.ip + cinfo.image_width; 682 bp = jsrc.outbuf.bp + cinfo.image_width * 3;
|
H A D | jcmaster.c | 59 if (cinfo->image_height <= 0 || cinfo->image_width <= 0 65 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION) 69 samplesperrow = (long) cinfo->image_width * (long) cinfo->input_components; 106 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor, 113 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor, 354 jdiv_round_up((long) cinfo->image_width,
|
H A D | jcprepct.c | 160 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, 227 1, cinfo->image_width); 241 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
|
H A D | jctrans.c | 79 dstinfo->image_width = srcinfo->image_width;
|
H A D | jcmarker.c | 293 (long) cinfo->image_width > 65535L) 298 emit_2bytes(cinfo, (int) cinfo->image_width);
|
H A D | imageioJPEG.c | 1751 cinfo->image_width, 1849 (sourceXStart < 0) || (sourceXStart >= (jint)cinfo->image_width) || 1851 (sourceWidth < 1) || (sourceWidth > (jint)cinfo->image_width) || 1862 if (stepX > (jint)cinfo->image_width) { 1863 stepX = cinfo->image_width; 1974 cinfo->image_width > (0xffffffffu / (unsigned int)cinfo->output_components)) 1982 scanLinePtr = (JSAMPROW)malloc(cinfo->image_width*cinfo->output_components); 2760 cinfo->image_width = destWidth;
|
H A D | jpeglib.h | 154 * downsampled_width = ceil(image_width * Hi/Hmax) 156 * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE) 283 JDIMENSION image_width; /* input image width */ member in struct:jpeg_compress_struct 424 JDIMENSION image_width; /* nominal image width (from SOF marker) */ member in struct:jpeg_decompress_struct
|
H A D | jdmarker.c | 256 INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE); 262 (int) cinfo->image_width, (int) cinfo->image_height, 271 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
|
Completed in 838 milliseconds