Searched refs:__width (Results 1 – 9 of 9) sorted by relevance
| /openbsd/src/gnu/llvm/clang/lib/Headers/ |
| 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/lib/libstdc++/libstdc++/include/bits/ |
| 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()
|
| 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/ |
| 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()
|
| 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/ |
| 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 …]
|
| 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());
|
| 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/lib/libstdc++/libstdc++/libio/ |
| D | libioP.h | 595 int __width, int __precision, int __flags,
|