Go to the source code of this file.
|
| #define | MIN(X, Y) (((X) < (Y)) ? (X) : (Y)) /* Return the minimum value between X and Y */ |
| |
| #define | MAX(X, Y) (((X) > (Y)) ? (X) : (Y)) /* Return the maximum value between X and Y */ |
| |
| #define | likely(x) __builtin_expect((x), 1) |
| |
| #define | unlikely(x) __builtin_expect((x), 0) |
| |
◆ likely
| #define likely |
( |
|
x | ) |
__builtin_expect((x), 1) |
◆ MAX
| #define MAX |
( |
|
X, |
|
|
|
Y |
|
) |
| (((X) > (Y)) ? (X) : (Y)) /* Return the maximum value between X and Y */ |
◆ MIN
| #define MIN |
( |
|
X, |
|
|
|
Y |
|
) |
| (((X) < (Y)) ? (X) : (Y)) /* Return the minimum value between X and Y */ |
◆ unlikely
| #define unlikely |
( |
|
x | ) |
__builtin_expect((x), 0) |