Symbol: max
headers/cpp/std/std_valarray.h
547
valarray<_Tp>::max() const
headers/cpp/std/valarray_meta.h
738
max (const _Expr<_Dom,_Tp>& __e)
headers/cpp/stl_algobase.h
108
inline const _Tp& max(const _Tp& __a, const _Tp& __b, _Compare __comp) {
headers/cpp/stl_algobase.h
88
#undef max
headers/cpp/stl_algobase.h
96
inline const _Tp& max(const _Tp& __a, const _Tp& __b) {
headers/os/support/SupportDefs.h
211
# define max(a,b) ((a)>(b)?(a):(b))
src/add-ons/kernel/file_systems/fat/fssh_defines.h
36
#define max(a, b) ((a) > (b) ? (a) : (b))
src/add-ons/kernel/file_systems/netfs/headers/shared/Utils.h
17
template<typename T> T max(const T& a, const T& b) { return (a > b ? a : b); }
src/add-ons/kernel/file_systems/ntfs/libntfs/support.h
53
#define max(a,b) ((a) >= (b) ? (a) : (b))
src/add-ons/kernel/file_systems/ramfs/Misc.h
17
static inline C max(const C &a, const C &b) { return (a > b ? a : b); }
src/add-ons/kernel/file_systems/reiserfs/Iterators.cpp
39
static inline C max(const C &a, const C &b) { return (a > b ? a : b); }
src/add-ons/kernel/file_systems/reiserfs/Volume.cpp
53
static inline C max(const C &a, const C &b) { return (a > b ? a : b); }
src/add-ons/media/media-add-ons/mixer/MixerUtils.h
13
template<class t> const t & max(const t &t1, const t &t2) { return (t1 > t2) ? t1 : t2; }
src/add-ons/media/plugins/ape_reader/MAClib/NoWindows.h
43
#define max(a,b) (((a) > (b)) ? (a) : (b))
src/add-ons/translators/shared/StreamBuffer.cpp
19
#define max(x,y) (((x) > (y)) ? (x) : (y))
src/libs/uuid/gen_uuid.c
176
#define max(a,b) ((a) > (b) ? (a) : (b))
src/tools/translation/stxtinfo/stxtinfo.cpp
58
#define max(x,y) ((x > y) ? x : y)
src/tools/translation/tgainfo/tgainfo.cpp
47
#define max(x,y) ((x > y) ? x : y)