Searched refs:_exp (Results 1 – 13 of 13) 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/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/lame/Dll/ |
D | Makefile.mingw32 | 14 OFILES = BladeMP3EncDLL.o $(DLL_NAME)_exp.o 30 $(DLL_NAME)_exp.o : BladeMP3EncDLL.o 31 … BladeMP3EncDLL.def --output-lib lib$(DLL_NAME).a --output-exp $(DLL_NAME)_exp.o --dllname $(DLL_N…
|
/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/elfutils/libelf/ |
D | libelfP.h | 597 __typeof__ (exp) _exp = (exp); \ 598 if (*_var != _exp) \ 600 *_var = _exp; \
|
/third_party/python/Lib/test/ |
D | test_random.py | 1168 _exp = random._exp
|
D | test_decimal.py | 4628 self.assertEqual(d1._exp, b1._exp) 4631 self.assertEqual(d2._exp, b2._exp) 4636 self.assertEqual(d1._exp, b1._exp) 4641 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)
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V5.md | 1406 …* CVE-2015-3193 "BN\_mod\_exp may produce incorrect results on x86\_64", an attack may be possible…
|
D | CHANGELOG_V4.md | 2930 …* CVE-2015-3193 "BN\_mod\_exp may produce incorrect results on x86\_64", an attack may be possible…
|