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

  /external/chromium_org/third_party/webrtc/modules/video_capture/
device_info_impl.cc 167 const int32_t diffHeight = capability.height - requested.height;
174 if ((diffHeight >= 0 && diffHeight <= abs(currentbestDiffHeight)) // Height better or equalt that previouse.
175 || (currentbestDiffHeight < 0 && diffHeight >= currentbestDiffHeight))
178 if (diffHeight == currentbestDiffHeight) // Found best height. Care about the width)
183 if (diffWidth == currentbestDiffWith && diffHeight
303 const int32_t diffHeight = currentValue.height - height;
308 if ((diffHeight >= 0 && diffHeight <= abs(currentbestDiffHeight)) // Height better or equal than previous.
309 || (currentbestDiffHeight < 0 && diffHeight >= currentbestDiffHeight)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.cpp 225 float diffHeight = fabs(destHeight - srcHeight);
227 bool heightNearlyEqual = diffHeight < std::numeric_limits<float>::epsilon();
266 && (diffHeight / srcHeight < kFractionalChangeThreshold)) {

Completed in 97 milliseconds