Searched refs:_exp (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/ |
D | _pydecimal.py | 567 self._exp = exp - len(fracpart) 575 self._exp = 'N' 577 self._exp = 'n' 581 self._exp = 'F' 591 self._exp = 0 598 self._exp = value._exp 608 self._exp = int(value.exp) 627 self._exp = value[2] 644 self._exp = value[2] 649 self._exp = value[2] [all …]
|
D | random.py | 49 from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil unknown 95 NV_MAGICCONST = 4 * _exp(-0.5) / _sqrt(2.0) 637 return _exp(self.normalvariate(mu, sigma)) 685 if u2 < 1.0 - d * d or u2 <= (1.0 - d) * _exp(d): 734 x = alpha * _exp(v) 759 elif u1 <= _exp(-x):
|
/third_party/boost/boost/random/ |
D | gamma_distribution.hpp | 115 : _exp(result_type(1)), _alpha(alpha_arg), _beta(beta_arg) in gamma_distribution() 124 : _exp(result_type(1)), _alpha(parm.alpha()), _beta(parm.beta()) in gamma_distribution() 155 void reset() { _exp.reset(); } in reset() 170 return _exp(eng) * _beta; in operator ()() 191 result_type y = _exp(eng); in operator ()() 243 && lhs._exp == rhs._exp; in operator ==() 278 exponential_distribution<RealType> _exp; member in boost::random::gamma_distribution
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_smd/ |
D | main.c | 17 static int interrupted, ok, fail, _exp = 111; variable 306 if (fail || ok >= _exp) in main() 307 lwsl_user("Completed: PASS: %d / %d, FAIL: %d\n", ok, _exp, in main() 310 lwsl_user("Completed: ALL PASS: %d / %d\n", ok, _exp); in main() 312 return !(ok >= _exp && !fail); in main()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-async-dns/ |
D | main.c | 15 static int interrupted, dtest, ok, fail, _exp = 26; variable 349 _exp -= 2; in main() 365 if (fail || ok != _exp) in main() 366 lwsl_user("Completed: PASS: %d / %d, FAIL: %d\n", ok, _exp, in main() 369 lwsl_user("Completed: ALL PASS: %d / %d\n", ok, _exp); in main() 371 return !(ok == _exp && !fail); in main()
|
/third_party/ffmpeg/compat/atomics/gcc/ |
D | stdatomic.h | 116 __typeof__(object) _exp = (expected); \ 117 __typeof__(*object) _old = *_exp; \ 118 *_exp = __sync_val_compare_and_swap((object), _old, (desired)); \ 119 *_exp == _old; \
|
/third_party/ltp/testcases/kernel/syscalls/select/ |
D | select_var.h | 15 long _exp; member 36 ._exp = (long)exceptfds, in do_select_faulty_to()
|
/third_party/python/Lib/test/ |
D | test_random.py | 1168 _exp = random._exp
|
D | test_decimal.py | 4610 self.assertEqual(d1._exp, b1._exp) 4613 self.assertEqual(d2._exp, b2._exp) 4618 self.assertEqual(d1._exp, b1._exp) 4623 self.assertEqual(d1._exp, b1._exp)
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 409 return _dec_from_triple(0, '1', dec._exp+len(dec._int)-prec)
|