Searched refs:gen1 (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A 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/ |
H A D | generator-throw.js | 32 function * gen1(a) { 36 var f = gen1({}) 40 f = gen1({ p:"x" }) 45 f = gen1({ p:"b" })
|
H A D | generator-return.js | 22 function * gen1(a) { 26 var f = gen1({}) 30 f = gen1({ p:"x" }) 35 f = gen1({ p:"b" })
|
H A D | generator.js | 24 function * gen1(a = (t = 8)) { 35 new gen1 43 var g = gen1() 53 g = gen1()
|
H A D | generator-yield-iterator.js | 22 function *gen1() { 28 var g = gen1()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | labeledStatementWithLabel_es2015.js | 4 label: async function gen1() { } 29 label: function gen1() {
|
H A D | labeledStatementWithLabel_strict.js | 5 label: async function gen1() { } 31 label: function gen1() {
|
H A D | labeledStatementWithLabel.js | 4 label: async function gen1() { } 58 label: function gen1() {
|
/third_party/libunwind/libunwind/src/mi/ |
H A 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/python/Lib/test/test_asyncio/ |
H A D | test_tasks.py | 3078 gen1 = coro() 3079 self.addCleanup(gen1.close) 3083 asyncio.gather(gen1, gen2) 3088 gen1 = coro() 3091 return asyncio.gather(gen1, gen2) 3102 gen1 = coro() 3104 fut = asyncio.gather(gen1, gen2)
|
/third_party/python/Lib/test/ |
H A D | test_itertools.py | 2207 def gen1(): function 2220 self.assertRaises(AssertionError, list, chain(gen1(), gen2(False))) 2224 self.assertRaises(AssertionError, list, chain(gen1(), gen2(True))) 2228 self.assertRaises(AssertionError, list, cycle(gen1()))
|
Completed in 10 milliseconds