HomeSort by relevance Sort by last modified time
    Searched full:computed_size (Results 1 - 7 of 7) sorted by null

  /system/core/fastbootd/
utils.c 78 int64_t computed_size; local
85 computed_size = buf.st_size;
87 computed_size = get_block_device_size(fd);
89 computed_size = 0;
91 return computed_size;
98 uint64_t computed_size; local
105 computed_size = buf.st_size;
107 computed_size = get_block_device_size(fd);
109 computed_size = 0;
111 return computed_size;
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 288 // of adjusted_size should never be worse than that of computed_size.
291 gfx::Size computed_size(420, 200);
294 target_size, image_size, computed_size);
301 AspectDifference(target_size, computed_size));
303 EXPECT_EQ(computed_size, adjusted_size);
306 computed_size.SetSize(600, 150);
308 target_size, image_size, computed_size);
315 AspectDifference(target_size, computed_size));
317 EXPECT_EQ(computed_size.width(), adjusted_size.width());
318 EXPECT_LE(computed_size.height(), adjusted_size.height())
    [all...]
content_analysis.h 49 // |computed_size| is the size of a result of unconstrained segmentation.
54 const gfx::Size& computed_size);
content_analysis.cc 480 const gfx::Size& computed_size) {
490 int computed_width = std::max(computed_size.width(), target_size.width());
491 int computed_height = std::max(computed_size.height(), target_size.height());
623 gfx::Size computed_size = AdjustClippingSizeToAspectRatio( local
636 computed_size.height(),
654 computed_size.width(),
  /external/qemu/distrib/ext4_utils/src/
ext4_utils.c 415 s64 computed_size; local
425 computed_size = buf.st_size - reserve_len;
427 computed_size = get_block_device_size(fd) - reserve_len;
429 computed_size = 0;
431 if (computed_size < 0) {
433 computed_size = 0;
436 return computed_size;
  /system/extras/ext4_utils/
ext4_utils.c 463 s64 computed_size; local
473 computed_size = buf.st_size - reserve_len;
475 computed_size = get_block_device_size(fd) - reserve_len;
477 computed_size = 0;
479 if (computed_size < 0) {
481 computed_size = 0;
484 return computed_size;
  /external/chromium_org/base/
file_util_unittest.cc 279 int64 computed_size = ComputeDirectorySize(temp_dir_.path()); local
280 EXPECT_EQ(size_f1 + size_f2 + 3, computed_size);
    [all...]

Completed in 9699 milliseconds