/netbsd-src/external/apache2/llvm/dist/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 …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
H A D | numeric_traits.h | 57 enum { __width = __value ? sizeof(_Tp) * __CHAR_BIT__ : 0 }; in _GLIBCXX_VISIBILITY() enumerator 72 = __is_integer_nonstrict<_Value>::__width - __is_signed_val; in _GLIBCXX_VISIBILITY() 100 enum { __width = WIDTH }; \ in _GLIBCXX_VISIBILITY() 106 enum { __width = WIDTH }; \ in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
H A D | numeric_traits.h | 57 enum { __width = __value ? sizeof(_Tp) * __CHAR_BIT__ : 0 }; in _GLIBCXX_VISIBILITY() enumerator 72 = __is_integer_nonstrict<_Value>::__width - __is_signed_val; in _GLIBCXX_VISIBILITY() 101 enum { __width = WIDTH }; \ in _GLIBCXX_VISIBILITY() 108 enum { __width = WIDTH }; \ in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
H A D | istream.cc | 227 streamsize __width = __in.width(); in __istream_extract() 228 if (0 < __width && __width < __num) in __istream_extract() 229 __num = __width; in __istream_extract()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | fstream.tcc | 835 int __width = 0; in seekoff() local 837 __width = _M_codecvt->encoding(); in seekoff() 838 if (__width < 0) in seekoff() 839 __width = 0; in seekoff() 842 const bool __testfail = __off != 0 && __width <= 0; in seekoff() 862 off_type __computed_off = __off * __width; in seekoff()
|
H A D | locale_facets_nonio.tcc | 500 const size_type __width = static_cast<size_type>(__io.width()); in _M_insert() local 502 && __len < __width); in _M_insert() 529 __res.append(__width - __len, __fill); in _M_insert() 535 __res.append(__width - __len, __fill); in _M_insert() 546 if (__width > __len) in _M_insert() 550 __res.append(__width - __len, __fill); in _M_insert() 553 __res.insert(0, __width - __len, __fill); in _M_insert() 554 __len = __width; in _M_insert()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | fstream.tcc | 835 int __width = 0; in seekoff() local 837 __width = _M_codecvt->encoding(); in seekoff() 838 if (__width < 0) in seekoff() 839 __width = 0; in seekoff() 842 const bool __testfail = __off != 0 && __width <= 0; in seekoff() 862 off_type __computed_off = __off * __width; in seekoff()
|
H A D | locale_facets_nonio.tcc | 516 const size_type __width = static_cast<size_type>(__io.width()); in _M_insert() local 518 && __len < __width); in _M_insert() 545 __res.append(__width - __len, __fill); in _M_insert() 551 __res.append(__width - __len, __fill); in _M_insert() 562 if (__width > __len) in _M_insert() 566 __res.append(__width - __len, __fill); in _M_insert() 569 __res.insert(0, __width - __len, __fill); in _M_insert() 570 __len = __width; in _M_insert()
|
H A D | istream.tcc | 1024 streamsize __width = __in.width(); in __istream_extract() 1025 if (0 < __width && __width < __num) in __istream_extract() 1026 __num = __width; in __istream_extract()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
H A D | compare | 720 constexpr int __width = sizeof(_Tp) * __CHAR_BIT__; 722 if constexpr (__width == 16) // IEEE binary16 (or ARM fp16). 724 else if constexpr (__width == 32) // IEEE binary32 726 else if constexpr (__width == 64) // IEEE binary64 728 else if constexpr (__width == 128) // IEEE binary128 792 constexpr int __width = sizeof(_Tp) * __CHAR_BIT__; 794 make_unsigned_t<_Tp> __sign = __t >> (__width - 1); 805 constexpr int __width = sizeof(_Tp) * __CHAR_BIT__; 806 make_unsigned_t<_Tp> __sign = __t._M_hi >> (__width - 1);
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | fstream | 935 int __width = __cv_->encoding(); 936 if (__file_ == nullptr || (__width <= 0 && __off != 0) || sync()) 938 // __width > 0 || __off == 0 955 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 959 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence)) 1021 int __width = __cv_->encoding(); 1023 if (__width > 0) 1024 __c += __width * (this->egptr() - this->gptr());
|
H A D | charconv | 208 static _LIBCPP_INLINE_VISIBILITY int __width(_Tp __v) 231 static _LIBCPP_INLINE_VISIBILITY int __width(_Tp __v) 358 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff)
|
H A D | locale | 4232 int __width = __cv_->encoding(); 4233 if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync()) 4235 // __width > 0 || __off == 0, now check __way 4238 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); 4286 int __width = __cv_->encoding(); 4288 if (__width > 0) 4289 __c += __width * (this->egptr() - this->gptr());
|
H A D | chrono | 2773 static constexpr unsigned __width(uint64_t __n, uint64_t __d = 10, unsigned __w = 0) 2776 return 1 + __width(__n, __d % __n * 10, __w+1); 2781 static unsigned constexpr fractional_width = __width(__CommonType::period::den) < 19 ? 2782 __width(__CommonType::period::den) : 6u;
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | chrono | 1981 int __width = (__multiplicity_2 > __multiplicity_5 1983 if (__width > 18) 1984 __width = 18; 1985 return __width;
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
H A D | simd_x86.h | 3513 constexpr size_t __width = __bytes / sizeof(_Tp); in _S_masked_unary() local 3523 const auto __value = __intrin_bitcast<__vector_type_t<_Up, __width>>(__v._M_data); in _S_masked_unary() 3527 __vector_broadcast<__width>(_Up(__pm_one)), __value, __k._M_data)) in _S_masked_unary() 3544 const auto __value = __intrin_bitcast<__vector_type_t<_Tp, __width>>(__v._M_data); in _S_masked_unary() 3548 __value, __vector_broadcast<__width>(_Tp(__pm_one)), __value, \ in _S_masked_unary() 3553 __value, __vector_broadcast<__width>(_Tp(__pm_one)), __value, \ in _S_masked_unary()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/ |
H A D | ChangeLog-2020 | 1253 (__is_integer_nonstrict::__width): Define new constant. 1255 other and __is_integer_nonstrict::__width, rather than the
|