HomeSort by: relevance | last modified time | path
    Searched refs:__base (Results 1 - 25 of 76) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/libcxx/include/__support/solaris/
xlocale.h 37 int __base, locale_t __loc) {
38 return strtoll(__nptr, __endptr, __base);
42 int __base, locale_t __loc) {
43 return strtol(__nptr, __endptr, __base);
47 int __base, locale_t __loc) {
48 return strtoull(__nptr, __endptr, __base);
52 int __base, locale_t __loc) {
53 return strtoul(__nptr, __endptr, __base);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
ios_base.h 941 boolalpha(ios_base& __base)
943 __base.setf(ios_base::boolalpha);
944 return __base;
949 noboolalpha(ios_base& __base)
951 __base.unsetf(ios_base::boolalpha);
952 return __base;
957 showbase(ios_base& __base)
959 __base.setf(ios_base::showbase);
960 return __base;
965 noshowbase(ios_base& __base)
    [all...]
charconv.h 55 __to_chars_len(_Tp __value, int __base = 10) noexcept
62 const unsigned __b2 = __base * __base;
63 const unsigned __b3 = __b2 * __base;
64 const unsigned long __b4 = __b3 * __base;
67 if (__value < (unsigned)__base) return __n;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
ios_base.h 921 boolalpha(ios_base& __base)
923 __base.setf(ios_base::boolalpha);
924 return __base;
929 noboolalpha(ios_base& __base)
931 __base.unsetf(ios_base::boolalpha);
932 return __base;
937 showbase(ios_base& __base)
939 __base.setf(ios_base::showbase);
940 return __base;
945 noshowbase(ios_base& __base)
    [all...]
charconv.h 47 __to_chars_len(_Tp __value, int __base = 10) noexcept
53 const unsigned __b2 = __base * __base;
54 const unsigned __b3 = __b2 * __base;
55 const unsigned long __b4 = __b3 * __base;
58 if (__value < (unsigned)__base) return __n;
  /src/crypto/external/apache2/openssl/dist/Configurations/platform/
BASE.pm 28 sub staticname { return __base($_[1], '.a') } # Name of static lib
41 sub def { return __base($_[1], '.ld') . $_[0]->defext() }
42 sub obj { return __base($_[1], '.o') . $_[0]->objext() }
43 sub res { return __base($_[1], '.res') . $_[0]->resext() }
44 sub dep { return __base($_[1], '.o') . $_[0]->depext() } # <- objname
45 sub asm { return __base($_[1], '.s') . $_[0]->asmext() }
68 # __base EXPR, LIST
70 sub __base { subroutine
  /src/crypto/external/bsd/openssl/dist/Configurations/platform/
BASE.pm 28 sub staticname { return __base($_[1], '.a') } # Name of static lib
41 sub def { return __base($_[1], '.ld') . $_[0]->defext() }
42 sub obj { return __base($_[1], '.o') . $_[0]->objext() }
43 sub res { return __base($_[1], '.res') . $_[0]->resext() }
44 sub dep { return __base($_[1], '.o') . $_[0]->depext() } # <- objname
45 sub asm { return __base($_[1], '.s') . $_[0]->asmext() }
68 # __base EXPR, LIST
70 sub __base { subroutine
  /src/external/apache2/llvm/dist/libcxx/src/
shared_mutex.cpp 108 shared_timed_mutex::shared_timed_mutex() : __base() {}
109 void shared_timed_mutex::lock() { return __base.lock(); }
110 bool shared_timed_mutex::try_lock() { return __base.try_lock(); }
111 void shared_timed_mutex::unlock() { return __base.unlock(); }
112 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); }
113 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); }
114 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); }
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm_mve.h 55 #define vstrbq_scatter_offset(__base, __offset, __value) __arm_vstrbq_scatter_offset(__base, __offset, __value)
58 #define vldrbq_gather_offset(__base, __offset) __arm_vldrbq_gather_offset(__base, __offset)
60 #define vstrbq_scatter_offset_p(__base, __offset, __value, __p) __arm_vstrbq_scatter_offset_p(__base, __offset, __value, __p)
62 #define vldrbq_gather_offset_z(__base, __offset, __p) __arm_vldrbq_gather_offset_z(__base, __offset, __p)
63 #define vldrhq_gather_offset(__base, __offset) __arm_vldrhq_gather_offset(__base, __offset
    [all...]
  /src/external/apache2/llvm/dist/libcxx/include/__support/android/
locale_bionic.h 55 int __base, locale_t) {
56 return ::strtol(__nptr, __endptr, __base);
  /src/external/apache2/llvm/dist/libcxx/include/__support/ibm/
xlocale.h 258 int __base, locale_t locale) {
260 return strtoll(__nptr, __endptr, __base);
265 int __base, locale_t locale) {
267 return strtol(__nptr, __endptr, __base);
293 int __base, locale_t locale) {
295 return strtoull(__nptr, __endptr, __base);
300 int __base, locale_t locale) {
302 return strtoul(__nptr, __endptr, __base);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
macros.h 348 __gnu_debug::__base(_First), \
349 __gnu_debug::__base(_Last)), \
360 __gnu_debug::__base(_First), \
361 __gnu_debug::__base(_Last), _Pred), \
371 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
372 __gnu_debug::__base(_Last1), _First2),\
381 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
382 __gnu_debug::__base(_Last1), \
394 __gnu_debug::__base(_First), \
395 __gnu_debug::__base(_Last), _Value),
    [all...]
stl_iterator.h 71 __base(const std::reverse_iterator<_Safe_iterator< function in namespace:__gnu_debug
142 __base(const std::move_iterator<_Iterator>& __it)
143 -> decltype(std::make_move_iterator(__base(__it.base())))
144 { return std::make_move_iterator(__base(__it.base())); }
safe_sequence.h 83 _After_nth_from(const difference_type& __n, const _Iterator& __base)
84 : _M_base(__base), _M_n(__n) { }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
macros.h 351 __gnu_debug::__base(_First), \
352 __gnu_debug::__base(_Last)), \
363 __gnu_debug::__base(_First), \
364 __gnu_debug::__base(_Last), _Pred), \
374 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
375 __gnu_debug::__base(_Last1), _First2),\
384 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
385 __gnu_debug::__base(_Last1), \
397 __gnu_debug::__base(_First), \
398 __gnu_debug::__base(_Last), _Value),
    [all...]
stl_iterator.h 71 __base(const std::reverse_iterator<_Safe_iterator< function in namespace:__gnu_debug
142 __base(const std::move_iterator<_Iterator>& __it)
143 -> decltype(std::make_move_iterator(__base(__it.base())))
144 { return std::make_move_iterator(__base(__it.base())); }
safe_sequence.h 83 _After_nth_from(const difference_type& __n, const _Iterator& __base)
84 : _M_base(__base), _M_n(__n) { }
  /src/external/gpl3/gcc/dist/gcc/config/i386/
avx2intrin.h 1252 _mm_i32gather_pd (double const *__base, __m128i __index, const int __scale)
1258 __base,
1266 _mm_mask_i32gather_pd (__m128d __src, double const *__base, __m128i __index,
1270 __base,
1278 _mm256_i32gather_pd (double const *__base, __m128i __index, const int __scale)
1284 __base,
1292 _mm256_mask_i32gather_pd (__m256d __src, double const *__base,
1296 __base,
1304 _mm_i64gather_pd (double const *__base, __m128i __index, const int __scale)
1310 __base,
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
avx2intrin.h 1252 _mm_i32gather_pd (double const *__base, __m128i __index, const int __scale)
1258 __base,
1266 _mm_mask_i32gather_pd (__m128d __src, double const *__base, __m128i __index,
1270 __base,
1278 _mm256_i32gather_pd (double const *__base, __m128i __index, const int __scale)
1284 __base,
1292 _mm256_mask_i32gather_pd (__m256d __src, double const *__base,
1296 __base,
1304 _mm_i64gather_pd (double const *__base, __m128i __index, const int __scale)
1310 __base,
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
string_conversions.h 58 _Base... __base)
82 const _TRet __tmp = __convf(__str, &__endptr, __base...);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
string_conversions.h 56 _Base... __base)
80 const _TRet __tmp = __convf(__str, &__endptr, __base...);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
localename.cc 155 locale::locale(const locale& __base, const char* __s, category __cat)
162 _M_coalesce(__base, __add, __cat);
165 locale::locale(const locale& __base, const locale& __add, category __cat)
167 { _M_coalesce(__base, __add, __cat); }
170 locale::_M_coalesce(const locale& __base, const locale& __add,
174 _M_impl = new _Impl(*__base._M_impl, 1);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
localename.cc 148 locale::locale(const locale& __base, const char* __s, category __cat)
155 _M_coalesce(__base, __add, __cat);
158 locale::locale(const locale& __base, const locale& __add, category __cat)
160 { _M_coalesce(__base, __add, __cat); }
163 locale::_M_coalesce(const locale& __base, const locale& __add,
167 _M_impl = new _Impl(*__base._M_impl, 1);
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
ttm_object.h 327 #define ttm_base_object_kfree(__object, __base)\
328 kfree_rcu(__object, __base.rhead)
  /src/sbin/ifconfig/
parse.h 121 #define PINTEGER_INITIALIZER1(__pi, __name, __min, __max, __base, \
130 .pi_base = (__base), \
134 #define PINTEGER_INITIALIZER(__pi, __name, __base, __defexec, __defkey, \
137 __base, __defexec, __defkey, __defnext)

Completed in 45 milliseconds

1 2 3 4