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

1 2 3 4 5 6 7

  /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/chromium_org/cc/layers/
nine_patch_layer_impl.cc 151 float image_height = image_bounds_.height(); local
156 int image_aperture_bottom_height = image_height - image_aperture_.bottom();
163 image_height);
170 image_height);
173 image_height - image_aperture_bottom_height,
177 image_height);
180 image_height - image_aperture_bottom_height,
184 image_height);
190 (image_aperture_top_height) / image_height);
194 (image_height - image_aperture_top_height
    [all...]
  /external/chromium_org/chrome/common/
instant_types.cc 47 image_height(0),
67 image_height == rhs.image_height &&
  /external/chromium_org/third_party/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 116 jdiv_round_up((long) cinfo->image_height, (long) DCTSIZE);
124 jdiv_round_up((long) cinfo->image_height * 2L, (long) DCTSIZE);
132 jdiv_round_up((long) cinfo->image_height * 3L, (long) DCTSIZE);
140 jdiv_round_up((long) cinfo->image_height * 4L, (long) DCTSIZE);
148 jdiv_round_up((long) cinfo->image_height * 5L, (long) DCTSIZE);
156 jdiv_round_up((long) cinfo->image_height * 6L, (long) DCTSIZE);
164 jdiv_round_up((long) cinfo->image_height * 7L, (long) DCTSIZE);
172 jdiv_round_up((long) cinfo->image_height * 8L, (long) DCTSIZE);
180 jdiv_round_up((long) cinfo->image_height * 9L, (long) DCTSIZE);
188 jdiv_round_up((long) cinfo->image_height * 10L, (long) DCTSIZE)
    [all...]
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;
turbojpegl.c 133 j->cinfo.image_height = height;
179 j->jdms.free_in_buffer = TJBUFSIZE(j->cinfo.image_width, j->cinfo.image_height);
189 while(j->cinfo.next_scanline<j->cinfo.image_height)
192 j->cinfo.image_height-j->cinfo.next_scanline);
195 *size=TJBUFSIZE(j->cinfo.image_width, j->cinfo.image_height)
269 *width=j->dinfo.image_width; *height=j->dinfo.image_height;
  /external/chromium_org/third_party/libyuv/util/
convert.cc 31 int image_width = 0, image_height = 0; // original width and height variable
93 image_height = atoi(argv[++c]); // NOLINT
135 if (image_width == 0 || image_height == 0) {
138 image_height = org_height;
141 image_height = rec_height;
153 dst_height = Abs(image_height);
221 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB
224 const int y_size = Abs(image_width) * Abs(image_height);
226 ((Abs(image_height) + 1) / 2);
259 printf("Size: %dx%d to %dx%d\n", image_width, image_height,
    [all...]
ssim.h 28 const int image_width, const int image_height);
psnr_main.cc 56 int image_width = 0, image_height = 0; variable
172 image_height = atoi(argv[++c]); // NOLINT
205 if (image_width == 0 || image_height == 0) {
218 image_height = org_height;
225 image_height = org_height;
229 image_height = rec_height;
271 distorted_frame->y = CalcSSIM(ch_org, ch_rec, image_width, image_height);
273 (image_height + 1) / 2);
275 (image_height + 1) / 2);
348 const int y_size = image_width * image_height;
    [all...]
ssim.cc 272 const int image_width, const int image_height) {
274 const int KERNEL_Y = (image_height < KERNEL) ? image_height : KERNEL;
277 const int start_y = start_max(image_height - KERNEL_Y, KERNEL_Y);
282 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
289 for (int j = KERNEL_Y; j < image_height - KERNEL_Y; ++j) {
291 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
321 for (int j = start_y; j < image_height; ++j) {
323 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
  /external/chromium_org/google_apis/gaia/
google_service_auth_error.cc 16 GoogleServiceAuthError::Captcha::Captcha() : image_width(0), image_height(0) {
23 image_width(width), image_height(height) {
35 image_height == b.image_height);
186 captcha_value->SetInteger("imageHeight", captcha_.image_height);
250 int image_height)
253 captcha_unlock_url, image_width, image_height),
  /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;
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;
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcapistd.c 68 * or if more than image_height scanlines are passed in.
85 if (cinfo->next_scanline >= cinfo->image_height)
91 cinfo->progress->pass_limit = (long) cinfo->image_height;
104 rows_left = cinfo->image_height - cinfo->next_scanline;
128 if (cinfo->next_scanline >= cinfo->image_height) {
136 cinfo->progress->pass_limit = (long) cinfo->image_height;
  /external/qemu/distrib/jpeg-6b/
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;
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;
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableTest.java 42 private static final int IMAGE_HEIGHT = 64;
55 mBitmap = Bitmap.createBitmap(IMAGE_WIDTH, IMAGE_HEIGHT, Bitmap.Config.ARGB_8888);
110 mAnimatedVectorDrawable.setBounds(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT);
113 int sunColor = mBitmap.getPixel(IMAGE_WIDTH / 2, IMAGE_HEIGHT / 2);
114 int earthColor = mBitmap.getPixel(IMAGE_WIDTH * 3 / 4 + 2, IMAGE_HEIGHT / 2);
  /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) {
  /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) {
159 int height = cinfo->image_height;
167 while (cinfo->next_scanline < cinfo->image_height) {
  /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/chromium_org/cc/test/
layer_tree_json_parser.cc 55 double image_width, image_height; local
57 success &= bounds->GetDouble(1, &image_height);
72 bitmap.allocN32Pixels(image_width, image_height);
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_entry_conversion.cc 114 const int64 image_height = input.image_media_metadata().height(); local
115 if (image_height != -1)
116 file_specific_info->set_image_height(image_height);

Completed in 762 milliseconds

1 2 3 4 5 6 7