Home
last modified time | relevance | path

Searched refs:GetMax (Results 1 – 14 of 14) sorted by relevance

/external/libchrome/ui/gfx/range/
Drange_f.h47 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()
Drange.h73 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()
Drange_unittest.cc61 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()
Drange.cc18 uint32_t max = std::min(GetMax(), range.GetMax()); in Intersect()
Drange_f.cc19 float max = std::min(GetMax(), range.GetMax()); in Intersect()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_occur.cpp42 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()
Dcxfa_occur.h22 int32_t GetMax();
Dcxfa_itemlayoutprocessor.cpp2833 pTemplate->GetFirstChildByClass<CXFA_Occur>(XFA_Element::Occur)->GetMax(); in JudgeLeaderOrTrailerForOccur()
/external/pdfium/fxjs/xfa/
Dcjx_instancemanager.cpp43 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()
Dcjx_occur.cpp23 pValue->SetInteger(occur->GetMax()); in max()
/external/webp/src/enc/
Dpredictor_enc.c93 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/
Dbwe_test_framework_unittest.cc134 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()
Dbwe_test_framework.h134 T GetMax() { in GetMax() function
148 GetMean(), units.c_str(), GetStdDev(), GetMin(), GetMax()); in Log()
/external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
Ddatastore_v3.pb.go2593 func (m *AllocateIdsRequest) GetMax() int64 { func