/third_party/ffmpeg/libavcodec/ |
H A D | g729_parser.c | 44 int next; in g729_parse() local 67 next = s->remaining; in g729_parse() 70 next = END_NOT_FOUND; in g729_parse() 74 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0 || !buf_size) { in g729_parse() 84 return next; in g729_parse()
|
H A D | gsm_parser.c | 45 int next; in gsm_parse() local 66 next = s->remaining; in gsm_parse() 69 next = END_NOT_FOUND; in gsm_parse() 73 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0 || !buf_size) { in gsm_parse() 83 return next; in gsm_parse()
|
H A D | dct.c | 79 float next = -0.5f * (data[0] - data[n]); in dct_calc_I_c() local 90 next += c; in dct_calc_I_c() 99 data[1] = next; in dct_calc_I_c() 110 float next = data[n - 1]; in dct_calc_III_c() local 123 data[1] = 2 * next; in dct_calc_III_c() 142 float next; in dct_calc_II_c() local 158 next = data[1] * 0.5; in dct_calc_II_c() 168 data[i + 1] = next; in dct_calc_II_c() 170 next += s * inr - c * ini; in dct_calc_II_c()
|
H A D | vc1_parser.c | 141 int next = END_NOT_FOUND; in vc1_parse() local 148 next = 0; in vc1_parse() 168 // Header unescaping terminates early due to detection of next start code in vc1_parse() 219 next = i - 4; in vc1_parse() 232 next = buf_size; in vc1_parse() 234 if (ff_combine_frame(&vpc->pc, next, &buf, &buf_size) < 0) { in vc1_parse() 243 * then on the next call then we'll have been unhelpfully rewound in vc1_parse() 250 if (next < 0 && next != END_NOT_FOUND) in vc1_parse() 251 vpc->bytes_to_skip += next; in vc1_parse() [all...] |
/third_party/libwebsockets/lib/drivers/pwm/ |
H A D | pwm.c | 46 sine_lu(int n, int next) in sine_lu() argument 51 return 32768 + sineq16[(n & 15) + next]; in sine_lu() 54 return 32768 + sineq16[15 - (n & 15) + (!next)]; in sine_lu() 57 return 32768 - sineq16[(n & 15) + next]; in sine_lu() 60 return 32768 - sineq16[15 - (n & 15) + (!next)]; in sine_lu()
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | typedarray-prototype-values.js | 40 var current_item = iterator.next (); 41 var symbol_current_item = symbol_iterator.next (); 50 current_item = iterator.next (); 51 symbol_current_item = symbol_iterator.next (); 73 current_item = iterator.next ();
|
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/ |
H A D | string.rs | 21 .next() 24 if wide_surrogate.next().is_some() 51 .next() 55 || wide_surrogate.next().is_some() 57 .next()
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | options.c | 101 for (i = qualifier_data->first; i != NULL; i = i->next) { in get_icc_profile_for_qualifier() 260 opt->valuelist = opt->valuelist->next; in free_option() 265 opt->choicelist = opt->choicelist->next; in free_option() 270 opt->paramlist = opt->paramlist->next; in free_option() 294 for (item = qualifier_data->first; item != NULL; item = item->next) { in options_free() 309 optionlist = optionlist->next; in options_free() 326 for (opt = optionlist; opt; opt = opt->next) in option_count() 339 for (opt = optionlist; opt; opt = opt->next) { in find_option() 375 for (last = optionlist; last->next; last = last->next); in assure_option() 2135 struct page_range *next; global() member [all...] |
/third_party/mksh/ |
H A D | jobs.c | 44 Proc *next; member 52 /* next process in pipeline (if any) */ 53 Proc *next; member 92 Job *next; /* next job in list */ member 292 for (j = job_list; j != NULL; j = j->next) { in j_exit() 473 p->next = NULL; 486 last_proc->next = p; 639 for (p = j->proc_list; p; p = p->next) 730 for (j = job_list; j; j = j->next) [all...] |
/third_party/lwip/src/core/ |
H A D | memp.c | 107 for (h = t->next; (t != NULL) && (h != NULL); t = t->next, in memp_sanity() 108 h = ((h->next != NULL) ? h->next->next : NULL)) { in memp_sanity() 195 memp->next = *desc->tab; in memp_init_pool() 268 *desc->tab = memp->next; in do_memp_malloc_pool() 270 memp->next = NULL; in do_memp_malloc_pool() 385 memp->next = *desc->tab; in do_memp_free_pool()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | memtrap.c | 49 pa_memtrap *next[2], *prev[2]; member 81 for (m = memtraps[j]; m; m = m->next[j]) in signal_handler() 115 if ((m->next[j] = memtraps[j])) in memtrap_link() 116 m->next[j]->prev[j] = m; in memtrap_link() 124 if (m->next[j]) in memtrap_unlink() 125 m->next[j]->prev[j] = m->prev[j]; in memtrap_unlink() 128 m->prev[j]->next[j] = m->next[j]; in memtrap_unlink() 130 memtraps[j] = m->next[j]; in memtrap_unlink()
|
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | transpose.c | 85 mpd_size_t next; in swap_halfrows_pow2() local 123 next = mulmod_size_t(hn, r, m); in swap_halfrows_pow2() 124 hp = matrix + next*cols/2; in swap_halfrows_pow2() 126 while (next != hn) { in swap_halfrows_pow2() 132 done[next/dbits] |= mpd_bits[next%dbits]; in swap_halfrows_pow2() 134 next = mulmod_size_t(next, r, m); in swap_halfrows_pow2() 135 hp = matrix + next*cols/2; in swap_halfrows_pow2()
|
/third_party/skia/fuzz/ |
H A D | FuzzSkParagraph.cpp | 75 while (iter.next(&path)) { in ResourceFontCollection() 149 fuzz->next(&mark_count); in AddZalgoText() 152 fuzz->next(&mark_type, &mark_index); in AddZalgoText() 199 fuzz->next(&pop); in RemoveStyle() 208 fuzz->next(&text_type); in AddStyleAndText() 227 fuzz->next(&hinting); in BuildParagraphStyle() 241 fuzz->next(&ml); in BuildParagraphStyle() 246 fuzz->next(&h); in BuildParagraphStyle() 281 fuzz->next(&layout_width); in DEF_FUZZ()
|
H A D | FuzzPathop.cpp | 50 fuzz->next(&isSame); in DEF_FUZZ() 92 fuzz->next(&isSame); in DEF_FUZZ() 125 fuzz->next(&operation); in BuildPath() 134 fuzz->next(&a, &b); in BuildPath() 143 fuzz->next(&a, &b); in BuildPath() 152 fuzz->next(&a, &b, &c, &d); in BuildPath() 161 fuzz->next(&a, &b, &c, &d, &e); in BuildPath() 170 fuzz->next(&a, &b, &c, &d, &e, &f); in BuildPath() 191 fuzz->next(&op); in DEF_FUZZ()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | vlan_init.c | 100 vlan = vlan->next; in vlan_dynamic_add() 110 struct hostapd_vlan *next; in vlan_dynamic_remove() local 113 next = vlan->next; in vlan_dynamic_remove() 128 vlan = next; in vlan_dynamic_remove() 164 vlan->next = hapd->conf->vlan; in vlan_init() 223 n->next = hapd->conf->vlan; in vlan_add_dynamic() 228 hapd->conf->vlan = n->next; in vlan_add_dynamic() 253 vlan = vlan->next; in vlan_remove_dynamic()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | vlan_init.c | 97 vlan = vlan->next; in vlan_dynamic_add() 107 struct hostapd_vlan *next; in vlan_dynamic_remove() local 110 next = vlan->next; in vlan_dynamic_remove() 125 vlan = next; in vlan_dynamic_remove() 161 vlan->next = hapd->conf->vlan; in vlan_init() 220 n->next = hapd->conf->vlan; in vlan_add_dynamic() 225 hapd->conf->vlan = n->next; in vlan_add_dynamic() 250 vlan = vlan->next; in vlan_remove_dynamic()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
H A D | mutex.cc | 164 // The returned value should be used as `c` for the next call to `MutexDelay`. 302 SynchEvent *next ABSL_GUARDED_BY(synch_event_mu); 334 e = e->next) { in EnsureSynchEvent() 349 e->next = synch_event[h]; in EnsureSynchEvent() 387 pe = &e->next) { in ForgetSynchEvent() 391 *pe = e->next; in ForgetSynchEvent() 410 e = e->next) { in GetSynchEvent() 782 // The next several routines maintain the per-thread next and skip fields 785 // last element, and head->next i 1153 PerThreadSynch *next = w->next; Wakeup() local [all...] |
/third_party/libdrm/intel/ |
H A D | uthash.h | 227 (add)->hh.next = NULL; \ 229 (head)->hh.tbl->tail->next = (add); \ 240 (add)->hh.next = NULL; \ 250 } while ((_hs_iter = _hs_iter->next)); \ 252 (add)->hh.next = _hs_iter; \ 254 HH_FROM_ELMT((head)->hh.tbl, _hs_iter->prev)->next = (add); \ 291 (add)->hh.next = NULL; \ 340 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ 356 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ 1066 void *next; /* next element in app order */ global() member [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_ssa.cpp | 84 for (IteratorRef it = cfg->iteratorDFS(true); !it->end(); it->next(), ++i) { in DominatorTree() 102 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) { in buildDFS() 145 for (Graph::EdgeIterator ei = nw->incident(); !ei.end(); ei.next()) { in build() 194 for (IteratorRef dtIt = iteratorDFS(false); !dtIt->end(); dtIt->next()) { in findDominanceFrontiers() 200 for (succIt = bb->cfg.outgoing(); !succIt.end(); succIt.next()) { in findDominanceFrontiers() 206 for (chldIt = bb->dom.outgoing(); !chldIt.end(); chldIt.next()) { in findDominanceFrontiers() 210 for (; !dfIt.end(); dfIt.next()) { in findDominanceFrontiers() 230 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in buildLiveSetsPreSSA() 245 for (Instruction *i = bb->getEntry(); i; i = i->next) { in buildLiveSetsPreSSA() 271 for (Graph::EdgeIterator ei = bb->cfg.incident(); !ei.end(); ei.next()) { in buildDefSetsPreSSA() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | iteratorSpreadInArray2.js | 3 next() { 16 next() { 33 next() {
44 next() {
|
H A D | iteratorSpreadInCall5.js | 4 next() { 17 next() { 34 next() {
45 next() {
|
H A D | iteratorSpreadInCall6.js | 4 next() { 17 next() { 34 next() {
45 next() {
|
H A D | iteratorSpreadInCall7.js | 4 next() { 17 next() { 34 next() {
45 next() {
|
/third_party/icu/icu4c/source/common/ |
H A D | locdistance.cpp | 99 // is as good as a perfect match for the next following desired locale. in LocaleDistance() 266 UStringTrieResult result = iter.resetToState64(startState).next(u'*'); // <*, *> in getDesSuppScriptDistance() 293 UStringTrieResult result = iter.next(uprv_invCharToAscii(desired) | END_OF_SUBTAG); in getRegionPartitionsDistance() 295 result = iter.next(uprv_invCharToAscii(supported) | END_OF_SUBTAG); in getRegionPartitionsDistance() 310 UStringTrieResult result = iter.next(uprv_invCharToAscii(desired) | END_OF_SUBTAG); in getRegionPartitionsDistance() 314 result = iter.next(uprv_invCharToAscii(supported) | END_OF_SUBTAG); in getRegionPartitionsDistance() 359 iter.resetToState64(startState).next(u'*'); // <*, *> in getFallbackRegionDistance() 375 uint8_t next = *++s; in trieNext() local 376 if (next != 0) { in trieNext() 377 if (!USTRINGTRIE_HAS_NEXT(iter.next( in trieNext() [all...] |
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-promise.c | 141 ecma_value_t next = ecma_op_iterator_step (iterator); in ecma_builtin_promise_perform_race() local 143 if (ECMA_IS_VALUE_ERROR (next)) in ecma_builtin_promise_perform_race() 146 return next; in ecma_builtin_promise_perform_race() 150 if (ecma_is_value_false (next)) in ecma_builtin_promise_perform_race() 159 ecma_value_t next_val = ecma_op_iterator_value (next); in ecma_builtin_promise_perform_race() 160 ecma_free_value (next); in ecma_builtin_promise_perform_race() 353 ecma_value_t next = ecma_op_iterator_step (iterator); in ecma_builtin_promise_perform_all() local 355 if (ECMA_IS_VALUE_ERROR (next)) in ecma_builtin_promise_perform_all() 362 if (ecma_is_value_false (next)) in ecma_builtin_promise_perform_all() 395 ecma_value_t next_value = ecma_op_iterator_value (next); in ecma_builtin_promise_perform_all() [all...] |