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

1 2

  /external/jpeg/
jcapistd.c 67 * 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;
example.c 62 extern int image_height; /* Number of rows in image */
126 cinfo.image_height = image_height;
156 while (cinfo.next_scanline < cinfo.image_height) {
rdrle.c 121 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;
jdinput.c 48 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
90 jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
101 jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
111 jdiv_round_up((long) cinfo->image_height,
168 jdiv_round_up((long) cinfo->image_height,
jdmaster.c 121 jdiv_round_up((long) cinfo->image_height, 8L);
128 jdiv_round_up((long) cinfo->image_height, 4L);
135 jdiv_round_up((long) cinfo->image_height, 2L);
140 cinfo->output_height = cinfo->image_height;
172 jdiv_round_up((long) cinfo->image_height *
181 cinfo->output_height = cinfo->image_height;
rdjpgcom.c 269 unsigned int image_height, image_width; local
277 image_height = read_2_bytes();
299 image_width, image_height, num_components, data_precision);
jcmaster.c 55 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
60 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
105 jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
112 jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
122 jdiv_round_up((long) cinfo->image_height,
353 jdiv_round_up((long) cinfo->image_height,
rdbmp.c 198 for (row = 0; row < cinfo->image_height; row++) {
201 progress->pub.pass_limit = (long) cinfo->image_height;
229 source->source_row = cinfo->image_height;
403 cinfo->image_height = (JDIMENSION) biHeight;
rdtarga.c 281 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;
transupp.c 134 MCU_rows = dstinfo->image_height / (dstinfo->max_v_samp_factor * DCTSIZE);
313 MCU_rows = dstinfo->image_height / (dstinfo->max_v_samp_factor * DCTSIZE);
375 MCU_rows = dstinfo->image_height / (dstinfo->max_v_samp_factor * DCTSIZE);
479 MCU_rows = dstinfo->image_height / (dstinfo->max_v_samp_factor * DCTSIZE);
650 dstinfo->image_width = dstinfo->image_height;
651 dstinfo->image_height = dtemp;
714 MCU_rows = dstinfo->image_height / (max_v_samp_factor * DCTSIZE);
716 dstinfo->image_height = MCU_rows * (max_v_samp_factor * DCTSIZE);
jcprepct.c 86 prep->rows_to_go = cinfo->image_height;
217 if (prep->rows_to_go == cinfo->image_height) {
jctrans.c 76 dstinfo->image_height = srcinfo->image_height;
jcmarker.c 288 if ((long) cinfo->image_height > 65535L ||
293 emit_2bytes(cinfo, (int) cinfo->image_height);
jcapimin.c 154 if (cinfo->next_scanline < cinfo->image_height)
jpeglib.h 284 JDIMENSION image_height; /* input image height */ member in struct:jpeg_compress_struct
355 * processing loop, e.g., "while (next_scanline < image_height)".
358 JDIMENSION next_scanline; /* 0 .. image_height-1 */
428 JDIMENSION image_height; /* nominal image height */ member in struct:jpeg_decompress_struct
    [all...]
cjpeg.c 583 while (cinfo.next_scanline < cinfo.image_height) {
  /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) {
456 wimage_rowbytes*image_height)))
472 bmih->biHeight = -((long)image_height);
482 for (j = 0; j < image_height; ++j) {
522 image_height+extra_height, NULL, NULL, hInst, NULL);
555 for (lastrow = row = 0; row < image_height; ++row) {
605 if (lastrow < image_height) {
609 rect.bottom = (LONG)image_height; /* possibly off by one? */
658 rc = StretchDIBits(hdc, 0, 0, image_width, image_height,
    [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,
574 size_hints->min_height = size_hints->max_height = (int)image_height;
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);
708 for (lastrow = row = 0; row < image_height; ++row)
    [all...]
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab.cc 98 int image_height = alpha->image_l->height(); local
100 int y_base = height() - image_height;
104 title_bounds_ = gfx::Rect(x_base, y_base, center_width, image_height);
147 int image_height = alpha->image_l->height(); local
148 int y_base = height() - image_height;
150 *tab_bg, offset, 0, tab_image->l_width, image_height);
158 tab_image->r_width, image_height);
176 width() - tab_image->l_width - tab_image->r_width, image_height);
  /external/libvpx/vp8/encoder/
ssim.c 159 const int image_width, const int image_height,
170 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
174 for (j = KERNEL; j < image_height - KERNEL; ++j)
178 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
184 image_width, image_height, stride1, stride2);
189 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
193 for (j = image_height - KERNEL; j < image_height; ++j)
197 SSIM += get_ssimg(org, rec, i, j, image_width, image_height, stride1, stride2);
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 53 cinfo->image_height = height;
83 int height = cinfo->image_height;
91 while (cinfo->next_scanline < cinfo->image_height) {
156 int height = cinfo->image_height;
164 while (cinfo->next_scanline < cinfo->image_height) {
  /external/webkit/Source/WebCore/platform/image-encoders/
JPEGImageEncoder.cpp 102 compressData.image_height = size.height();
118 const unsigned char* pixelEnd = pixel + compressData.image_width * compressData.image_height * 4;
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
JPEGImageEncoder.cpp 128 cinfo.image_height = imageSize.height();
139 while (cinfo.next_scanline < cinfo.image_height) {
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 315 int image_height = y + size.height(); local
345 y = std::max(y, image_height);
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 415 cinfo.image_height = out_height;
430 while ((cinfo.next_scanline < cinfo.image_height) && !mCancelEncoding) {

Completed in 1443 milliseconds

1 2