Home
last modified time | relevance | path

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

1234567

/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dstring.h73 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 Dwchar.h137 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()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dregex_scanner.tcc99 auto __c = *_M_current++; in _M_scan_normal() local
221 auto __c = *_M_current++; in _M_scan_in_bracket() local
283 auto __c = *_M_current++; in _M_scan_in_brace() local
327 auto __c = *_M_current++; in _M_eat_escape_ecma() local
406 auto __c = *_M_current; in _M_eat_escape_posix() local
444 auto __c = *_M_current++; in _M_eat_escape_awk() local
H A Dstring_view.tcc69 find(_CharT __c, size_type __pos) const noexcept in find()
105 rfind(_CharT __c, size_type __pos) const noexcept in rfind()
174 find_first_not_of(_CharT __c, size_type __pos) const noexcept in find_first_not_of()
207 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dregex_scanner.tcc98 auto __c = *_M_current++; in _M_scan_normal() local
213 auto __c = *_M_current++; in _M_scan_in_bracket() local
274 auto __c = *_M_current++; in _M_scan_in_brace() local
315 auto __c = *_M_current++; in _M_eat_escape_ecma() local
397 auto __c = *_M_current; in _M_eat_escape_posix() local
434 auto __c = *_M_current++; in _M_eat_escape_awk() local
H A Dstring_view.tcc81 find(_CharT __c, size_type __pos) const noexcept in find()
117 rfind(_CharT __c, size_type __pos) const noexcept in rfind()
186 find_first_not_of(_CharT __c, size_type __pos) const noexcept in find_first_not_of()
219 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of()
/netbsd-src/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dstdint-hpux11.h24 #define INT8_C(__c) (__c) argument
25 #define UINT8_C(__c) (__c) argument
26 #define INT16_C(__c) (__c) argument
27 #define UINT16_C(__c) (__c) argument
H A Dinttypes.h13 #define UINT8_C(__c) (__c) argument
14 #define UINT16_C(__c) (__c) argument
15 #define INT32_C(__c) (__c) argument
16 #define UINT32_C(__c) __CONCAT__(__c,u) argument
H A Dctype.h33 # define _toupper(__c) __toupper(__c) argument
75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS argument
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
H A Dinttypes.h13 #define UINT8_C(__c) (__c) argument
14 #define UINT16_C(__c) (__c) argument
15 #define INT32_C(__c) (__c) argument
16 #define UINT32_C(__c) __CONCAT__(__c,u) argument
H A Dstdint-hpux11.h24 #define INT8_C(__c) (__c) argument
25 #define UINT8_C(__c) (__c) argument
26 #define INT16_C(__c) (__c) argument
27 #define UINT16_C(__c) (__c) argument
H A Dctype.h33 # define _toupper(__c) __toupper(__c) argument
75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A Daltivec.h352 vector signed __int128 __c) { in vec_adde()
358 vector unsigned __int128 __c) { in vec_adde()
365 vector unsigned char __c) { in vec_adde_u128()
372 vector signed int __c) { in vec_adde()
380 vector unsigned int __c) { in vec_adde()
392 vector signed __int128 __c) { in vec_addec()
398 vector unsigned __int128 __c) { in vec_addec()
405 vector unsigned char __c) { in vec_addec_u128()
411 vector signed int __c) { in vec_addec()
434 vector unsigned int __c) { in vec_addec()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/darwin/
H A Dctype_members.cc118 const int __c = wctob(__wc); in do_narrow() local
134 const int __c = wctob(*__lo); in do_narrow() local
143 const int __c = wctob(*__lo); in do_narrow() local
157 const int __c = wctob(__i); in _M_initialize_ctype() local
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/darwin/
H A Dctype_members.cc118 const int __c = wctob(__wc); in do_narrow() local
134 const int __c = wctob(*__lo); in do_narrow() local
143 const int __c = wctob(*__lo); in do_narrow() local
157 const int __c = wctob(__i); in _M_initialize_ctype() local
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm_neon.h1291 vqrdmlah_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c) in vqrdmlah_s16()
1298 vqrdmlah_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c) in vqrdmlah_s32()
1305 vqrdmlahq_s16 (int16x8_t __a, int16x8_t __b, int16x8_t __c) in vqrdmlahq_s16()
1312 vqrdmlahq_s32 (int32x4_t __a, int32x4_t __b, int32x4_t __c) in vqrdmlahq_s32()
1319 vqrdmlsh_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c) in vqrdmlsh_s16()
1326 vqrdmlsh_s32 (int32x2_t __a, int32x2_t __b, int32x2_t __c) in vqrdmlsh_s32()
1333 vqrdmlshq_s16 (int16x8_t __a, int16x8_t __b, int16x8_t __c) in vqrdmlshq_s16()
1340 vqrdmlshq_s32 (int32x4_t __a, int32x4_t __b, int32x4_t __c) in vqrdmlshq_s32()
1411 vmla_s8 (int8x8_t __a, int8x8_t __b, int8x8_t __c) in vmla_s8()
1418 vmla_s16 (int16x4_t __a, int16x4_t __b, int16x4_t __c) in vmla_s16()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Dmmintrin.h251 __vector unsigned char __a, __b, __c; in _mm_unpackhi_pi8() local
332 __vector unsigned char __a, __b, __c; in _mm_unpacklo_pi8() local
413 __vector signed char __a, __b, __c; in _mm_add_pi8() local
449 __vector signed short __a, __b, __c; in _mm_add_pi16() local
481 __vector signed int __a, __b, __c; in _mm_add_pi32() local
511 __vector signed char __a, __b, __c; in _mm_sub_pi8() local
547 __vector signed short __a, __b, __c; in _mm_sub_pi16() local
579 __vector signed int __a, __b, __c; in _mm_sub_pi32() local
769 __vector signed char __a, __b, __c; in _mm_cmpgt_pi8() local
806 __vector signed short __a, __b, __c; in _mm_cmpeq_pi16() local
[all …]
H A Dxmmintrin.h248 __m128 __a, __b, __c; in _mm_add_ss() local
270 __m128 __a, __b, __c; in _mm_sub_ss() local
292 __m128 __a, __b, __c; in _mm_mul_ss() local
314 __m128 __a, __b, __c; in _mm_div_ss() local
335 __m128 __a, __c; in _mm_sqrt_ss() local
394 __m128 __a, __c; in _mm_rcp_ss() local
410 __m128 __a, __c; in _mm_rsqrt_ss() local
426 __v4sf __a, __b, __c; in _mm_min_ss() local
443 __v4sf __a, __b, __c; in _mm_max_ss() local
565 __vector unsigned int __c, __d; in _mm_cmpord_ps() local
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Dmmintrin.h251 __vector unsigned char __a, __b, __c; in _mm_unpackhi_pi8() local
332 __vector unsigned char __a, __b, __c; in _mm_unpacklo_pi8() local
413 __vector signed char __a, __b, __c; in _mm_add_pi8() local
449 __vector signed short __a, __b, __c; in _mm_add_pi16() local
481 __vector signed int __a, __b, __c; in _mm_add_pi32() local
511 __vector signed char __a, __b, __c; in _mm_sub_pi8() local
547 __vector signed short __a, __b, __c; in _mm_sub_pi16() local
579 __vector signed int __a, __b, __c; in _mm_sub_pi32() local
769 __vector signed char __a, __b, __c; in _mm_cmpgt_pi8() local
806 __vector signed short __a, __b, __c; in _mm_cmpeq_pi16() local
[all …]
H A Dxmmintrin.h248 __m128 __a, __b, __c; in _mm_add_ss() local
270 __m128 __a, __b, __c; in _mm_sub_ss() local
292 __m128 __a, __b, __c; in _mm_mul_ss() local
314 __m128 __a, __b, __c; in _mm_div_ss() local
335 __m128 __a, __c; in _mm_sqrt_ss() local
394 __m128 __a, __c; in _mm_rcp_ss() local
410 __m128 __a, __c; in _mm_rsqrt_ss() local
426 __v4sf __a, __b, __c; in _mm_min_ss() local
443 __v4sf __a, __b, __c; in _mm_max_ss() local
565 __vector unsigned int __c, __d; in _mm_cmpord_ps() local
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
H A Dstring_view.tcc73 find(_CharT __c, size_type __pos) const noexcept in find()
109 rfind(_CharT __c, size_type __pos) const noexcept in rfind()
175 find_first_not_of(_CharT __c, size_type __pos) const noexcept in find_first_not_of()
207 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dstring_view.tcc73 find(_CharT __c, size_type __pos) const noexcept in find()
109 rfind(_CharT __c, size_type __pos) const noexcept in rfind()
175 find_first_not_of(_CharT __c, size_type __pos) const noexcept in find_first_not_of()
207 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dropeimpl.h148 _Rope_RopeConcatenation<_CharT, _Alloc>* __c = in _GLIBCXX_VISIBILITY() local
194 _Rope_RopeConcatenation<_CharT, _Alloc>* __c; in _GLIBCXX_VISIBILITY() local
383 _Rope_RopeConcatenation<_CharT,_Alloc>* __c in _GLIBCXX_VISIBILITY() local
744 _RopeConcatenation* __c = (_RopeConcatenation*)__base; in _GLIBCXX_VISIBILITY() local
1087 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1128 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1261 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1337 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1387 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dropeimpl.h148 _Rope_RopeConcatenation<_CharT, _Alloc>* __c = in _GLIBCXX_VISIBILITY() local
194 _Rope_RopeConcatenation<_CharT, _Alloc>* __c; in _GLIBCXX_VISIBILITY() local
383 _Rope_RopeConcatenation<_CharT,_Alloc>* __c in _GLIBCXX_VISIBILITY() local
741 _RopeConcatenation* __c = (_RopeConcatenation*)__base; in _GLIBCXX_VISIBILITY() local
1084 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1125 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1258 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1334 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local
1384 _RopeConcatenation* __c = (_RopeConcatenation*)__r; in _GLIBCXX_VISIBILITY() local

1234567