Home
last modified time | relevance | path

Searched refs:__width (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/lib/Headers/
H A D__clang_cuda_intrinsics.h26 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 …]
/llvm-project-15.0.7/libcxx/include/__chrono/
H A Dhh_mm_ss.h45 …_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;
/llvm-project-15.0.7/libcxx/include/
H A Dcharconv137 static _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v)
164 static _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) {
189 static _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) {
314 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff)
335 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);
446 int __n = __width(__value);
[all …]
H A Dfstream942 int __width = __cv_->encoding();
943 if (__file_ == nullptr || (__width <= 0 && __off != 0) || sync())
945 // __width > 0 || __off == 0
962 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence))
966 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence))
1028 int __width = __cv_->encoding();
1030 if (__width > 0)
1031 __c += __width * (this->egptr() - this->gptr());
H A Dlocale4216 int __width = __cv_->encoding();
4217 if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync())
4219 // __width > 0 || __off == 0, now check __way
4222 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om);
4271 int __width = __cv_->encoding();
4273 if (__width > 0)
4274 __c += __width * (this->egptr() - this->gptr());
H A Dformat314 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__width));
/llvm-project-15.0.7/libcxx/include/__format/
H A Dformatter_output.h61 __padding_size(size_t __size, size_t __width, __format_spec::__alignment __align) { in __padding_size() argument
62 _LIBCPP_ASSERT(__width > __size, "don't call this function when no padding is required"); in __padding_size()
66 size_t __fill = __width - __size; in __padding_size()
H A Dparser_std_format_spec.h775 int __width = __detail::__column_width(__cluster.__code_point_); in __estimate_column_width_grapheme_clustering() local
782 if (__rounding == __column_width_rounding::__down && __result.__width_ + __width > __maximum) in __estimate_column_width_grapheme_clustering()
785 __result.__width_ += __width; in __estimate_column_width_grapheme_clustering()