Symbol: max
bin/ed/ed.h
86
# define max(a,b) ((a) > (b) ? (a) : (b))
crypto/heimdal/lib/roken/roken-common.h
82
#define max(a,b) (((a)>(b))?(a):(b))
crypto/krb5/src/kdc/kdc_util.h
443
#define max(a, b) ((a) > (b) ? (a) : (b))
crypto/krb5/src/lib/krb5/os/localaddr.c
143
#define max(a,b) ((a) > (b) ? (a) : (b))
lib/libc/net/rcmd.c
61
#define max(a, b) ((a > b) ? a : b)
lib/libc/rpc/svc.c
66
#define max(a, b) (a > b ? a : b)
lib/libpmcstat/libpmcstat_image.c
53
#define max(A,B) ((A) > (B) ? (A) : (B))
lib/libvgl/main.c
44
#define max(x, y) (((x) > (y)) ? (x) : (y))
lib/libvgl/simple.c
47
#define max(x, y) (((x) > (y)) ? (x) : (y))
libexec/rtld-elf/powerpc/reloc.c
52
#define max(a,b) (((a) > (b)) ? (a) : (b))
libexec/talkd/announce.c
74
#define max(a,b) ( (a) > (b) ? (a) : (b) )
sbin/camcontrol/camcontrol.c
372
#define max(a,b) (((a)>(b))?(a):(b))
stand/libsa/stand.h
414
static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
sys/compat/linuxkpi/common/include/linux/minmax.h
42
#define max(x, y) ((x) > (y) ? (x) : (y))
sys/sys/libkern.h
92
static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c
59
#define max(a, b) (((a) > (b))? (a) : (b))
usr.bin/fortune/fortune/fortune.c
1053
max(int i, int j)
usr.bin/gprof/gprof.c
544
max(unsigned long a, unsigned long b)
usr.bin/m4/stdd.h
42
#define max(a,b) ((a) > (b)? (a): (b))
usr.bin/netstat/inet.c
79
#define max(a, b) (((a) > (b)) ? (a) : (b))
usr.bin/nl/nl.c
76
#define max(a, b) ((a) > (b) ? (a) : (b))
usr.bin/talk/display.c
59
max(int a, int b)
usr.sbin/bluetooth/bthidd/server.c
54
#undef max
usr.sbin/bluetooth/bthidd/server.c
55
#define max(x, y) (((x) > (y))? (x) : (y))
usr.sbin/cxgbetool/cxgbetool.c
58
#define max(x, y) ((x) > (y) ? (x) : (y))
usr.sbin/pmcstat/pmcpl_callgraph.c
77
#define max(A,B) ((A) > (B) ? (A) : (B))
usr.sbin/pmcstat/pmcpl_calltree.c
61
#define max(A,B) ((A) > (B) ? (A) : (B))
usr.sbin/pmcstat/pmcpl_gprof.c
79
#define max(A,B) ((A) > (B) ? (A) : (B))
usr.sbin/repquota/repquota.c
68
#define max(a,b) ((a) >= (b) ? (a) : (b))