Searched refs:__max (Results 1 – 8 of 8) sorted by relevance
/external/clang/test/CodeGen/ |
D | fold-const-declref.c | 7 const int __max = __negative && 0 ; in main() local 8 …__max / 0; // expected-warning{{expression result unused}} expected-warning{{division by zero is … in main()
|
/external/compiler-rt/lib/builtins/ |
D | int_math.h | 85 #define crt_fmax(x, y) __max((x), (y)) 86 #define crt_fmaxf(x, y) __max((x), (y)) 87 #define crt_fmaxl(x, y) __max((x), (y))
|
/external/libcxx/src/support/solaris/ |
D | xlocale.c | 58 size_t __max, mbstate_t *__ps, locale_t __loc) { in mbrtowc_l() argument 59 return mbrtowc(__pwc, __pmb, __max, __ps); in mbrtowc_l()
|
/external/flac/libFLAC/include/private/ |
D | macros.h | 60 #define flac_max(a,b) __max(a,b)
|
/external/libcxx/include/ |
D | limits | 210 static _LIBCPP_CONSTEXPR const type __max = is_signed ? type(type(~0) ^ __min) : type(~0); 212 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __max;} 262 static _LIBCPP_CONSTEXPR const type __max = true; 264 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __max;}
|
D | regex | 1542 size_t __max = numeric_limits<size_t>::max()) 1543 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id), 2811 void __push_loop(size_t __min, size_t __max, __owns_one_state<_CharT>* __s, 3533 int __max = -1; 3534 __first = __parse_DUP_COUNT(__first, __last, __max); 3538 if (__max == -1) 3542 if (__max < __min) 3544 __push_loop(__min, __max, __s, __mexp_begin, __mexp_end, 3637 int __max = -1; 3638 __temp = __parse_DUP_COUNT(__first, __last, __max); [all …]
|
D | type_traits | 1129 static const size_t __max = _A1 < _A2 ? _A2 : _A1; 1131 static const size_t value = _Len < __max ? __min : __max;
|
D | locale | 327 int __mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l) 330 return mbtowc_l(__pwc, __pmb, __max, __l); 333 return mbtowc(__pwc, __pmb, __max);
|