Home | History | Annotate | Download | only in dsp

Lines Matching refs:GetMin

384 static WEBP_INLINE int GetMin(int a, int b) { return (a > b) ? b : a; }
564 const int max_y = GetMin(tile_size, height - row_start);
565 const int max_x = GetMin(tile_size, width - col_start);
967 const int all_x_max = GetMin(tile_x_offset + max_tile_size, xsize);
968 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize);
989 const int xscan = GetMin(max_tile_size, xsize - tile_x);
990 int yscan = GetMin(max_tile_size, ysize - tile_y);
1014 const int all_x_max = GetMin(tile_x_offset + max_tile_size, width);
1015 const int all_y_max = GetMin(tile_y_offset + max_tile_size, height);