MAX 57 base/third_party/xdg_mime/xdgmimecache.c #define MAX(a,b) ((a) > (b) ? (a) : (b)) MAX 78 third_party/harfbuzz-ng/src/hb-private.hh #undef MAX MAX 80 third_party/harfbuzz-ng/src/hb-private.hh static inline Type MAX (const Type &a, const Type &b) { return a > b ? a : b; } MAX 266 third_party/libjpeg/jpegint.h #undef MAX MAX 267 third_party/libjpeg/jpegint.h #define MAX(a,b) ((a) > (b) ? (a) : (b)) MAX 148 third_party/libusb/src/libusb/libusbi.h #define MAX(a, b) ((a) > (b) ? (a) : (b)) MAX 124567 third_party/sqlite/amalgamation/sqlite3.c # define MAX(x,y) ((x) < (y) ? (y) : (x)) MAX 29 third_party/sqlite/src/ext/async/sqlite3async.c #define MAX(x,y) ((x)>(y)?(x):(y)) MAX 310 third_party/sqlite/src/ext/rtree/rtree.c # define MAX(x,y) ((x) < (y) ? (y) : (x)) MAX 251 third_party/sqlite/src/src/test_onefile.c #define MAX(x,y) ((x)>(y)?(x):(y)) MAX 603 third_party/talloc/libreplace/replace.h #define MAX(a,b) ((a)>(b)?(a):(b)) MAX 201 third_party/talloc/libreplace/snprintf.c #define MAX(p,q) (((p) >= (q)) ? (p) : (q))