Searched refs:__np (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_integral.h | 302 const auto& __np = std::use_facet<numpunct<_CharT>>(__ctx.locale()); in __format_integer() local 303 string __grouping = __np.grouping(); in __format_integer() 316 __np.thousands_sep(), in __format_integer() 427 const auto& __np = std::use_facet<numpunct<_CharT>>(__ctx.locale()); 428 basic_string<_CharT> __str = __value ? __np.truename() : __np.falsename();
|
H A D | formatter_floating_point.h | 502 const auto& __np = std::use_facet<numpunct<_CharT>>(__loc); 503 string __grouping = __np.grouping(); 546 _CharT __sep = __np.thousands_sep(); 567 *__out_it++ = __np.decimal_point();
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __hash_table | 1011 _LIBCPP_HIDE_FROM_ABI void __deallocate_node(__next_pointer __np) _NOEXCEPT; 1134 void __hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate_node(__next_pointer __np) _NOEXCEPT { 1136 while (__np != nullptr) { 1137 __next_pointer __next = __np->__next_; 1138 __node_pointer __real_np = __np->__upcast(); 1142 __np = __next; 1481 __next_pointer __np = __p.__node_; 1482 __cp->__hash_ = __np->__hash(); 1491 while (__pp->__next_ != __np) 1493 __cp->__next_ = __np; [all …]
|
H A D | locale | 422 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); 423 __thousands_sep = __np.thousands_sep(); 424 return __np.grouping(); 462 const numpunct<_CharT>& __np = std::use_facet<numpunct<_CharT> >(__loc); 463 __thousands_sep = __np.thousands_sep(); 464 return __np.grouping(); 473 const numpunct<_CharT>& __np = std::use_facet<numpunct<_CharT> >(__loc); 474 __decimal_point = __np.decimal_point(); 475 __thousands_sep = __np.thousands_sep(); 476 return __np.grouping(); [all …]
|
H A D | __tree | 1970 __node_pointer __np = __p.__get_np(); 1971 __remove_node_pointer(__np); 1972 return _NodeHandle(__np, __alloc()); 2040 __node_pointer __np = __p.__get_np(); 2041 iterator __r = __remove_node_pointer(__np); 2044 __node_traits::deallocate(__na, __np, 1); 2277 __node_pointer __np = __p.__get_np(); 2279 if (__np->__right_ != nullptr) 2280 __begin_node() = static_cast<__iter_pointer>(__np->__right_); 2282 __begin_node() = static_cast<__iter_pointer>(__np->__parent_); [all …]
|
H A D | variant | 561 constexpr size_t __np = __remove_cvref_t<_Vp>::__size(); 562 static_assert(__all<(__np == __remove_cvref_t<_Vs>::__size())...>::value); 563 return __make_fdiagonal_impl<_Fp, _Vp, _Vs...>(make_index_sequence<__np>{});
|
H A D | list | 629 __node_pointer __np = __f->__as_node(); 631 __delete_node(__np);
|
H A D | regex | 4916 ptrdiff_t __np = std::distance(__first, __last); 4951 if (__highest_j == __np) 5000 ptrdiff_t __np = std::distance(__first, __last); 5043 if (__highest_j == __np)
|