| /openbsd-src/gnu/llvm/clang/lib/Headers/ |
| H A D | __clang_cuda_intrinsics.h | 26 int __width = warpSize) { \ 28 ((warpSize - __width) << 8) | (__Mask)); \ 31 int __width = warpSize) { \ 33 ((warpSize - __width) << 8) | (__Mask)); \ 36 int __width = warpSize) { \ 38 ::__FnName(static_cast<int>(__val), __offset, __width)); \ 41 int __width = warpSize) { \ 49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \ 50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \ 56 int __width = warpSize) { \ [all …]
|
| /openbsd-src/gnu/llvm/libcxx/include/__chrono/ |
| H A D | hh_mm_ss.h | 45 …_LIBCPP_HIDE_FROM_ABI static constexpr unsigned __width(uint64_t __n, uint64_t __d = 10, unsigned … 48 return 1 + __width(__n, __d % __n * 10, __w+1); 53 …_LIBCPP_HIDE_FROM_ABI static unsigned constexpr fractional_width = __width(__CommonType::period::d… 54 __width(__CommonType::period::den) : 6u;
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| H A D | fstream.tcc | 436 int __width = 0; in seekoff() local 438 __width = use_facet<__codecvt_type>(this->_M_buf_locale).encoding(); in seekoff() 439 if (__width < 0) in seekoff() 440 __width = 0; in seekoff() 442 bool __testfail = __off != 0 && __width <= 0; in seekoff() 450 off_type __computed_off = __width * __off; in seekoff()
|
| H A D | locale_facets.tcc | 1353 const size_type __width = static_cast<size_type>(__io.width()); in do_put() local 1444 bool __testipad = __f == ios_base::internal && __len < __width; in do_put() 1471 __res += string_type(__width - __len, __fill); in do_put() 1477 __res += string_type(__width - __len, __fill); in do_put() 1488 if (__width > __len) in do_put() 1492 __res.append(__width - __len, __fill); in do_put() 1495 __res.insert(0, string_type(__width - __len, __fill)); in do_put() 1496 __len = __width; in do_put()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
| H A D | fstream.tcc | 670 int __width = 0; in seekoff() local 672 __width = _M_codecvt->encoding(); in seekoff() 673 if (__width < 0) in seekoff() 674 __width = 0; in seekoff() 677 const bool __testfail = __off != 0 && __width <= 0; in seekoff() 689 off_type __computed_off = __off * __width; in seekoff()
|
| H A D | locale_facets.tcc | 1679 const size_type __width = static_cast<size_type>(__io.width()); in _M_insert() local 1681 && __len < __width); in _M_insert() 1708 __res.append(__width - __len, __fill); in _M_insert() 1714 __res.append(__width - __len, __fill); in _M_insert() 1725 if (__width > __len) in _M_insert() 1729 __res.append(__width - __len, __fill); in _M_insert() 1732 __res.insert(0, __width - __len, __fill); in _M_insert() 1733 __len = __width; in _M_insert()
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | charconv | 135 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) 162 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 187 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 310 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) 331 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) 365 _LIBCPP_HIDE_FROM_ABI static constexpr int __width(_Tp __value) noexcept { 375 int __n = __width(__value); 400 _LIBCPP_HIDE_FROM_ABI static constexpr int __width(_Tp __value) noexcept { 410 int __n = __width(__value); 436 _LIBCPP_HIDE_FROM_ABI static constexpr int __width(_Tp __value) noexcept { [all …]
|
| H A D | fstream | 947 int __width = __cv_->encoding(); 948 if (__file_ == nullptr || (__width <= 0 && __off != 0) || sync()) 950 // __width > 0 || __off == 0 967 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 971 if (::fseeko(__file_, __width > 0 ? __width * __off : 0, __whence)) 1033 int __width = __cv_->encoding(); 1035 if (__width > 0) 1036 __c += __width * (this->egptr() - this->gptr());
|
| H A D | locale | 4200 int __width = __cv_->encoding(); 4201 if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync()) 4203 // __width > 0 || __off == 0, now check __way 4206 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); 4255 int __width = __cv_->encoding(); 4257 if (__width > 0) 4258 __c += __width * (this->egptr() - this->gptr());
|
| /openbsd-src/gnu/llvm/libcxx/include/__format/ |
| H A D | formatter_output.h | 68 __padding_size(size_t __size, size_t __width, __format_spec::__alignment __align) { in __padding_size() argument 69 _LIBCPP_ASSERT(__width > __size, "don't call this function when no padding is required"); in __padding_size() 73 size_t __fill = __width - __size; in __padding_size()
|
| H A D | parser_std_format_spec.h | 823 int __width = __detail::__column_width(__cluster.__code_point_); in __estimate_column_width_grapheme_clustering() local 830 if (__rounding == __column_width_rounding::__down && __result.__width_ + __width > __maximum) in __estimate_column_width_grapheme_clustering() 833 __result.__width_ += __width; in __estimate_column_width_grapheme_clustering()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/libio/ |
| H A D | libioP.h | 595 int __width, int __precision, int __flags,
|