Searched refs:max_v (Results 1 – 3 of 3) sorted by relevance
878 int max_v = (v1 > v0) ? v1 : v0; in StoreMaxDelta() local879 max_v = (v2 > max_v) ? v2 : max_v; in StoreMaxDelta()880 if (max_v > dqm->max_edge_) dqm->max_edge_ = max_v; in StoreMaxDelta()
811 FT_Pos min_u, min_v, max_u, max_v; in af_latin2_hints_compute_segments() local819 min_v = max_v = point->v; in af_latin2_hints_compute_segments()837 if ( point->v > max_v ) in af_latin2_hints_compute_segments()838 max_v = point->v; in af_latin2_hints_compute_segments()851 segment->max_coord = (FT_Short) max_v; in af_latin2_hints_compute_segments()852 segment->height = (FT_Short)( max_v - min_v ); in af_latin2_hints_compute_segments()
589 static WEBP_INLINE int clip(int v, int min_v, int max_v) { in clip() argument590 return (v < min_v) ? min_v : (v > max_v) ? max_v : v; in clip()