Lines Matching +full:y +full:- +full:min
3 * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
16 * - Redistributions of source code must retain the above
20 * - Redistributions in binary form must reproduce the above
63 * MAX( x, y );
69 * y
73 * Returns the greater of the x and y parameters.
76 * MIN, ROUNDUP
79 #define MAX(x,y) ((x) > (y) ? (x) : (y)) argument
81 /****d* Component Library: Math/MIN
83 * MIN
86 * The MIN macro returns the greater of two values.
89 * MIN( x, y );
95 * y
99 * Returns the lesser of the x and y parameters.
104 #ifndef MIN
105 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro