| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/generic/ |
| D | ctype_members.cc | 104 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper() argument 106 while (__lo < __hi) in do_toupper() 108 *__lo = towupper(*__lo); in do_toupper() 109 ++__lo; in do_toupper() 119 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower() argument 121 while (__lo < __hi) in do_tolower() 123 *__lo = towlower(*__lo); in do_tolower() 124 ++__lo; in do_tolower() 149 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 151 for (;__lo < __hi; ++__vec, ++__lo) in do_is() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/gnu/ |
| D | ctype_members.cc | 108 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper() argument 110 while (__lo < __hi) in do_toupper() 112 *__lo = __towupper_l(*__lo, _M_c_locale_ctype); in do_toupper() 113 ++__lo; in do_toupper() 123 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower() argument 125 while (__lo < __hi) in do_tolower() 127 *__lo = __towlower_l(*__lo, _M_c_locale_ctype); in do_tolower() 128 ++__lo; in do_tolower() 167 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 169 for (; __lo < __hi; ++__vec, ++__lo) in do_is() [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/generic/ |
| D | ctype_members.cc | 101 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper() argument 103 while (__lo < __hi) in do_toupper() 105 *__lo = towupper(*__lo); in do_toupper() 106 ++__lo; in do_toupper() 116 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower() argument 118 while (__lo < __hi) in do_tolower() 120 *__lo = towlower(*__lo); in do_tolower() 121 ++__lo; in do_tolower() 143 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 145 for (;__lo < __hi; ++__vec, ++__lo) in do_is() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/darwin/ |
| D | ctype_members.cc | 68 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper() argument 70 while (__lo < __hi) in do_toupper() 72 *__lo = towupper(*__lo); in do_toupper() 73 ++__lo; in do_toupper() 83 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower() argument 85 while (__lo < __hi) in do_tolower() 87 *__lo = towlower(*__lo); in do_tolower() 88 ++__lo; in do_tolower() 100 do_widen(const char* __lo, const char* __hi, wchar_t* __dest) const in do_widen() argument 102 while (__lo < __hi) in do_widen() [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/config/locale/gnu/ |
| D | ctype_members.cc | 105 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper() argument 107 while (__lo < __hi) in do_toupper() 109 *__lo = __towupper_l(*__lo, _M_c_locale_ctype); in do_toupper() 110 ++__lo; in do_toupper() 120 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower() argument 122 while (__lo < __hi) in do_tolower() 124 *__lo = __towlower_l(*__lo, _M_c_locale_ctype); in do_tolower() 125 ++__lo; in do_tolower() 150 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 152 for (;__lo < __hi; ++__vec, ++__lo) in do_is() [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/ |
| D | ctype.cc | 54 do_is(const char_type* __lo, const char_type* __hi, mask* __vec) const in do_is() argument 56 const char* __c = _M_cctype.is(reinterpret_cast<const char*>(__lo), in do_is() 62 do_scan_is(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_is() argument 65 reinterpret_cast<const char*>(__lo), in do_scan_is() 71 do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_not() argument 74 reinterpret_cast<const char*>(__lo), in do_scan_not() 84 do_toupper(char_type* __lo, const char_type* __hi) const in do_toupper() argument 86 const char* __c = _M_cctype.toupper(reinterpret_cast<char*>(__lo), in do_toupper() 96 do_tolower(char_type* __lo, const char_type* __hi) const in do_tolower() argument 98 const char* __c = _M_cctype.toupper(reinterpret_cast<char*>(__lo), in do_tolower() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/os/bsd/darwin/ |
| D | ctype_inline.h | 125 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 127 for (; __lo < __hi; ++__vec, ++__lo) in do_is() 128 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit in do_is() 135 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument 137 while (__lo < __hi && ! __istype (*__lo, __m)) in do_scan_is() 138 ++__lo; in do_scan_is() 139 return __lo; in do_scan_is() 144 do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_not() argument 146 while (__lo < __hi && __istype (*__lo, __m)) in do_scan_not() 147 ++__lo; in do_scan_not() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/os/bsd/freebsd/ |
| D | ctype_inline.h | 125 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument 127 for (; __lo < __hi; ++__vec, ++__lo) in do_is() 128 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit in do_is() 135 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument 137 while (__lo < __hi && ! __istype (*__lo, __m)) in do_scan_is() 138 ++__lo; in do_scan_is() 139 return __lo; in do_scan_is() 144 do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_not() argument 146 while (__lo < __hi && __istype (*__lo, __m)) in do_scan_not() 147 ++__lo; in do_scan_not() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/bits/ |
| D | locale_facets.h | 181 is(const char_type *__lo, const char_type *__hi, mask *__vec) const in is() argument 182 { return this->do_is(__lo, __hi, __vec); } in is() 197 scan_is(mask __m, const char_type* __lo, const char_type* __hi) const in scan_is() argument 198 { return this->do_scan_is(__m, __lo, __hi); } in scan_is() 213 scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in scan_not() argument 214 { return this->do_scan_not(__m, __lo, __hi); } in scan_not() 242 toupper(char_type *__lo, const char_type* __hi) const in toupper() argument 243 { return this->do_toupper(__lo, __hi); } in toupper() 271 tolower(char_type* __lo, const char_type* __hi) const in tolower() argument 272 { return this->do_tolower(__lo, __hi); } in tolower() [all …]
|
| D | locale_facets.tcc | 2427 do_transform(const _CharT* __lo, const _CharT* __hi) const in do_transform() argument 2432 const string_type __str(__lo, __hi); in do_transform() 2437 size_t __len = (__hi - __lo) * 2; in do_transform() 2483 do_hash(const _CharT* __lo, const _CharT* __hi) const in do_hash() argument 2486 for (; __lo < __hi; ++__lo) in do_hash() 2487 __val = *__lo + ((__val << 7) | in do_hash()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| D | locale_facets.h | 181 is(const char_type *__lo, const char_type *__hi, mask *__vec) const in is() argument 182 { return this->do_is(__lo, __hi, __vec); } in is() 185 scan_is(mask __m, const char_type* __lo, const char_type* __hi) const in scan_is() argument 186 { return this->do_scan_is(__m, __lo, __hi); } in scan_is() 189 scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in scan_not() argument 190 { return this->do_scan_not(__m, __lo, __hi); } in scan_not() 197 toupper(char_type *__lo, const char_type* __hi) const in toupper() argument 198 { return this->do_toupper(__lo, __hi); } in toupper() 205 tolower(char_type* __lo, const char_type* __hi) const in tolower() argument 206 { return this->do_tolower(__lo, __hi); } in tolower() [all …]
|
| D | locale_facets.tcc | 2100 do_transform(const _CharT* __lo, const _CharT* __hi) const in do_transform() argument 2103 string_type __str(__lo, __hi); in do_transform() 2108 size_t __len = (__hi - __lo) * 2; in do_transform() 2144 do_hash(const _CharT* __lo, const _CharT* __hi) const in do_hash() argument 2147 for (; __lo < __hi; ++__lo) in do_hash() 2148 __val = *__lo + ((__val << 7) | in do_hash()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/src/ |
| D | ctype.cc | 109 ctype<char>::do_widen(const char* __lo, const char* __hi, char* __dest) const in do_widen() argument 111 memcpy(__dest, __lo, __hi - __lo); in do_widen() 120 ctype<char>::do_narrow(const char* __lo, const char* __hi, in do_narrow() argument 123 memcpy(__dest, __lo, __hi - __lo); in do_narrow()
|
| /openbsd/src/gnu/llvm/clang/lib/Headers/ |
| D | avxintrin.h | 4812 _mm256_set_m128 (__m128 __hi, __m128 __lo) in _mm256_set_m128() argument 4814 return (__m256) __builtin_shufflevector((__v4sf)__lo, (__v4sf)__hi, 0, 1, 2, 3, 4, 5, 6, 7); in _mm256_set_m128() 4833 _mm256_set_m128d (__m128d __hi, __m128d __lo) in _mm256_set_m128d() argument 4835 return (__m256d) __builtin_shufflevector((__v2df)__lo, (__v2df)__hi, 0, 1, 2, 3); in _mm256_set_m128d() 4853 _mm256_set_m128i (__m128i __hi, __m128i __lo) in _mm256_set_m128i() argument 4855 return (__m256i) __builtin_shufflevector((__v2di)__lo, (__v2di)__hi, 0, 1, 2, 3); in _mm256_set_m128i() 4876 _mm256_setr_m128 (__m128 __lo, __m128 __hi) in _mm256_setr_m128() argument 4878 return _mm256_set_m128(__hi, __lo); in _mm256_setr_m128() 4899 _mm256_setr_m128d (__m128d __lo, __m128d __hi) in _mm256_setr_m128d() argument 4901 return (__m256d)_mm256_set_m128d(__hi, __lo); in _mm256_setr_m128d() [all …]
|
| D | immintrin.h | 311 unsigned int __lo, __hi; in _rdrand64_step() local 312 unsigned int __res_lo = __builtin_ia32_rdrand32_step(&__lo); in _rdrand64_step() 315 *__p = ((unsigned long long)__hi << 32) | (unsigned long long)__lo; in _rdrand64_step()
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | __locale | 282 string_type transform(const char_type* __lo, const char_type* __hi) const 284 return do_transform(__lo, __hi); 288 long hash(const char_type* __lo, const char_type* __hi) const 290 return do_hash(__lo, __hi); 299 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const 300 {return string_type(__lo, __hi);} 301 virtual long do_hash(const char_type* __lo, const char_type* __hi) const; 328 collate<_CharT>::do_hash(const char_type* __lo, const char_type* __hi) const 333 for(const char_type* __p = __lo; __p != __hi; ++__p) 367 string_type do_transform(const char_type* __lo, const char_type* __hi) const override; [all …]
|
| /openbsd/src/gnu/llvm/libunwind/src/ |
| D | Registers.hpp | 2838 uint32_t __lo; member 2909 return _registers.__lo; in getRegister() 2943 _registers.__lo = value; in setRegister() 3167 uint64_t __lo; member 3218 return _registers.__lo; in getRegister() 3240 _registers.__lo = value; in setRegister()
|