Searched refs:image_width (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/platform/image-encoders/
H A DJPEGImageEncoder.cpp101 compressData.image_width = size.width();
118 rowBuffer.resize(compressData.image_width * 3);
121 const unsigned char* pixelEnd = pixel + compressData.image_width * compressData.image_height * 4;
124 for (const unsigned char* rowEnd = pixel + compressData.image_width * 4; pixel < rowEnd;) {
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Dexample.c63 extern int image_width; /* Number of columns in image */
125 cinfo.image_width = image_width; /* image width and height, in pixels */
154 row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
H A Djdinput.c60 jdiv_round_up((long) cinfo->image_width, (long) cinfo->block_size);
68 jdiv_round_up((long) cinfo->image_width * 2L, (long) cinfo->block_size);
76 jdiv_round_up((long) cinfo->image_width * 3L, (long) cinfo->block_size);
84 jdiv_round_up((long) cinfo->image_width * 4L, (long) cinfo->block_size);
92 jdiv_round_up((long) cinfo->image_width * 5L, (long) cinfo->block_size);
100 jdiv_round_up((long) cinfo->image_width * 6L, (long) cinfo->block_size);
108 jdiv_round_up((long) cinfo->image_width * 7L, (long) cinfo->block_size);
116 jdiv_round_up((long) cinfo->image_width * 8L, (long) cinfo->block_size);
124 jdiv_round_up((long) cinfo->image_width * 9L, (long) cinfo->block_size);
132 jdiv_round_up((long) cinfo->image_width * 1
[all...]
H A Djcmaster.c61 cinfo->jpeg_width = cinfo->image_width << 3;
67 cinfo->jpeg_width = cinfo->image_width << 2;
73 cinfo->jpeg_width = (cinfo->image_width << 1) + (JDIMENSION)
74 jdiv_round_up((long) cinfo->image_width * 2, 3L);
81 cinfo->jpeg_width = cinfo->image_width << 1;
87 cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
88 jdiv_round_up((long) cinfo->image_width * 3, 5L);
95 cinfo->jpeg_width = cinfo->image_width + (JDIMENSION)
96 jdiv_round_up((long) cinfo->image_width, 3L);
103 cinfo->jpeg_width = cinfo->image_width
[all...]
H A Djcsample.c170 cinfo->image_width, output_cols * h_expand);
204 cinfo->max_v_samp_factor, cinfo->image_width);
206 expand_right_edge(output_data, cinfo->max_v_samp_factor, cinfo->image_width,
238 cinfo->image_width, output_cols * 2);
275 cinfo->image_width, output_cols * 2);
319 cinfo->image_width, output_cols * 2);
421 cinfo->image_width, output_cols);
H A Drdppm.c152 for (col = cinfo->image_width; col > 0; col--) {
170 for (col = cinfo->image_width; col > 0; col--) {
193 for (col = cinfo->image_width; col > 0; col--) {
214 for (col = cinfo->image_width; col > 0; col--) {
252 for (col = cinfo->image_width; col > 0; col--) {
276 for (col = cinfo->image_width; col > 0; col--) {
330 cinfo->image_width = (JDIMENSION) w;
H A Drdrle.c120 cinfo->image_width = width;
219 for (col = cinfo->image_width; col > 0; col--) {
295 for (col = 0; col < cinfo->image_width; col++) {
321 for (col = cinfo->image_width; col > 0; col--) {
H A Dtransupp.h178 JPP((JDIMENSION image_width, JDIMENSION image_height,
H A Drdjpgcom.c285 unsigned int image_height, image_width; local
294 image_width = read_2_bytes();
315 image_width, image_height, num_components, data_precision);
H A Djccolor.c140 JDIMENSION num_cols = cinfo->image_width;
196 JDIMENSION num_cols = cinfo->image_width;
235 JDIMENSION num_cols = cinfo->image_width;
287 JDIMENSION num_cols = cinfo->image_width;
318 JDIMENSION num_cols = cinfo->image_width;
H A Drdtarga.c182 for (col = cinfo->image_width; col > 0; col--) {
200 for (col = cinfo->image_width; col > 0; col--) {
220 for (col = cinfo->image_width; col > 0; col--) {
247 for (col = cinfo->image_width; col > 0; col--) {
463 cinfo->image_width = width;
H A Djcprepct.c156 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
225 1, cinfo->image_width);
239 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
H A Drdbmp.c139 for (col = cinfo->image_width; col > 0; col--) {
170 for (col = cinfo->image_width; col > 0; col--) {
200 for (col = cinfo->image_width; col > 0; col--) {
443 cinfo->image_width = (JDIMENSION) biWidth;
H A Djctrans.c76 dstinfo->image_width = srcinfo->image_width;
H A Dtransupp.c1110 jtemp = dstinfo->image_width;
1111 dstinfo->image_width = dstinfo->image_height;
1379 if (dstinfo->jpeg_width != srcinfo->image_width ||
1461 * image_width, image_height: source image dimensions.
1466 * image_width = cinfo.image_width
1477 jtransform_perfect_transform(JDIMENSION image_width, JDIMENSION image_height,
1486 if (image_width % (JDIMENSION) MCU_width)
1496 if (image_width % (JDIMENSION) MCU_width)
H A Djpeglib.h158 * downsampled_width = ceil(image_width * Hi/Hmax * DCT_h_scaled_size/DCTSIZE)
286 JDIMENSION image_width; /* input image width */ member in struct:jpeg_compress_struct
449 JDIMENSION image_width; /* nominal image width (from SOF marker) */ member in struct:jpeg_decompress_struct
H A Djdmarker.c255 INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE);
261 (int) cinfo->image_width, (int) cinfo->image_height,
270 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
H A Djdmaster.c143 jdiv_round_up((long) cinfo->image_width *
/macosx-10.9.5/ruby-104/ruby/lib/rss/maker/
H A Dimage.rb26 attr_accessor :about, :resource, :image_width, :image_height
29 add_need_initialize_variable("image_width")
31 alias width= image_width=
32 alias width image_width
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_maker_image.rb20 "image_width" => "100",
56 assert_equal(@item_infos["image_width"].to_i, item.image_width)
/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.rb75 alias width= image_width=
76 alias width image_width
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_jpeg.c726 if (sp->cinfo.d.image_width < segment_width ||
732 sp->cinfo.d.image_width,
735 if (sp->cinfo.d.image_width > segment_width ||
747 sp->cinfo.d.image_width, sp->cinfo.d.image_height);
1333 sp->cinfo.c.image_width = segment_width;
1469 bytesperclumpline = (((sp->cinfo.c.image_width+sp->h_sampling-1)/sp->h_sampling)
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/jpeg/
H A Djpeg.c188 cinfo->image_width = 16;
826 cinfo->image_width = blockPtr->width;
914 cinfo->image_width * cinfo->input_components, 1);
/macosx-10.9.5/WebCore-7537.78.1/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp372 if (!m_decoder->setSize(m_info.image_width, m_info.image_height))

Completed in 470 milliseconds

12