Home
last modified time | relevance | path

Searched refs:__lo (Results 1 – 21 of 21) sorted by relevance

/openbsd/gnu/gcc/libstdc++-v3/config/locale/generic/
H A Dctype_members.cc108 *__lo = towupper(*__lo); in do_toupper()
123 *__lo = towlower(*__lo); in do_tolower()
151 for (;__lo < __hi; ++__vec, ++__lo) in do_is()
169 while (__lo < __hi && !this->do_is(__m, *__lo)) in do_scan_is()
170 ++__lo; in do_scan_is()
178 while (__lo < __hi && this->do_is(__m, *__lo) != 0) in do_scan_not()
179 ++__lo; in do_scan_not()
195 ++__lo; in do_widen()
219 if (*__lo >= 0 && *__lo < 128) in do_narrow()
226 ++__lo; in do_narrow()
[all …]
/openbsd/gnu/gcc/libstdc++-v3/config/locale/gnu/
H A Dctype_members.cc112 *__lo = __towupper_l(*__lo, _M_c_locale_ctype); in do_toupper()
127 *__lo = __towlower_l(*__lo, _M_c_locale_ctype); in do_tolower()
169 for (; __lo < __hi; ++__vec, ++__lo) in do_is()
187 while (__lo < __hi && !this->do_is(__m, *__lo)) in do_scan_is()
188 ++__lo; in do_scan_is()
196 while (__lo < __hi && this->do_is(__m, *__lo) != 0) in do_scan_not()
197 ++__lo; in do_scan_not()
213 ++__lo; in do_widen()
246 if (*__lo >= 0 && *__lo < 128) in do_narrow()
253 ++__lo; in do_narrow()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/config/locale/generic/
H A Dctype_members.cc105 *__lo = towupper(*__lo); in do_toupper()
106 ++__lo; in do_toupper()
120 *__lo = towlower(*__lo); in do_tolower()
121 ++__lo; in do_tolower()
145 for (;__lo < __hi; ++__vec, ++__lo) in do_is()
164 while (__lo < __hi && !this->do_is(__m, *__lo)) in do_scan_is()
165 ++__lo; in do_scan_is()
166 return __lo; in do_scan_is()
173 while (__lo < __hi && this->do_is(__m, *__lo) != 0) in do_scan_not()
174 ++__lo; in do_scan_not()
[all …]
/openbsd/gnu/gcc/libstdc++-v3/config/locale/darwin/
H A Dctype_members.cc70 while (__lo < __hi) in do_toupper()
72 *__lo = towupper(*__lo); in do_toupper()
73 ++__lo; in do_toupper()
85 while (__lo < __hi) in do_tolower()
87 *__lo = towlower(*__lo); in do_tolower()
88 ++__lo; in do_tolower()
102 while (__lo < __hi) in do_widen()
105 ++__lo; in do_widen()
129 if (*__lo >= 0 && *__lo < 128) in do_narrow()
136 ++__lo; in do_narrow()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/config/locale/gnu/
H A Dctype_members.cc109 *__lo = __towupper_l(*__lo, _M_c_locale_ctype); in do_toupper()
110 ++__lo; in do_toupper()
124 *__lo = __towlower_l(*__lo, _M_c_locale_ctype); in do_tolower()
125 ++__lo; in do_tolower()
152 for (;__lo < __hi; ++__vec, ++__lo) in do_is()
174 while (__lo < __hi && !this->do_is(__m, *__lo)) in do_scan_is()
175 ++__lo; in do_scan_is()
176 return __lo; in do_scan_is()
183 while (__lo < __hi && this->do_is(__m, *__lo) != 0) in do_scan_not()
184 ++__lo; in do_scan_not()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dctype.cc54 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()
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()
108 do_widen(const char* __lo, const char* __hi, char_type* __dest) const in do_widen() argument
[all …]
/openbsd/gnu/gcc/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_inline.h125 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/gnu/gcc/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_inline.h125 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/gnu/llvm/libcxx/include/__algorithm/
H A Dclamp.h27 clamp(const _Tp& __v, const _Tp& __lo, const _Tp& __hi, _Compare __comp) in clamp() argument
29 _LIBCPP_ASSERT(!__comp(__hi, __lo), "Bad bounds passed to std::clamp"); in clamp()
30 return __comp(__v, __lo) ? __lo : __comp(__hi, __v) ? __hi : __v; in clamp()
38 clamp(const _Tp& __v, const _Tp& __lo, const _Tp& __hi) in clamp() argument
40 return _VSTD::clamp(__v, __lo, __hi, __less<_Tp>()); in clamp()
/openbsd/gnu/gcc/libstdc++-v3/include/bits/
H A Dlocale_facets.h182 { return this->do_is(__lo, __hi, __vec); } in is()
243 { return this->do_toupper(__lo, __hi); } in toupper()
272 { return this->do_tolower(__lo, __hi); } in tolower()
815 { return this->do_toupper(__lo, __hi); } in toupper()
848 { return this->do_tolower(__lo, __hi); } in tolower()
898 memcpy(__to, __lo, __hi - __lo); in widen()
903 return this->do_widen(__lo, __hi, __to); in widen()
963 memcpy(__to, __lo, __hi - __lo); in narrow()
1100 memcpy(__dest, __lo, __hi - __lo); in do_widen()
1153 memcpy(__dest, __lo, __hi - __lo); in do_narrow()
[all …]
H A Dlocale_facets.tcc2427 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/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dlocale_facets.h182 { return this->do_is(__lo, __hi, __vec); } in is()
186 { return this->do_scan_is(__m, __lo, __hi); } in scan_is()
198 { return this->do_toupper(__lo, __hi); } in toupper()
206 { return this->do_tolower(__lo, __hi); } in tolower()
214 { return this->do_widen(__lo, __hi, __to); } in widen()
240 do_scan_is(mask __m, const char_type* __lo,
244 do_scan_not(mask __m, const char_type* __lo,
263 do_widen(const char* __lo, const char* __hi,
302 do_scan_not(mask __m, const char_type* __lo,
1015 { return this->do_transform(__lo, __hi); } in transform()
[all …]
H A Dlocale_facets.tcc2100 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/gnu/lib/libstdc++/libstdc++/src/
H A Dctype.cc109 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/gnu/llvm/libcxx/src/include/ryu/
H A Dd2s_intrinsics.h58 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const … in __ryu_shiftright128() argument
67 return __shiftright128(__lo, __hi, static_cast<unsigned char>(__dist)); in __ryu_shiftright128()
82 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const …
89 auto __temp = __lo | ((unsigned __int128)__hi << 64);
127 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const …
132 return (__hi << (64 - __dist)) | (__lo >> __dist);
136 return (__hi << (64 - __dist)) | (static_cast<uint32_t>(__lo >> 32) >> (__dist - 32));
/openbsd/gnu/llvm/libcxx/include/__numeric/
H A Dmidpoint.h80 constexpr _Fp __lo = numeric_limits<_Fp>::min()*2; in midpoint() local
84 std::__fp_abs(__a) < __lo ? __a + __b/2 : // not safe to halve a in midpoint()
85 std::__fp_abs(__b) < __lo ? __a/2 + __b : // not safe to halve b in midpoint()
/openbsd/gnu/llvm/libcxx/src/ryu/
H A Dd2s.cpp122 const uint64_t __lo = __ryu_umul128(__m, __mul[0], &__tmp);
127 const uint64_t __lo2 = __lo + __mul[0];
128 const uint64_t __mid2 = __mid + __mul[1] + (__lo2 < __lo);
133 const uint64_t __lo3 = __lo - __mul[0];
134 const uint64_t __mid3 = __mid - __mul[1] - (__lo3 > __lo);
138 const uint64_t __lo3 = __lo + __lo;
139 const uint64_t __mid3 = __mid + __mid + (__lo3 < __lo);
/openbsd/gnu/llvm/clang/lib/Headers/
H A Davxintrin.h4812 _mm256_set_m128 (__m128 __hi, __m128 __lo) in _mm256_set_m128() argument
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()
4920 _mm256_setr_m128i (__m128i __lo, __m128i __hi) in _mm256_setr_m128i() argument
[all …]
H A Dimmintrin.h311 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/gnu/llvm/libcxx/include/
H A D__locale282 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/gnu/llvm/libunwind/src/
H A DRegisters.hpp2838 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()