Home
last modified time | relevance | path

Searched refs:__np (Results 1 – 7 of 7) sorted by relevance

/NextBSD/contrib/libstdc++/include/tr1/
Drandom.tcc1058 const _RealType __np = std::floor(_M_t * __p12); in _M_initialize() local
1059 const _RealType __pa = __np / _M_t; in _M_initialize()
1064 std::sqrt(__np * __1p * std::log(32 * __np in _M_initialize()
1068 std::sqrt(__np * __1p * std::log(32 * _M_t * __1p in _M_initialize()
1074 _M_s1 = std::sqrt(__np * __1p) * (1 + _M_d1 / (4 * __np)); in _M_initialize()
1075 _M_s2 = std::sqrt(__np * __1p) * (1 + _M_d2 / (4 * _M_t * __1p)); in _M_initialize()
1076 _M_c = 2 * _M_d1 / __np; in _M_initialize()
1086 _M_lf = (std::tr1::lgamma(__np + 1) in _M_initialize()
1087 + std::tr1::lgamma(_M_t - __np + 1)); in _M_initialize()
1147 const _RealType __np = std::floor(_M_t * __p12); in operator ()() local
[all …]
/NextBSD/contrib/libc++/include/
D__hash_table1125 void __deallocate(__node_pointer __np) _NOEXCEPT;
1290 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate(__node_pointer __np)
1294 while (__np != nullptr)
1296 __node_pointer __next = __np->__next_;
1303 if (__i->__node_ == __np)
1312 __node_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1313 __node_traits::deallocate(__na, __np, 1);
1314 __np = __next;
1695 __node_pointer __np = __p.__node_;
1696 __cp->__hash_ = __np->__hash_;
[all …]
Dlocale578 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
579 __thousands_sep = __np.thousands_sep();
580 return __np.grouping();
590 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
591 __decimal_point = __np.decimal_point();
592 __thousands_sep = __np.thousands_sep();
593 return __np.grouping();
988 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__iob.getloc());
990 const string_type __names[2] = {__np.truename(), __np.falsename()};
1221 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
[all …]
D__tree1965 __node_pointer __np = __p.__ptr_;
1966 iterator __r(__np);
1968 if (__begin_node() == __np)
1973 static_cast<__node_base_pointer>(__np));
1975 __node_traits::deallocate(__na, __np, 1);
2271 __node_pointer __np = __p.__ptr_;
2272 if (__begin_node() == __np)
2274 if (__np->__right_ != nullptr)
2275 __begin_node() = static_cast<__node_pointer>(__np->__right_);
2277 __begin_node() = static_cast<__node_pointer>(__np->__parent_);
[all …]
/NextBSD/contrib/libstdc++/include/bits/
Dostream.tcc77 const __num_put_type& __np = __check_facet(this->_M_num_put); in _M_insert() local
78 if (__np.put(*this, *this, this->fill(), __v).failed()) in _M_insert()
Dlocale_facets.tcc193 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); in _M_cache() local
195 _M_grouping_size = __np.grouping().size(); in _M_cache()
197 __np.grouping().copy(__grouping, _M_grouping_size); in _M_cache()
200 && static_cast<signed char>(__np.grouping()[0]) > 0); in _M_cache()
202 _M_truename_size = __np.truename().size(); in _M_cache()
204 __np.truename().copy(__truename, _M_truename_size); in _M_cache()
207 _M_falsename_size = __np.falsename().size(); in _M_cache()
209 __np.falsename().copy(__falsename, _M_falsename_size); in _M_cache()
212 _M_decimal_point = __np.decimal_point(); in _M_cache()
213 _M_thousands_sep = __np.thousands_sep(); in _M_cache()
/NextBSD/contrib/gdb/gdb/
HDgdb_thread_db.h322 extern td_err_e td_ta_get_nthreads (const td_thragent_t *__ta, int *__np);