Home
last modified time | relevance | path

Searched defs:__c (Results 1 – 25 of 178) sorted by relevance

12345678

/openbsd-src/gnu/llvm/libcxx/include/__support/xlocale/
H A D__posix_l_fallback.h30 inline _LIBCPP_HIDE_FROM_ABI_C int isalnum_l(int __c, locale_t) { return ::isalnum(__c); } in isalnum_l()
32 inline _LIBCPP_HIDE_FROM_ABI_C int isalpha_l(int __c, locale_t) { return ::isalpha(__c); } in isalpha_l()
34 inline _LIBCPP_HIDE_FROM_ABI_C int isblank_l(int __c, locale_t) { return ::isblank(__c); } in isblank_l()
36 inline _LIBCPP_HIDE_FROM_ABI_C int iscntrl_l(int __c, locale_t) { return ::iscntrl(__c); } in iscntrl_l()
38 inline _LIBCPP_HIDE_FROM_ABI_C int isdigit_l(int __c, locale_t) { return ::isdigit(__c); } in isdigit_l()
40 inline _LIBCPP_HIDE_FROM_ABI_C int isgraph_l(int __c, locale_t) { return ::isgraph(__c); } in isgraph_l()
42 inline _LIBCPP_HIDE_FROM_ABI_C int islower_l(int __c, locale_t) { return ::islower(__c); } in islower_l()
44 inline _LIBCPP_HIDE_FROM_ABI_C int isprint_l(int __c, locale_t) { return ::isprint(__c); } in isprint_l()
46 inline _LIBCPP_HIDE_FROM_ABI_C int ispunct_l(int __c, locale_t) { return ::ispunct(__c); } in ispunct_l()
48 inline _LIBCPP_HIDE_FROM_ABI_C int isspace_l(int __c, locale_t) { return ::isspace(__c); } in isspace_l()
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__compare/
H A Dis_eq.h23 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_eq(partial_ordering __c) noexcept { return __c == 0;… in is_eq()
24 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_neq(partial_ordering __c) noexcept { return __c != 0… in is_neq()
25 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_lt(partial_ordering __c) noexcept { return __c < 0; } in is_lt()
26 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_lteq(partial_ordering __c) noexcept { return __c <= … in is_lteq()
27 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_gt(partial_ordering __c) noexcept { return __c > 0; } in is_gt()
28 _LIBCPP_HIDE_FROM_ABI inline constexpr bool is_gteq(partial_ordering __c) noexcept { return __c >= … in is_gteq()
/openbsd-src/gnu/llvm/libcxx/include/
H A Dwchar.h143 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} in __libcpp_wcschr()
145 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
147 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
157 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} in __libcpp_wcsrchr()
159 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
161 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
171 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__… in __libcpp_wmemchr()
173 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, _… in wmemchr()
175 …wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, _… in wmemchr()
H A Dstring.h74 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c in strchr()
77 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr()
88 …ne _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __c) { in strrchr()
91 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr()
95 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c in memchr()
98 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n… in memchr()
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dctype.cc56 const char* __c = _M_cctype.is(reinterpret_cast<const char*>(__lo), in do_is() local
64 const char* __c = _M_cctype.scan_is(__m, in do_scan_is() local
73 const char* __c = _M_cctype.scan_is(__m, in do_scan_not() local
86 const char* __c = _M_cctype.toupper(reinterpret_cast<char*>(__lo), in do_toupper() local
98 const char* __c = _M_cctype.toupper(reinterpret_cast<char*>(__lo), in do_tolower() local
110 const char* __c = _M_cctype.widen(reinterpret_cast<const char*>(__lo), in do_widen() local
117 do_narrow(char_type __c, char __dfault) const in do_narrow()
124 const char* __c = _M_cctype.narrow(reinterpret_cast<const char*>(__lo), in do_narrow() local
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/
H A Dstdio_sync_filebuf.h98 int_type __c = this->syncgetc(); in _GLIBCXX_BEGIN_NAMESPACE() local
194 stdio_sync_filebuf<char>::syncungetc(int_type __c) in syncungetc()
199 stdio_sync_filebuf<char>::syncputc(int_type __c) in syncputc()
227 stdio_sync_filebuf<wchar_t>::syncungetc(int_type __c) in syncungetc()
232 stdio_sync_filebuf<wchar_t>::syncputc(int_type __c) in syncputc()
243 int_type __c = this->syncgetc(); in xsgetn() local
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstreambuf.tcc54 char_type __c = *(this->gptr()); in sbumpc() local
66 sputbackc(char_type __c) in sputbackc()
104 sputc(char_type __c) in sputc()
139 int_type __c = this->uflow(); in xsgetn() local
178 int_type __c = this->overflow(traits_type::to_int_type(*__s)); in xsputn() local
202 typename _Traits::int_type __c = __sbin->sgetc(); in __copy_streambufs() local
H A Distream.tcc55 __int_type __c = __sb->sgetc(); in sentry() local
455 int_type __c = __eof; in get() local
483 get(char_type& __c) in get()
527 int_type __c = __sb->sgetc(); in get() local
566 int_type __c = __this_sb->sgetc(); in get() local
605 int_type __c = __sb->sgetc(); in getline() local
653 int_type __c; in ignore() local
679 int_type __c = traits_type::eof(); in peek() local
757 putback(char_type __c) in putback()
920 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) in operator >>() argument
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__iterator/
H A Daccess.h96 begin(_Cp& __c) in begin()
104 begin(const _Cp& __c) in begin()
112 end(_Cp& __c) in end()
120 end(const _Cp& __c) in end()
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Distream.tcc64 __int_type __c = __sb->sgetc(); in _GLIBCXX_BEGIN_NAMESPACE() local
185 int_type __c = __eof; in get() local
213 get(char_type& __c) in get()
257 int_type __c = __sb->sgetc(); in get() local
299 int_type __c = __this_sb->sgetc(); in get() local
338 int_type __c = __sb->sgetc(); in getline() local
420 int_type __c = __sb->sgetc(); in ignore() local
476 int_type __c = __sb->sgetc(); in ignore() local
525 int_type __c = traits_type::eof(); in peek() local
599 putback(char_type __c) in putback()
[all …]
H A Dlocale_facets.h164 is(mask __m, char_type __c) const in is()
227 toupper(char_type __c) const in toupper()
256 tolower(char_type __c) const in tolower()
288 widen(char __c) const in widen()
326 narrow(char_type __c, char __dfault) const in narrow()
797 toupper(char_type __c) const in toupper()
830 tolower(char_type __c) const in tolower()
867 widen(char __c) const in widen()
925 narrow(char_type __c, char __dfault) const in narrow()
1075 do_widen(char __c) const in do_widen()
[all …]
/openbsd-src/gnu/llvm/libcxx/src/ryu/
H A Dd2fixed.cpp131 const uint32_t __c = __digits - 10000 * (__digits / 10000); in __append_n_digits() local
143 const uint32_t __c = (__digits % 100) << 1; in __append_n_digits() local
149 const uint32_t __c = __digits << 1; in __append_n_digits() local
160 const uint32_t __c = __digits - 10000 * (__digits / 10000); in __append_d_digits() local
172 const uint32_t __c = (__digits % 100) << 1; in __append_d_digits() local
178 const uint32_t __c = __digits << 1; in __append_d_digits() local
191 const uint32_t __c = (__digits % 100) << 1; in __append_c_digits() local
196 const char __c = static_cast<char>('0' + (__digits % 10)); in __append_c_digits() local
209 const uint32_t __c = __digits - 10000 * (__digits / 10000); in __append_nine_digits() local
401 const char __c = _Round[0]; in __d2fixed_buffered_n() local
[all …]
H A Dd2s.cpp522 const uint32_t __c = __output2 % 10000; in __to_chars() local
538 const uint32_t __c = __output2 - 10000 * (__output2 / 10000); in __to_chars() local
549 const uint32_t __c = (__output2 % 100) << 1; in __to_chars() local
554 const uint32_t __c = __output2 << 1; in __to_chars() local
598 const uint32_t __c = __output2 % 10000; in __to_chars() local
614 const uint32_t __c = __output2 - 10000 * (__output2 / 10000); in __to_chars() local
626 const uint32_t __c = (__output2 % 100) << 1; in __to_chars() local
632 const uint32_t __c = __output2 << 1; in __to_chars() local
659 const int32_t __c = _Scientific_exponent % 10; in __to_chars() local
/openbsd-src/gnu/llvm/clang/lib/Headers/
H A Daltivec.h360 vector signed __int128 __c) { in vec_adde()
368 vector unsigned __int128 __c) { in vec_adde()
375 vector unsigned char __c) { in vec_adde_u128()
384 vector signed int __c) { in vec_adde()
392 vector unsigned int __c) { in vec_adde()
404 vector signed __int128 __c) { in vec_addec()
412 vector unsigned __int128 __c) { in vec_addec()
419 vector unsigned char __c) { in vec_addec_u128()
428 vector signed int __c) { in vec_addec()
451 vector unsigned int __c) { in vec_addec()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Headers/ppc_wrappers/
H A Dmmintrin.h232 __vector unsigned char __a, __b, __c; in _mm_unpackhi_pi8() local
313 __vector unsigned char __a, __b, __c; in _mm_unpacklo_pi8() local
394 __vector signed char __a, __b, __c; in _mm_add_pi8() local
430 __vector signed short __a, __b, __c; in _mm_add_pi16() local
462 __vector signed int __a, __b, __c; in _mm_add_pi32() local
492 __vector signed char __a, __b, __c; in _mm_sub_pi8() local
528 __vector signed short __a, __b, __c; in _mm_sub_pi16() local
560 __vector signed int __a, __b, __c; in _mm_sub_pi32() local
745 __vector signed char __a, __b, __c; in _mm_cmpgt_pi8() local
782 __vector signed short __a, __b, __c; in _mm_cmpeq_pi16() local
[all …]
H A Dxmmintrin.h226 __m128 __a, __b, __c; in _mm_add_ss() local
248 __m128 __a, __b, __c; in _mm_sub_ss() local
270 __m128 __a, __b, __c; in _mm_mul_ss() local
292 __m128 __a, __b, __c; in _mm_div_ss() local
313 __m128 __a, __c; in _mm_sqrt_ss() local
372 __m128 __a, __c; in _mm_rcp_ss() local
388 __m128 __a, __c; in _mm_rsqrt_ss() local
404 __v4sf __a, __b, __c; in _mm_min_ss() local
421 __v4sf __a, __b, __c; in _mm_max_ss() local
543 __vector unsigned int __c, __d; in _mm_cmpord_ps() local
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/locale/darwin/
H A Dctype_members.cc117 const int __c = wctob(__wc); in do_narrow() local
133 const int __c = wctob(*__lo); in do_narrow() local
142 const int __c = wctob(*__lo); in do_narrow() local
156 const int __c = wctob(__i); in _M_initialize_ctype() local
/openbsd-src/gnu/gcc/libstdc++-v3/src/
H A Distream.cc53 int_type __c = __sb->sgetc(); in _GLIBCXX_BEGIN_NAMESPACE() local
126 int_type __c = __sb->sgetc(); in ignore() local
213 __int_type __c = __sb->sgetc(); in operator >>() local
289 __int_type __c = __sb->sgetc(); in operator >>() local
363 __int_type __c = __sb->sgetc(); in getline() local
433 int_type __c = __sb->sgetc(); in getline() local
506 int_type __c = __sb->sgetc(); in ignore() local
592 __int_type __c = __sb->sgetc(); in getline() local
/openbsd-src/gnu/llvm/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h34 template <class _Tp> __DEVICE__ _Tp abs(const std::complex<_Tp> &__c) { in abs()
40 template <class _Tp> __DEVICE__ _Tp arg(const std::complex<_Tp> &__c) { in arg()
58 template <class _Tp> __DEVICE__ _Tp norm(const std::complex<_Tp> &__c) { in norm()
68 template <class _Tp> std::complex<_Tp> conj(const std::complex<_Tp> &__c) { in conj()
74 template <class _Tp> std::complex<_Tp> proj(const std::complex<_Tp> &__c) { in proj()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cwchar.h192 wcschr(wchar_t* __p, wchar_t __c) in wcschr()
204 wcsrchr(wchar_t* __p, wchar_t __c) in wcsrchr()
216 wmemchr(wchar_t* __p, wchar_t __c, size_t __n) in wmemchr()
/openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cwchar.h211 wcschr(wchar_t* __p, wchar_t __c) in wcschr()
223 wcsrchr(wchar_t* __p, wchar_t __c) in wcsrchr()
235 wmemchr(wchar_t* __p, wchar_t __c, size_t __n) in wmemchr()
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/io/
H A Dbasic_file_libio.cc56 __basic_file<char>::overflow(int __c) in overflow()
71 __basic_file<char>::pbackfail(int __c) in pbackfail()
137 __basic_file<wchar_t>::overflow(int __c) in overflow()
151 __basic_file<wchar_t>::pbackfail(int __c) in pbackfail()
/openbsd-src/gnu/gcc/fixincludes/tests/base/
H A Dctype.h21 # define _toupper(__c) __toupper(__c) argument
63 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS argument
/openbsd-src/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dinttypes.h13 #define CONCAT_U__(__c) __CONCAT__(__c,u) argument
14 #define UINT32_C(__c) __CONCAT__(__c,ul) argument
H A Dctype.h21 # define _toupper(__c) __toupper(__c) argument
63 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS argument

12345678