Searched refs:max_v (Results 1 – 6 of 6) sorted by relevance
25 TEST_CONSTEXPR bool test(IntType max_v = IntType(std::numeric_limits<UnderlyingType>::max())) { in test() argument26 return std::__half_positive(max_v) == max_v / 2; in test()
26 TEST_CONSTEXPR bool test(IntType max_v = IntType(std::numeric_limits<UnderlyingType>::max())) { in test() argument27 return std::__half_positive(max_v) == max_v / 2; in test()
960 int max_v = (v1 > v0) ? v1 : v0; in StoreMaxDelta() local961 max_v = (v2 > max_v) ? v2 : max_v; in StoreMaxDelta()962 if (max_v > dqm->max_edge_) dqm->max_edge_ = max_v; in StoreMaxDelta()
815 FT_Pos min_u, min_v, max_u, max_v; in af_latin2_hints_compute_segments() local823 min_v = max_v = point->v; in af_latin2_hints_compute_segments()841 if ( point->v > max_v ) in af_latin2_hints_compute_segments()842 max_v = point->v; in af_latin2_hints_compute_segments()855 segment->max_coord = (FT_Short) max_v; in af_latin2_hints_compute_segments()856 segment->height = (FT_Short)( max_v - min_v ); in af_latin2_hints_compute_segments()
691 max_v = req.range[1] # maximum supported version694 sm = _compare_versions(ver, max_v)["smaller"] # `ver` should be smaller
590 static WEBP_INLINE int clip(int v, int min_v, int max_v) { in clip() argument591 return (v < min_v) ? min_v : (v > max_v) ? max_v : v; in clip()