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

1 2 3 4 5

  /external/clang/test/CodeGen/
mandel.c 12 #define IMAGE_HEIGHT 50
24 #define step_Y ((-START_Y - START_Y)/IMAGE_HEIGHT)
34 for (y = 0; y < IMAGE_HEIGHT; ++y) {
  /external/libjpeg-turbo/
jpegcomp.h 29 #define _jpeg_height image_height
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;
jdmaster.c 106 jdiv_round_up((long) cinfo->image_height, (long) DCTSIZE);
114 jdiv_round_up((long) cinfo->image_height * 2L, (long) DCTSIZE);
122 jdiv_round_up((long) cinfo->image_height * 3L, (long) DCTSIZE);
130 jdiv_round_up((long) cinfo->image_height * 4L, (long) DCTSIZE);
138 jdiv_round_up((long) cinfo->image_height * 5L, (long) DCTSIZE);
146 jdiv_round_up((long) cinfo->image_height * 6L, (long) DCTSIZE);
154 jdiv_round_up((long) cinfo->image_height * 7L, (long) DCTSIZE);
162 jdiv_round_up((long) cinfo->image_height * 8L, (long) DCTSIZE);
170 jdiv_round_up((long) cinfo->image_height * 9L, (long) DCTSIZE);
178 jdiv_round_up((long) cinfo->image_height * 10L, (long) DCTSIZE)
    [all...]
rdrle.c 123 cinfo->image_height = height;
265 progress->pub.pass_limit = cinfo->image_height;
275 for (row = 0; row < cinfo->image_height; row++) {
290 for (row = 0; row < cinfo->image_height; row++) {
313 for (row = 0; row < cinfo->image_height; row++) {
349 source->row = cinfo->image_height;
  /external/opencv3/3rdparty/libjpeg/
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;
jdinput.c 62 jdiv_round_up((long) cinfo->image_height, (long) cinfo->block_size);
70 jdiv_round_up((long) cinfo->image_height * 2L, (long) cinfo->block_size);
78 jdiv_round_up((long) cinfo->image_height * 3L, (long) cinfo->block_size);
86 jdiv_round_up((long) cinfo->image_height * 4L, (long) cinfo->block_size);
94 jdiv_round_up((long) cinfo->image_height * 5L, (long) cinfo->block_size);
102 jdiv_round_up((long) cinfo->image_height * 6L, (long) cinfo->block_size);
110 jdiv_round_up((long) cinfo->image_height * 7L, (long) cinfo->block_size);
118 jdiv_round_up((long) cinfo->image_height * 8L, (long) cinfo->block_size);
126 jdiv_round_up((long) cinfo->image_height * 9L, (long) cinfo->block_size);
134 jdiv_round_up((long) cinfo->image_height * 10L, (long) cinfo->block_size)
    [all...]
jcmaster.c 61 * but image_width and image_height can come from arbitrary data,
64 if (((long) cinfo->image_width >> 24) || ((long) cinfo->image_height >> 24))
71 cinfo->jpeg_height = cinfo->image_height * cinfo->block_size;
79 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 2L);
87 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 3L);
95 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 4L);
103 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 5L);
111 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 6L);
119 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 7L);
127 jdiv_round_up((long) cinfo->image_height * cinfo->block_size, 8L)
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_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;
  /external/autotest/client/site_tests/firmware_TouchMTB/
report_html.py 22 def __init__(self, image_width, image_height, score_colors):
49 ''' % (image_width, image_height))
139 self.image_height = self.image_width / touch_width * touch_height
140 self.doc = TemplateHtml(self.image_width, self.image_height,
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 103 mCInfo.image_height = mAuxBuffer->height;
107 ALOGV("%s: image_width = %d, image_height = %d", __FUNCTION__, mCInfo.image_width, mCInfo.image_height);
118 while (mCInfo.next_scanline < mCInfo.image_height) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableTest.java 52 private static final int IMAGE_HEIGHT = 64;
72 mBitmap = Bitmap.createBitmap(IMAGE_WIDTH, IMAGE_HEIGHT, Bitmap.Config.ARGB_8888);
128 drawable.setBounds(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT);
131 int sunColor = mBitmap.getPixel(IMAGE_WIDTH / 2, IMAGE_HEIGHT / 2);
132 int earthColor = mBitmap.getPixel(IMAGE_WIDTH * 3 / 4 + 2, IMAGE_HEIGHT / 2);
157 d1.setBounds(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT);
161 int endColor = mBitmap.getPixel(IMAGE_WIDTH / 2, IMAGE_HEIGHT / 2);
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 55 cinfo->image_height = height;
85 int height = cinfo->image_height;
93 while (cinfo->next_scanline < cinfo->image_height) {
161 int height = cinfo->image_height;
169 while (cinfo->next_scanline < cinfo->image_height) {
  /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
AnimatedVectorDrawableTest.java 56 private static final int IMAGE_HEIGHT = 64;
73 mBitmap = Bitmap.createBitmap(IMAGE_WIDTH, IMAGE_HEIGHT, Bitmap.Config.ARGB_8888);
130 mAnimatedVectorDrawable.setBounds(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT);
133 int sunColor = mBitmap.getPixel(IMAGE_WIDTH / 2, IMAGE_HEIGHT / 2);
134 int earthColor = mBitmap.getPixel(IMAGE_WIDTH * 3 / 4 + 2, IMAGE_HEIGHT / 2);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cl.py 41 'IMAGE_HEIGHT', 'IMAGE_WIDTH', 'INTERNAL_FORMAT',
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cl.py 41 'IMAGE_HEIGHT', 'IMAGE_WIDTH', 'INTERNAL_FORMAT',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cl.py 41 'IMAGE_HEIGHT', 'IMAGE_WIDTH', 'INTERNAL_FORMAT',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cl.py 41 'IMAGE_HEIGHT', 'IMAGE_WIDTH', 'INTERNAL_FORMAT',
  /external/webrtc/webrtc/common_video/
video_frame.cc 36 int ExpectedSize(int plane_stride, int image_height, PlaneType type) {
38 return plane_stride * image_height;
39 return plane_stride * ((image_height + 1) / 2);
  /external/libpng/contrib/gregbook/
rpng-x.c 135 static ulg image_width, image_height, image_rowbytes; variable
303 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
557 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
580 size_hints->min_height = size_hints->max_height = (int)image_height;
634 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
651 xdata = (uch *)malloc(4*image_width*image_height);
654 xdata = (uch *)malloc(2*image_width*image_height);
657 xdata = (uch *)malloc(image_width*image_height);
667 (char *)xdata, image_width, image_height, pad, 0);
714 for (lastrow = row = 0; row < image_height; ++row)
    [all...]
rpng-win.c 151 static ulg image_width, image_height, image_rowbytes; variable
342 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
500 wimage_rowbytes*image_height)))
516 bmih->biHeight = -((long)image_height);
526 for (j = 0; j < image_height; ++j) {
566 image_height+extra_height, NULL, NULL, hInst, NULL);
599 for (lastrow = row = 0; row < image_height; ++row) {
649 if (lastrow < image_height) {
653 rect.bottom = (LONG)image_height; /* possibly off by one? */
702 rc = StretchDIBits(hdc, 0, 0, image_width, image_height,
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpeg.cpp 176 cinfo.image_height = height;
197 while (cinfo.next_scanline < cinfo.image_height) {
295 height = cinfo.image_height;
380 cinfo.image_height = m_OrigHeight;
392 m_OrigHeight = cinfo.image_height;
658 *height = p->m_Info.image_height;
  /frameworks/av/cmds/stagefright/
jpeg.cpp 64 cinfo.image_height = height;
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 164 mCInfo.image_height = mAuxBuffer.height;
178 while (mCInfo.next_scanline < mCInfo.image_height) {
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_writer.cpp 74 mInfo.image_height = height;
133 while (mInfo.next_scanline < mInfo.image_height) {

Completed in 1536 milliseconds

1 2 3 4 5