HomeSort by relevance Sort by last modified time
    Searched refs:max_dimension (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/renderer/
image_loading_helper.cc 36 uint32_t max_dimension = std::max(image.width(), image.height());
37 if (max_dimension <= max_image_size)
44 static_cast<uint64_t>(image.width()) * max_image_size / max_dimension,
45 static_cast<uint64_t>(image.height()) * max_image_size / max_dimension);
  /external/chromium_org/chrome/browser/android/thumbnail/
thumbnail_store.cc 695 int max_dimension = std::max(display_info.GetDisplayWidth(), local
698 if (content_width > max_dimension
699 || content_height > max_dimension
700 || static_cast<size_t>(raw_width) > NextPowerOfTwo(max_dimension)
701 || static_cast<size_t>(raw_height) > NextPowerOfTwo(max_dimension)) {

Completed in 478 milliseconds