Searched refs:__pr (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _time_facets.c | 190 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mday, __STATIC_CAST(_Ch*, 0)); in _STLP_WEAK() local 191 if (!__pr || __t->tm_mday < 1 || __t->tm_mday > 31) { in _STLP_WEAK() 199 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0)); in _STLP_WEAK() local 200 if (!__pr) in _STLP_WEAK() 206 bool __pr = __get_decimal_integer(__first, __last, __t->tm_yday, __STATIC_CAST(_Ch*, 0)); in _STLP_WEAK() local 207 if (!__pr) in _STLP_WEAK() 213 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mon, __STATIC_CAST(_Ch*, 0)); in _STLP_WEAK() local 215 if (!__pr || __t->tm_mon < 0 || __t->tm_mon > 11) { in _STLP_WEAK() 223 bool __pr = __get_decimal_integer(__first, __last, __t->tm_min, __STATIC_CAST(_Ch*, 0)); in _STLP_WEAK() local 224 if (!__pr) in _STLP_WEAK() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | random | 4015 binomial_distribution<_IntType>::operator()(_URNG& __g, const param_type& __pr) 4017 if (__pr.__t_ == 0 || __pr.__p_ == 0) 4019 if (__pr.__p_ == 1) 4020 return __pr.__t_; 4022 double __u = __gen(__g) - __pr.__pr_; 4024 return __pr.__r0_; 4025 double __pu = __pr.__pr_; 4027 result_type __ru = __pr.__r0_; 4033 __pd *= __rd / (__pr.__odds_ratio_ * (__pr.__t_ - __rd + 1)); 4040 if (__ru <= __pr.__t_) [all …]
|