/third_party/boost/libs/random/test/ |
D | test_mt19937.cpp | 55 boost::mt19937 gen1(it, vec.end()); in BOOST_AUTO_TEST_CASE() local 56 BOOST_CHECK_EQUAL(gen1(), 0u); in BOOST_AUTO_TEST_CASE() 57 BOOST_CHECK_EQUAL(gen1(), 0u); in BOOST_AUTO_TEST_CASE() 63 BOOST_CHECK_EQUAL(gen1, gen2); in BOOST_AUTO_TEST_CASE() 71 boost::mt19937 gen1(it, vec.end()); in BOOST_AUTO_TEST_CASE() local 72 BOOST_CHECK_EQUAL(gen1(), 1141379330u); in BOOST_AUTO_TEST_CASE() 73 BOOST_CHECK_EQUAL(gen1(), 0u); in BOOST_AUTO_TEST_CASE() 79 BOOST_CHECK_EQUAL(gen1, gen2); in BOOST_AUTO_TEST_CASE()
|
/third_party/ffmpeg/libavcodec/ |
D | lpc.h | 140 LPC_TYPE gen0[MAX_LPC_ORDER], gen1[MAX_LPC_ORDER]; in compute_ref_coefs() local 143 gen0[i] = gen1[i] = autoc[i + 1]; in compute_ref_coefs() 146 ref[0] = -gen1[0] / ((USE_FIXED || err) ? err : 1); in compute_ref_coefs() 147 err += gen1[0] * ref[0]; in compute_ref_coefs() 152 gen1[j] = gen1[j + 1] + ref[i - 1] * gen0[j]; in compute_ref_coefs() 153 gen0[j] = gen1[j + 1] * ref[i - 1] + gen0[j]; in compute_ref_coefs() 155 ref[i] = -gen1[0] / ((USE_FIXED || err) ? err : 1); in compute_ref_coefs() 156 err += gen1[0] * ref[i]; in compute_ref_coefs()
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | generator-throw.js | 32 function * gen1(a) { generator 36 var f = gen1({}) 40 f = gen1({ p:"x" }) 45 f = gen1({ p:"b" })
|
D | generator-return.js | 22 function * gen1(a) { generator 26 var f = gen1({}) 30 f = gen1({ p:"x" }) 35 f = gen1({ p:"b" })
|
D | generator.js | 24 function * gen1(a = (t = 8)) { generator 35 new gen1 43 var g = gen1() 53 g = gen1()
|
D | generator-yield-iterator.js | 22 function *gen1() { generator 28 var g = gen1()
|
/third_party/typescript/tests/baselines/reference/ |
D | labeledStatementWithLabel_es2015.symbols | 8 label: async function gen1() { } 9 >gen1 : Symbol(gen1, Decl(labeledStatementWithLabel_es2015.ts, 2, 6))
|
D | labeledStatementWithLabel.symbols | 8 label: async function gen1() { } 9 >gen1 : Symbol(gen1, Decl(labeledStatementWithLabel.ts, 2, 6))
|
D | labeledStatementWithLabel_strict.symbols | 9 label: async function gen1() { } 10 >gen1 : Symbol(gen1, Decl(labeledStatementWithLabel_strict.ts, 3, 6))
|
D | labeledStatementWithLabel_strict.types | 13 label: async function gen1() { } 15 >gen1 : () => Promise<void>
|
D | labeledStatementWithLabel.types | 10 label: async function gen1() { } 12 >gen1 : () => Promise<void>
|
D | labeledStatementWithLabel_es2015.types | 10 label: async function gen1() { } 12 >gen1 : () => Promise<void>
|
D | labeledStatementWithLabel_es2015.js | 4 label: async function gen1() { } function 29 label: function gen1() {
|
D | labeledStatementWithLabel_strict.js | 5 label: async function gen1() { } function 31 label: function gen1() {
|
D | labeledStatementWithLabel.js | 4 label: async function gen1() { } function 58 label: function gen1() {
|
D | labeledStatementWithLabel.errors.txt | 8 label: async function gen1() { }
|
D | labeledStatementWithLabel_es2015.errors.txt | 8 label: async function gen1() { }
|
D | labeledStatementWithLabel_strict.errors.txt | 25 label: async function gen1() { }
|
/third_party/boost/libs/uuid/test/ |
D | test_random_generator.cpp | 148 random_generator_mt19937 gen1; in main() local 150 BOOST_TEST_NE(gen1(), gen2()); in main()
|
/third_party/boost/libs/unordered/test/exception/ |
D | merge_exception_tests.cpp | 39 test::random_generator gen1, test::random_generator gen2) in merge_exception_test() argument 45 test::random_values<T1> v1(count1, gen1); in merge_exception_test()
|
/third_party/libunwind/src/mi/ |
D | Gdyn-remote.c | 209 unw_word_t dyn_list_addr, addr, next_addr, gen1, gen2, start_ip, end_ip; in unwi_dyn_remote_find_proc_info() local 229 if (fetchw (as, a, &addr, &gen1, arg) < 0 in unwi_dyn_remote_find_proc_info() 280 while (gen1 != gen2); in unwi_dyn_remote_find_proc_info()
|
/third_party/typescript/tests/cases/conformance/statements/labeledStatements/ |
D | labeledStatementWithLabel.ts | 5 label: async function gen1() { } function
|
D | labeledStatementWithLabel_strict.ts | 5 label: async function gen1() { } function
|
D | labeledStatementWithLabel_es2015.ts | 5 label: async function gen1() { } function
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_tasks.py | 3492 gen1 = coro() 3493 self.addCleanup(gen1.close) 3498 asyncio.gather(gen1, gen2) 3504 gen1 = coro() 3507 return asyncio.gather(gen1, gen2) 3518 gen1 = coro() 3521 fut = asyncio.gather(gen1, gen2)
|