Searched refs:GetMin (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/dsp/ |
D | lossless.c | 391 static WEBP_INLINE int GetMin(int a, int b) { return (a > b) ? b : a; } in GetMin() function 610 const int max_y = GetMin(tile_size, height - row_start); in GetBestPredictorForTile() 611 const int max_x = GetMin(tile_size, width - col_start); in GetBestPredictorForTile() 658 const int max_y = GetMin(tile_size, height - row_start); in CopyTileWithPrediction() 659 const int max_x = GetMin(tile_size, width - col_start); in CopyTileWithPrediction() 1068 const int all_x_max = GetMin(tile_x_offset + max_tile_size, xsize); in GetBestColorTransformForTile() 1069 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize); in GetBestColorTransformForTile() 1086 const int xscan = GetMin(max_tile_size, xsize - tile_x); in CopyTileWithColorTransform() 1087 int yscan = GetMin(max_tile_size, ysize - tile_y); in CopyTileWithColorTransform() 1111 const int all_x_max = GetMin(tile_x_offset + max_tile_size, width); in VP8LColorSpaceTransform() [all …]
|