Searched defs:image_height (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_entry_conversion.cc114 const int64 image_height = input.image_media_metadata().height(); local
115 if (image_height != -1)
116 file_specific_info->set_image_height(image_height);
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
H A Dvar_array_buffer.cc80 const uint32_t image_height = image_data->size().height(); local
83 int bar_height = static_cast<int>(value * image_height);
85 uint32_t row = image_height - 1 - i;
/external/chromium_org/chrome/common/
H A Dinstant_types.h111 uint16 image_height; member in struct:ThemeBackgroundInfo
/external/chromium_org/components/enhanced_bookmarks/
H A Dmetadata_accessor.cc204 int image_height,
229 info->set_height(image_height);
200 SetAllImagesForBookmark(BookmarkModel* bookmark_model, const BookmarkNode* node, const GURL& image_url, int image_width, int image_height, const GURL& thumbnail_url, int thumbnail_width, int thumbnail_height) argument
H A Denhanced_bookmark_model.cc439 int image_height,
466 info->set_height(image_height);
436 SetAllImages(const BookmarkNode* node, const GURL& image_url, int image_width, int image_height, const GURL& thumbnail_url, int thumbnail_width, int thumbnail_height) argument
/external/chromium_org/google_apis/gaia/
H A Dgoogle_service_auth_error.h111 int image_height; // Height of capture image. member in struct:GoogleServiceAuthError::Captcha
197 int image_height);
H A Dgoogle_service_auth_error.cc16 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),
243 GoogleServiceAuthError( State s, const std::string& captcha_token, const GURL& captcha_audio_url, const GURL& captcha_image_url, const GURL& captcha_unlock_url, int image_width, int image_height) argument
/external/chromium_org/cc/layers/
H A Dnine_patch_layer_impl.cc151 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
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser.cc55 double image_width, image_height; local
57 success &= bounds->GetDouble(1, &image_height);
72 bitmap.allocN32Pixels(image_width, image_height);
/external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
H A Dmouse_lock.cc229 int image_height = image->size().height(); local
232 for (int y = 0; y < image_height; ++y) {
/external/chromium_org/pdf/
H A Dprogress_control.cc86 int image_height = 0; local
89 image_height = std::max(image_height, images[i].size().height());
107 std::max(image_height, text_height) +
124 image_height);
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdjpgcom.c285 unsigned int image_height, image_width; local
293 image_height = read_2_bytes();
315 image_width, image_height, num_components, data_precision);
/external/chromium_org/third_party/webrtc/common_video/
H A Di420_video_frame_unittest.cc26 int ExpectedSize(int plane_stride, int image_height, PlaneType type);
290 int ExpectedSize(int plane_stride, int image_height, PlaneType type) { argument
292 return (plane_stride * image_height);
294 int half_height = (image_height + 1) / 2;
/external/jpeg/
H A Drdjpgcom.c269 unsigned int image_height, image_width; local
277 image_height = read_2_bytes();
299 image_width, image_height, num_components, data_precision);
/external/qemu/distrib/jpeg-6b/
H A Drdjpgcom.c269 unsigned int image_height, image_width; local
277 image_height = read_2_bytes();
299 image_width, image_height, num_components, data_precision);
/external/chromium_org/third_party/libyuv/util/
H A Dconvert.cc31 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...]
H A Dpsnr_main.cc56 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...]
H A Dssim.cc272 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);
271 CalcSSIM(const uint8 *org, const uint8 *rec, const int image_width, const int image_height) argument
/external/libpng/contrib/gregbook/
H A Drpng-win.c151 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...]
H A Drpng-x.c133 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;
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_graphics_2d.cc449 const int image_width = 15, image_height = 23; local
451 pp::Size(image_width, image_height), false);
454 pp::Size(image_width, image_height), false);
455 FillRectInImage(&no_image, pp::Rect(0, 0, image_width, image_height), 0);
457 pp::Size(image_width, image_height), false);
459 pp::Size(image_width, image_height), false);
461 ASSERT_EQ(pp::Size(image_width, image_height), test_image.size());
474 pp::Rect clip(image_x, image_y, image_width, image_height);
508 int part_w = image_width / 2, part_h = image_height / 2;
522 clip = pp::Rect(0, 0, image_x + image_width, image_y + image_height);
[all...]
/external/chromium_org/third_party/libpng/
H A Dpngread.c912 png_uint_32 i, image_height; local
931 image_height=png_ptr->height;
932 png_ptr->num_rows = image_height; /* Make sure this is set correctly */
937 for (i = 0; i < image_height; i++)
/external/chromium_org/third_party/libwebp/dec/
H A Dwebp.c295 int image_height = 0; local
378 &image_width, &image_height)) {
386 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
392 if (canvas_width != image_width || canvas_height != image_height) {
397 if (height != NULL) *height = image_height;
/external/qemu/distrib/libpng-1.2.46/
H A Dpngread.c1074 png_uint_32 i, image_height; local
1093 image_height=png_ptr->height;
1094 png_ptr->num_rows = image_height; /* Make sure this is set correctly */
1099 for (i = 0; i < image_height; i++)
/external/webp/src/dec/
H A Dwebp.c295 int image_height = 0; local
339 image_height = canvas_height;
383 &image_width, &image_height)) {
392 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
398 if (canvas_width != image_width || canvas_height != image_height) {
417 if (height != NULL) *height = image_height;

Completed in 490 milliseconds

12