Searched defs:GetMin (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/ui/gfx/range/
H A Drange.cc40 size_t Range::GetMin() const { function in class:gfx::Range
57 return GetMin() == other.GetMin() && GetMax() == other.GetMax();
62 !(range.GetMax() < GetMin() || range.GetMin() >= GetMax());
67 GetMin() <= range.GetMin() && range.GetMax() <= GetMax();
71 size_t min = std::max(GetMin(), range.GetMin());
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.h85 T GetMin() { function in class:webrtc::testing::bwe::Stats
103 GetMean(), units.c_str(), GetStdDev(), GetMin(), GetMax());
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless.c391 static WEBP_INLINE int GetMin(int a, int b) { return (a > b) ? b : a; } function
610 const int max_y = GetMin(tile_size, height - row_start);
611 const int max_x = GetMin(tile_size, width - col_start);
658 const int max_y = GetMin(tile_size, height - row_start);
659 const int max_x = GetMin(tile_size, width - col_start);
1068 const int all_x_max = GetMin(tile_x_offset + max_tile_size, xsize);
1069 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize);
1086 const int xscan = GetMin(max_tile_size, xsize - tile_x);
1087 int yscan = GetMin(max_tile_size, ysize - tile_y);
1111 const int all_x_max = GetMin(tile_x_offse
[all...]
/external/webp/src/dsp/
H A Dlossless.c391 static WEBP_INLINE int GetMin(int a, int b) { return (a > b) ? b : a; } function
601 const int max_y = GetMin(tile_size, height - row_start);
602 const int max_x = GetMin(tile_size, width - col_start);
649 const int max_y = GetMin(tile_size, height - row_start);
650 const int max_x = GetMin(tile_size, width - col_start);
1059 const int all_x_max = GetMin(tile_x_offset + max_tile_size, xsize);
1060 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize);
1077 const int xscan = GetMin(max_tile_size, xsize - tile_x);
1078 int yscan = GetMin(max_tile_size, ysize - tile_y);
1102 const int all_x_max = GetMin(tile_x_offse
[all...]

Completed in 1609 milliseconds