Searched refs:GetMax (Results 1 – 14 of 14) sorted by relevance
/external/libchrome/ui/gfx/range/ |
D | range_f.h | 47 constexpr float length() const { return GetMax() - GetMin(); } in length() 54 constexpr float GetMax() const { return start() > end() ? start() : end(); } in GetMax() function 63 return GetMin() == other.GetMin() && GetMax() == other.GetMax(); in EqualsIgnoringDirection() 69 !(range.GetMax() < GetMin() || range.GetMin() >= GetMax()); in Intersects() 75 range.GetMax() <= GetMax(); in Contains()
|
D | range.h | 73 constexpr uint32_t length() const { return GetMax() - GetMin(); } in length() 82 constexpr uint32_t GetMax() const { in GetMax() function 93 return GetMin() == other.GetMin() && GetMax() == other.GetMax(); in EqualsIgnoringDirection() 99 !(range.GetMax() < GetMin() || range.GetMin() >= GetMax()); in Intersects() 105 range.GetMax() <= GetMax(); in Contains()
|
D | range_unittest.cc | 61 EXPECT_EQ(0U, r.GetMax()); in TYPED_TEST() 73 EXPECT_EQ(15U, r.GetMax()); in TYPED_TEST() 85 EXPECT_EQ(10U, r.GetMax()); in TYPED_TEST() 97 EXPECT_EQ(12U, r.GetMax()); in TYPED_TEST() 104 EXPECT_EQ(r.GetMax(), r.GetMin()); in TYPED_TEST() 168 EXPECT_EQ(5U, r.GetMax()); in TYPED_TEST() 179 EXPECT_EQ(10U, r.GetMax()); in TYPED_TEST() 197 EXPECT_EQ(25U, r.GetMax()); in TYPED_TEST()
|
D | range.cc | 18 uint32_t max = std::min(GetMax(), range.GetMax()); in Intersect()
|
D | range_f.cc | 19 float max = std::min(GetMax(), range.GetMax()); in Intersect()
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_occur.cpp | 42 int32_t CXFA_Occur::GetMax() { in GetMax() function in CXFA_Occur 54 int32_t iMax = GetMax(); in GetOccurInfo() 76 int32_t iMax = GetMax(); in SetMin()
|
D | cxfa_occur.h | 22 int32_t GetMax();
|
D | cxfa_itemlayoutprocessor.cpp | 2833 pTemplate->GetFirstChildByClass<CXFA_Occur>(XFA_Element::Occur)->GetMax(); in JudgeLeaderOrTrailerForOccur()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_instancemanager.cpp | 43 int32_t iMax = occur ? occur->GetMax() : CXFA_Occur::kDefaultMax; in SetInstances() 224 int32_t iMax = occur ? occur->GetMax() : CXFA_Occur::kDefaultMax; in addInstance() 269 int32_t iMax = occur ? occur->GetMax() : CXFA_Occur::kDefaultMax; in insertInstance() 305 pValue->SetInteger(occur ? occur->GetMax() : CXFA_Occur::kDefaultMax); in max()
|
D | cjx_occur.cpp | 23 pValue->SetInteger(occur->GetMax()); in max()
|
/external/webp/src/enc/ |
D | predictor_enc.c | 93 static WEBP_INLINE int GetMax(int a, int b) { return (a < b) ? b : a; } in GetMax() function 100 return GetMax(GetMax(diff_a, diff_r), GetMax(diff_g, diff_b)); in MaxDiffBetweenPixels() 109 return GetMax(GetMax(diff_up, diff_down), GetMax(diff_left, diff_right)); in MaxDiffAroundPixel()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_framework_unittest.cc | 134 EXPECT_EQ(0, stats.GetMax()); in TEST() 138 EXPECT_EQ(1, stats.GetMax()); in TEST() 142 EXPECT_EQ(3, stats.GetMax()); in TEST() 146 EXPECT_EQ(3, stats.GetMax()); in TEST()
|
D | bwe_test_framework.h | 134 T GetMax() { in GetMax() function 148 GetMean(), units.c_str(), GetStdDev(), GetMin(), GetMax()); in Log()
|
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/ |
D | datastore_v3.pb.go | 2593 func (m *AllocateIdsRequest) GetMax() int64 { func
|