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

1 2

  /external/chromium_org/third_party/libjpeg_turbo/
example.c 367 /* jpeg_read_scanlines(...); */
373 /* jpeg_read_scanlines expects an array of pointers to scanlines.
377 (void) jpeg_read_scanlines(&cinfo, buffer, 1);
413 * In the above code, we ignored the return value of jpeg_read_scanlines,
jpeglibmangler.h 84 #define jpeg_read_scanlines chromium_jpeg_read_scanlines macro
jdapistd.c 134 * jpeg_read_scanlines or jpeg_read_raw_data.
149 * Note: we warn about excess calls to jpeg_read_scanlines() since
155 jpeg_read_scanlines (j_decompress_ptr cinfo, JSAMPARRAY scanlines,
jpeglib.h 532 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
550 /* Row index of next scanline to be read from jpeg_read_scanlines().
951 #define jpeg_read_scanlines macro
    [all...]
djpeg.c 636 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
turbojpegl.c 338 jpeg_read_scanlines(&j->dinfo, &row_pointer[j->dinfo.output_scanline],
turbojpeg.c 1022 jpeg_read_scanlines(dinfo, &row_pointer[dinfo->output_scanline],
    [all...]
  /external/jpeg/
example.c 367 /* jpeg_read_scanlines(...); */
373 /* jpeg_read_scanlines expects an array of pointers to scanlines.
377 (void) jpeg_read_scanlines(&cinfo, buffer, 1);
413 * In the above code, we ignored the return value of jpeg_read_scanlines,
jpeglib.h 474 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
492 /* Row index of next scanline to be read from jpeg_read_scanlines().
924 #define jpeg_read_scanlines macro
    [all...]
jdapistd.c 157 * jpeg_read_scanlines or jpeg_read_raw_data.
172 * Note: we warn about excess calls to jpeg_read_scanlines() since
178 jpeg_read_scanlines (j_decompress_ptr cinfo, JSAMPARRAY scanlines,
djpeg.c 583 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
  /external/qemu/distrib/jpeg-6b/
example.c 367 /* jpeg_read_scanlines(...); */
373 /* jpeg_read_scanlines expects an array of pointers to scanlines.
377 (void) jpeg_read_scanlines(&cinfo, buffer, 1);
413 * In the above code, we ignored the return value of jpeg_read_scanlines,
jpeglib.h 474 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
492 /* Row index of next scanline to be read from jpeg_read_scanlines().
924 #define jpeg_read_scanlines macro
    [all...]
jdapistd.c 157 * jpeg_read_scanlines or jpeg_read_raw_data.
172 * Note: we warn about excess calls to jpeg_read_scanlines() since
178 jpeg_read_scanlines (j_decompress_ptr cinfo, JSAMPARRAY scanlines,
djpeg.c 583 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
  /external/chromium_org/ui/gfx/codec/
jpeg_codec.cc 554 if (!jpeg_read_scanlines(&cinfo, &rowptr, 1))
565 if (!jpeg_read_scanlines(&cinfo, &rowptr, 1))
593 if (!jpeg_read_scanlines(&cinfo, &rowptr, 1))
  /external/pdfium/core/include/thirdparties/libjpeg/
jpeglib.h 71 #define jpeg_read_scanlines FOXIT_PREFIX(jpeg_read_scanlines) macro
534 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
552 /* Row index of next scanline to be read from jpeg_read_scanlines().
927 #define jpeg_read_scanlines macro
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
jpeglib.h 71 #define jpeg_read_scanlines FOXIT_PREFIX(jpeg_read_scanlines) macro
534 /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
552 /* Row index of next scanline to be read from jpeg_read_scanlines().
927 #define jpeg_read_scanlines macro
    [all...]
fpdfapi_jdapistd.c 132 * jpeg_read_scanlines or jpeg_read_raw_data.
147 * Note: we warn about excess calls to jpeg_read_scanlines() since
153 jpeg_read_scanlines (j_decompress_ptr cinfo, JSAMPARRAY scanlines,
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_reader.cpp 155 if (jpeg_read_scanlines(&mInfo, &mScanlineBuf, 1) != 1) {
  /system/extras/tests/bionic/libc/other/
test_jpeg.c 196 (void)jpeg_read_scanlines(&cinfo, &rowptr, 1);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libjpeg.cpp 303 int row_count = jpeg_read_scanlines(cinfo, &rowptr, 1);
651 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1);
692 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1);
    [all...]
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 303 int row_count = jpeg_read_scanlines(cinfo, &rowptr, 1);
667 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1);
709 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 828 // jpeg_read_scanlines will increase the scanline counter, so we
832 if (jpeg_read_scanlines(info, samples, 1) != 1)
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpeg.cpp 530 int nlines = jpeg_read_scanlines(&cinfo, &m_pScanlineBuf, 1);
720 int nlines = jpeg_read_scanlines(&p->m_Info, &dest_buf, 1);

Completed in 221 milliseconds

1 2