Searched defs:min (Results 1 – 6 of 6) sorted by relevance
62 static __number (_STLP_CALL min)() _STLP_NOTHROW { return __number(); } in __number()121 static _Int (_STLP_CALL min) () _STLP_NOTHROW { return (_Int)__imin; } in _Int()300 static _STLP_LONG_LONG (_STLP_CALL min) () _STLP_NOTHROW { return LONGLONG_MIN; } in _STLP_LONG_LONG()319 static unsigned _STLP_LONG_LONG (_STLP_CALL min) () _STLP_NOTHROW { return 0ULL; } in _STLP_LONG_LONG()
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) { in _Tp() argument
337 value_type (min) () const { in value_type() argument
94 # define __GNUC_PREREQ(maj, min) (0) argument
77 #define min(a,b) (((a) < (b)) ? a : b) macro
99 inline int min(int a, int b) { return a>b ? b : a; } in min() function