Home
last modified time | relevance | path

Searched refs:__mp (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dyear_month_day.h84 const unsigned __mp = (5 * __doy + 2) / 153; // [0, 11] in __from_days() local
85 const unsigned __dy = __doy - (153 * __mp + 2) / 5 + 1; // [1, 31] in __from_days()
86 const unsigned __mth = __mp + (__mp < 10 ? 3 : -9); // [1, 12] in __from_days()
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Df2s.cpp172 const uint32_t __mp = 4 * __m2 + 2; in __f2d() local
189 __vp = __mulPow5InvDivPow2(__mp, __q, __i); in __f2d()
201 // Only one of __mp, __mv, and __mm can be a multiple of 5, if any. in __f2d()
207 __vp -= __multipleOfPowerOf5(__mp, __q); in __f2d()
217 __vp = __mulPow5divPow2(__mp, static_cast<uint32_t>(__i), __j); in __f2d()
224 // {__vr,__vp,__vm} is trailing zeros if {__mv,__mp,__mm} has at least __q trailing 0 bits. in __f2d()
231 // __mp = __mv + 2, so it always has at least one trailing 0 bit. in __f2d()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dlocale2374 const moneypunct<char_type, true>& __mp = std::use_facet<moneypunct<char_type, true> >(__loc);
2375 __pat = __mp.neg_format();
2376 __nsn = __mp.negative_sign();
2377 __psn = __mp.positive_sign();
2378 __dp = __mp.decimal_point();
2379 __ts = __mp.thousands_sep();
2380 __grp = __mp.grouping();
2381 __sym = __mp.curr_symbol();
2382 __fd = __mp.frac_digits();
2384 const moneypunct<char_type, false>& __mp = std::use_facet<moneypunct<char_type, false> >(__loc);
[all …]
H A D__bit_reference638 __bit_iterator<_Cp, false> __mp = std::swap_ranges(__first, __middle, __middle);
640 __middle = __mp;
650 __bit_iterator<_Cp, false> __mp = __first + __d2;
651 std::swap_ranges(__first, __mp, __middle);
652 __first = __mp;
H A Ddeque701 __map_pointer __mp = __map_.begin() + __start_ / __block_size;
702 return iterator(__mp, __map_.empty() ? 0 : *__mp + __start_ % __block_size);
706 …__map_const_pointer __mp = static_cast<__map_const_pointer>(__map_.begin() + __start_ / __block_si…
707 return const_iterator(__mp, __map_.empty() ? 0 : *__mp + __start_ % __block_size);
712 __map_pointer __mp = __map_.begin() + __p / __block_size;
713 return iterator(__mp, __map_.empty() ? 0 : *__mp + __p % __block_size);
718 … __map_const_pointer __mp = static_cast<__map_const_pointer>(__map_.begin() + __p / __block_size);
719 return const_iterator(__mp, __map_.empty() ? 0 : *__mp + __p % __block_size);
H A Dbitset722 size_t __mp = std::min(__str.size(), _Size);
724 for (; __i < __mp; ++__i) {
725 _CharT __c = __str[__mp - 1 - __i];