Symbol: MIN
headers/posix/sys/param.h
21
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
headers/private/firewire/firewirereg.h
410
#define MIN(a,b) (((a)<(b))?(a):(b))
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/sample/sample.h
118
#define MIN(a,b) ((a) < (b) ? (a) : (b))
src/add-ons/kernel/file_systems/fat/fssh_defines.h
28
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
src/apps/poorman/libhttpd/libhttpd.c
120
#define MIN(a,b) ((a) < (b) ? (a) : (b))
src/apps/poorman/libhttpd/libhttpd.h
52
#define MIN(a,b) ((a) < (b) ? (a) : (b))
src/bin/network/telnet/ring.c
69
#define MIN(a,b) (((a)<(b))? (a):(b))
src/bin/unzip/unzpriv.h
2086
# define MIN(a,b) ((a) < (b) ? (a) : (b))
src/build/libgnuregex/regex.c
228
#define MIN(a, b) ((a) < (b) ? (a) : (b))
src/libs/glut/glutint.h
202
#define MIN 7
src/libs/nvmm/libnvmm_x86.c
39
#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
src/system/libnetwork/netresolv/port_after.h
11
#define MIN(x,y) (((x) <= (y)) ? (x) : (y))
src/system/libroot/posix/glibc/regex/regex_internal.h
515
# define MIN(a,b) ((a) < (b) ? (a) : (b))
src/system/libroot/posix/glibc/stdio-common/printf_fphex.c
84
# define MIN(a,b) ((a)<(b)?(a):(b))
src/system/libroot/posix/glibc/stdlib/gmp-impl.h
70
#define MIN(l,o) ((l) < (o) ? (l) : (o))
src/system/libroot/posix/musl/string/memmem.c
32
#define MIN(a,b) ((a)<(b)?(a):(b))
src/system/libroot/posix/musl/string/strstr.c
28
#define MIN(a,b) ((a)<(b)?(a):(b))
src/system/libroot/posix/stdlib/qsort.c
50
#define MIN(a, b) ((a) < (b) ? a : b)