Searched refs:__max (Results 1 – 11 of 11) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _threads.c | 58 unsigned _STLP_mutex_spin<__inst>::__max = _STLP_mutex_spin<__inst>::__low_max; 121 unsigned __my_spin_max = _STLP_mutex_spin<0>::__max; in _M_do_lock() 137 _STLP_mutex_spin<0>::__max = _STLP_mutex_spin<0>::__high_max; in _M_do_lock() 144 _STLP_mutex_spin<0>::__max = _STLP_mutex_spin<0>::__low_max; in _M_do_lock()
|
D | _codecvt.h | 105 size_t __max) const { 107 return do_length(__state, __from, __from_end, __max); 150 size_t __max) const 151 { return (int)(min) ( __STATIC_CAST(size_t, (__end - __from)), __max); } 222 size_t __max) const { in length() argument 224 return do_length(__state, __from, __from_end, __max); in length() 260 size_t __max) const; 319 size_t __max) const { in length() argument 321 return do_length(__state, __from, __from_end, __max); in length() 359 size_t __max) const; [all …]
|
D | _threads.h | 254 static unsigned __max; member
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
D | xlocale.c | 57 int mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l) { in mbtowc_l() argument 60 __pwc, __pmb, __max); in mbtowc_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 50 int mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l);
|
/ndk/tests/device/test-stlport/unit/ |
D | fstream_test.cpp | 677 size_t __max) const in length() 678 { return (int)min(static_cast<size_t>(__end - __from), __max); } in length()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | fstream_test.cpp | 677 size_t __max) const in length() 678 { return (int)min(static_cast<size_t>(__end - __from), __max); } in length()
|
/ndk/sources/cxx-stl/llvm-libc++/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 | 1527 size_t __max = numeric_limits<size_t>::max()) 1528 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id), 2798 void __push_loop(size_t __min, size_t __max, __owns_one_state<_CharT>* __s, 3540 int __max = -1; 3541 __first = __parse_DUP_COUNT(__first, __last, __max); 3547 if (__max == -1) 3552 if (__max < __min) 3555 __push_loop(__min, __max, __s, __mexp_begin, __mexp_end, 3654 int __max = -1; 3655 __temp = __parse_DUP_COUNT(__first, __last, __max); [all …]
|
D | type_traits | 1101 static const size_t __max = _A1 < _A2 ? _A2 : _A1; 1103 static const size_t value = _Len < __max ? __min : __max;
|
D | locale | 320 int __mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l) 323 return mbtowc_l(__pwc, __pmb, __max, __l); 326 return mbtowc(__pwc, __pmb, __max);
|