/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
H A D | functexcept.cc | 65 __throw_logic_error(const char* __s __attribute__((unused))) in __throw_logic_error() 69 __throw_domain_error(const char* __s __attribute__((unused))) in __throw_domain_error() 73 __throw_invalid_argument(const char* __s __attribute__((unused))) in __throw_invalid_argument() 77 __throw_length_error(const char* __s __attribute__((unused))) in __throw_length_error() 81 __throw_out_of_range(const char* __s __attribute__((unused))) in __throw_out_of_range() 91 char *const __s = static_cast<char*>(__builtin_alloca(__alloca_size)); in __throw_out_of_range_fmt() local 101 __throw_runtime_error(const char* __s __attribute__((unused))) in __throw_runtime_error() 105 __throw_range_error(const char* __s __attribute__((unused))) in __throw_range_error() 109 __throw_overflow_error(const char* __s __attribute__((unused))) in __throw_overflow_error() 113 __throw_underflow_error(const char* __s __attribute__((unused))) in __throw_underflow_error()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
H A D | functexcept.cc | 69 __throw_logic_error(const char* __s __attribute__((unused))) in __throw_logic_error() 73 __throw_domain_error(const char* __s __attribute__((unused))) in __throw_domain_error() 77 __throw_invalid_argument(const char* __s __attribute__((unused))) in __throw_invalid_argument() 81 __throw_length_error(const char* __s __attribute__((unused))) in __throw_length_error() 85 __throw_out_of_range(const char* __s __attribute__((unused))) in __throw_out_of_range() 96 char *const __s = static_cast<char*>(__builtin_alloca(__alloca_size)); in __throw_out_of_range_fmt() local 109 __throw_runtime_error(const char* __s __attribute__((unused))) in __throw_runtime_error() 113 __throw_range_error(const char* __s __attribute__((unused))) in __throw_range_error() 117 __throw_overflow_error(const char* __s __attribute__((unused))) in __throw_overflow_error() 121 __throw_underflow_error(const char* __s __attribute__((unused))) in __throw_underflow_error()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | string.h | 73 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);} in __libcpp_strchr() 75 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);} in strchr() 77 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);} in strchr() 87 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);} in __libcpp_strrchr() 89 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);} in strrchr() 91 char* strrchr( char* __s, int __c) {return __libcpp_strrchr(__s, __c);} in strrchr() 94 void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);} in __libcpp_memchr() 96 const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} in memchr() 98 void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} in memchr()
|
H A D | wchar.h | 137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} in __libcpp_wcschr() 139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr() 141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr() 151 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} in __libcpp_wcsrchr() 153 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr() 155 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr() 165 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__… in __libcpp_wmemchr() 167 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, _… in wmemchr() 169 …wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, _… in wmemchr()
|
H A D | __bsd_locale_fallbacks.h | 56 size_t __libcpp_wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) in __libcpp_wcrtomb_l() 71 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, in __libcpp_mbrtowc_l() 86 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) in __libcpp_mbrlen_l() 108 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { in __libcpp_snprintf_l() 118 int __libcpp_asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in __libcpp_asprintf_l() 128 int __libcpp_sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in __libcpp_sscanf_l()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
H A D | riemann_zeta.tcc | 80 __riemann_zeta_sum(_Tp __s) in __riemann_zeta_sum() 117 __riemann_zeta_alt(_Tp __s) in __riemann_zeta_alt() 159 __riemann_zeta_glob(_Tp __s) in __riemann_zeta_glob() 254 __riemann_zeta_product(_Tp __s) in __riemann_zeta_product() 295 __riemann_zeta(_Tp __s) in __riemann_zeta() 367 __hurwitz_zeta_glob(_Tp __a, _Tp __s) in __hurwitz_zeta_glob() 432 __hurwitz_zeta(_Tp __a, _Tp __s) in __hurwitz_zeta()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
H A D | riemann_zeta.tcc | 80 __riemann_zeta_sum(_Tp __s) in __riemann_zeta_sum() 117 __riemann_zeta_alt(_Tp __s) in __riemann_zeta_alt() 159 __riemann_zeta_glob(_Tp __s) in __riemann_zeta_glob() 254 __riemann_zeta_product(_Tp __s) in __riemann_zeta_product() 295 __riemann_zeta(_Tp __s) in __riemann_zeta() 367 __hurwitz_zeta_glob(_Tp __a, _Tp __s) in __hurwitz_zeta_glob() 432 __hurwitz_zeta(_Tp __a, _Tp __s) in __hurwitz_zeta()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/ |
H A D | c_locale.cc | 49 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 76 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 103 __convert_to_v(const char* __s, long double& __v, ios_base::iostate& __err, in __convert_to_v() 129 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale() 153 locale::facet::_S_lc_ctype_c_locale(__c_locale __cloc, const char* __s) in _S_lc_ctype_c_locale()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/ |
H A D | c_locale.cc | 49 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 76 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 103 __convert_to_v(const char* __s, long double& __v, ios_base::iostate& __err, in __convert_to_v() 129 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale() 153 locale::facet::_S_lc_ctype_c_locale(__c_locale __cloc, const char* __s) in _S_lc_ctype_c_locale()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/ |
H A D | time_members.cc | 42 _M_put(char* __s, size_t __maxlen, const char* __format, in _M_put() 198 _M_put(wchar_t* __s, size_t __maxlen, const wchar_t* __format, in _M_put() 291 union { char *__s; wchar_t *__w; } __u; in _M_initialize_timepunct() member
|
H A D | c_locale.cc | 46 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 73 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 100 __convert_to_v(const char* __s, long double& __v, ios_base::iostate& __err, in __convert_to_v() 132 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale() 156 locale::facet::_S_lc_ctype_c_locale(__c_locale __cloc, const char* __s) in _S_lc_ctype_c_locale()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/ |
H A D | time_members.cc | 42 _M_put(char* __s, size_t __maxlen, const char* __format, in _M_put() 198 _M_put(wchar_t* __s, size_t __maxlen, const wchar_t* __format, in _M_put() 291 union { char *__s; wchar_t *__w; } __u; in _M_initialize_timepunct() member
|
H A D | c_locale.cc | 46 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 73 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 100 __convert_to_v(const char* __s, long double& __v, ios_base::iostate& __err, in __convert_to_v() 132 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale() 156 locale::facet::_S_lc_ctype_c_locale(__c_locale __cloc, const char* __s) in _S_lc_ctype_c_locale()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/solaris/ |
H A D | xlocale.cpp | 27 #define vsnprintf_l(__s, __n, __l, __format, __va) \ argument 30 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) in snprintf_l() 39 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in asprintf_l() 48 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in sscanf_l()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | basic_string.tcc | 59 swap(basic_string& __s) _GLIBCXX_NOEXCEPT in swap() 311 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s, in _M_mutate() 360 _M_append(const _CharT* __s, size_type __n) in _M_append() 386 const basic_string __s(__k1, __k2, this->get_allocator()); in _M_replace_dispatch() local 424 _M_replace(size_type __pos, size_type __len1, const _CharT* __s, in _M_replace() 477 copy(_CharT* __s, size_type __n, size_type __pos) const in copy() 1191 find(const _CharT* __s, size_type __pos, size_type __n) const in find() argument 1245 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() argument 1284 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() argument 1300 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_of() argument [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
H A D | vstring.tcc | 63 _M_append(const _CharT* __s, size_type __n) in _M_append() 88 const __versa_string __s(__k1, __k2); in _M_replace_dispatch() local 128 _M_replace(size_type __pos, size_type __len1, const _CharT* __s, in _M_replace() 255 copy(_CharT* __s, size_type __n, size_type __pos) const in copy() 270 find(const _CharT* __s, size_type __pos, size_type __n) const in find() argument 313 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() argument 353 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() argument 370 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_of() argument 392 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_not_of() argument 417 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() argument [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
H A D | vstring.tcc | 63 _M_append(const _CharT* __s, size_type __n) in _M_append() 88 const __versa_string __s(__k1, __k2); in _M_replace_dispatch() local 128 _M_replace(size_type __pos, size_type __len1, const _CharT* __s, in _M_replace() 255 copy(_CharT* __s, size_type __n, size_type __pos) const in copy() 270 find(const _CharT* __s, size_type __pos, size_type __n) const in find() argument 313 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() argument 353 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() argument 370 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_of() argument 392 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_not_of() argument 417 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() argument [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/ |
H A D | c_locale.cc | 59 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 124 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 169 __convert_to_v(const char* __s, long double& __v, in __convert_to_v() 220 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/ |
H A D | c_locale.cc | 75 __convert_to_v(const char* __s, float& __v, ios_base::iostate& __err, in __convert_to_v() 141 __convert_to_v(const char* __s, double& __v, ios_base::iostate& __err, in __convert_to_v() 187 __convert_to_v(const char* __s, long double& __v, in __convert_to_v() 239 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
H A D | istream.cc | 38 getline(char_type* __s, streamsize __n, char_type __delim) in getline() 199 operator>>(basic_istream<char>& __in, char* __s) in operator >>() 282 getline(char_type* __s, streamsize __n, char_type __delim) in getline()
|
H A D | localename.cc | 35 locale::locale(const char* __s) : _M_impl(0) in locale() 144 locale::locale(const locale& __base, const char* __s, category __cat) in locale() 179 _Impl(const char* __s, size_t __refs) in _Impl()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
H A D | istream.cc | 38 getline(char_type* __s, streamsize __n, char_type __delim) in getline() 210 __istream_extract(istream& __in, char* __s, streamsize __num) in __istream_extract() 293 getline(char_type* __s, streamsize __n, char_type __delim) in getline()
|
H A D | localename.cc | 39 locale::locale(const char* __s) : _M_impl(0) in locale() 148 locale::locale(const locale& __base, const char* __s, category __cat) in locale() 191 _Impl(const char* __s, size_t __refs) in _Impl()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | basic_string.tcc | 60 swap(basic_string& __s) _GLIBCXX_NOEXCEPT in swap() 326 _M_mutate(size_type __pos, size_type __len1, const _CharT* __s, in _M_mutate() 414 _M_append(const _CharT* __s, size_type __n) in _M_append() 441 const basic_string __s(__k1, __k2, this->get_allocator()); in _M_replace_dispatch() local 481 _M_replace(size_type __pos, size_type __len1, const _CharT* __s, in _M_replace() 557 copy(_CharT* __s, size_type __n, size_type __pos) const in copy() 659 find(const _CharT* __s, size_type __pos, size_type __n) const in find() argument 715 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() argument 756 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() argument 773 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_of() argument [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/ |
H A D | uninitialized_algorithms.h | 34 _ForwardIterator __s = __r; in uninitialized_copy() local 58 _ForwardIterator __s = __r; in uninitialized_copy_n() local 82 _ForwardIterator __s = __f; in uninitialized_fill() local 105 _ForwardIterator __s = __f; in uninitialized_fill_n() local
|