Lines Matching +full:x +full:- +full:max
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
55 /****d* Component Library: Math/MAX
57 * MAX
60 * The MAX macro returns the greater of two values.
63 * MAX( x, y );
66 * x
73 * Returns the greater of the x and y parameters.
78 #ifndef MAX
79 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
89 * MIN( x, y );
92 * x
99 * Returns the lesser of the x and y parameters.
102 * MAX, ROUNDUP
105 #define MIN(x,y) ((x) < (y) ? (x) : (y)) argument