HomeSort by relevance Sort by last modified time
    Searched refs:image_width (Results 1 - 25 of 39) sorted by null

1 2

  /external/jpeg/
example.c 63 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 */
jdinput.c 49 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
87 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
98 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
119 cinfo->original_image_width = cinfo->image_width;
165 jdiv_round_up((long) cinfo->image_width,
186 tmp = (int) (jdiv_round_up(cinfo->image_width, 8)
jcsample.c 159 cinfo->image_width, output_cols * h_expand);
192 cinfo->max_v_samp_factor, cinfo->image_width);
195 cinfo->image_width, compptr->width_in_blocks * DCTSIZE);
226 cinfo->image_width, output_cols * 2);
263 cinfo->image_width, output_cols * 2);
306 cinfo->image_width, output_cols * 2);
407 cinfo->image_width, output_cols);
rdppm.c 151 for (col = cinfo->image_width; col > 0; col--) {
169 for (col = cinfo->image_width; col > 0; col--) {
192 for (col = cinfo->image_width; col > 0; col--) {
213 for (col = cinfo->image_width; col > 0; col--) {
251 for (col = cinfo->image_width; col > 0; col--) {
275 for (col = cinfo->image_width; col > 0; col--) {
329 cinfo->image_width = (JDIMENSION) w;
jdmaster.c 119 jdiv_round_up((long) cinfo->image_width, 8L);
126 jdiv_round_up((long) cinfo->image_width, 4L);
133 jdiv_round_up((long) cinfo->image_width, 2L);
139 cinfo->output_width = cinfo->image_width;
168 jdiv_round_up((long) cinfo->image_width *
180 cinfo->output_width = cinfo->image_width;
rdrle.c 120 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--) {
rdjpgcom.c 269 unsigned int image_height, image_width; local
278 image_width = read_2_bytes();
299 image_width, image_height, num_components, data_precision);
jccolor.c 142 JDIMENSION num_cols = cinfo->image_width;
198 JDIMENSION num_cols = cinfo->image_width;
237 JDIMENSION num_cols = cinfo->image_width;
289 JDIMENSION num_cols = cinfo->image_width;
350 JDIMENSION num_cols = cinfo->image_width;
rdtarga.c 182 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;
jcmaster.c 55 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
61 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
65 samplesperrow = (long) cinfo->image_width * (long) cinfo->input_components;
102 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
109 jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
350 jdiv_round_up((long) cinfo->image_width,
jcprepct.c 156 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
223 1, cinfo->image_width);
237 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
transupp.c 82 MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
249 MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
374 MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
478 MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
649 dtemp = dstinfo->image_width;
650 dstinfo->image_width = dstinfo->image_height;
694 MCU_cols = dstinfo->image_width / (max_h_samp_factor * DCTSIZE);
696 dstinfo->image_width = MCU_cols * (max_h_samp_factor * DCTSIZE);
rdbmp.c 138 for (col = cinfo->image_width; col > 0; col--) {
169 for (col = cinfo->image_width; col > 0; col--) {
402 cinfo->image_width = (JDIMENSION) biWidth;
jctrans.c 75 dstinfo->image_width = srcinfo->image_width;
jcmarker.c 289 (long) cinfo->image_width > 65535L)
294 emit_2bytes(cinfo, (int) cinfo->image_width);
jpeglib.h 150 * downsampled_width = ceil(image_width * Hi/Hmax)
152 * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE)
283 JDIMENSION image_width; /* input image width */ member in struct:jpeg_compress_struct
426 JDIMENSION image_width; /* nominal image width (from SOF marker) member in struct:jpeg_decompress_struct
    [all...]
jdapistd.c 230 cinfo->image_width = jmin(cinfo->original_image_width,
  /external/webkit/Source/WebCore/platform/image-encoders/
JPEGImageEncoder.cpp 101 compressData.image_width = size.width();
115 rowBuffer.resize(compressData.image_width * 3);
118 const unsigned char* pixelEnd = pixel + compressData.image_width * compressData.image_height * 4;
121 for (const unsigned char* rowEnd = pixel + compressData.image_width * 4; pixel < rowEnd;) {
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
JPEGImageEncoder.cpp 129 cinfo.image_width = imageSize.width();
138 row.resize(cinfo.image_width * cinfo.input_components);
141 preMultipliedBGRAtoRGB(pixels, cinfo.image_width, row.data());
143 RGBAtoRGB(pixels, cinfo.image_width, row.data());
145 pixels += cinfo.image_width * 4;
  /external/libpng/contrib/gregbook/
rpng-win.c 125 static ulg image_width, image_height, image_rowbytes; variable
309 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
453 wimage_rowbytes = ((3*image_width + 3L) >> 2) << 2;
471 bmih->biWidth = image_width;
484 for (i = image_width; i > 0; --i) {
521 CW_USEDEFAULT, CW_USEDEFAULT, image_width+extra_width,
546 image_width, image_rowbytes, wimage_rowbytes))
559 for (i = image_width; i > 0; --i) {
568 for (i = image_width; i > 0; --i) {
596 rect.right = (LONG)image_width; /* possibly off by one? *
    [all...]
rpng-x.c 133 static ulg image_width, image_height, image_rowbytes; variable
299 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
551 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
573 size_hints->min_width = size_hints->max_width = (int)image_width;
628 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
645 xdata = (uch *)malloc(4*image_width*image_height);
648 xdata = (uch *)malloc(2*image_width*image_height);
651 xdata = (uch *)malloc(image_width*image_height);
661 (char *)xdata, image_width, image_height, pad, 0);
700 image_width, image_rowbytes, ximage_rowbytes)
    [all...]
  /external/libvpx/vp8/encoder/
ssim.c 159 const int image_width, const int image_height,
168 for (i = 0; i < image_width; ++i)
170 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
178 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
181 for (i = KERNEL; i < image_width - KERNEL; ++i)
184 image_width, image_height, stride1, stride2);
187 for (i = image_width - KERNEL; i < image_width; ++i)
189 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
195 for (i = 0; i < image_width; ++i
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 52 cinfo->image_width = width;
82 int width = cinfo->image_width;
155 int width = cinfo->image_width;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dgastr.h 98 CARD16 image_width B16;
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 252 if (!m_decoder->setSize(m_info.image_width, m_info.image_height))

Completed in 117 milliseconds

1 2