Home
last modified time | relevance | path

Searched refs:next (Results 976 - 1000 of 12933) sorted by relevance

1...<<31323334353637383940>>...518

/third_party/curl/tests/unit/
H A Dunit1300.c108 * 1: the element next to head should be our newly created element
114 fail_unless(llist.head->next->ptr == &unusedData_case3,
115 "the node next to head is not getting set correctly");
124 * 1: the element next to head should be our newly created element
130 fail_unless(llist.head->next->ptr == &unusedData_case2,
131 "the node next to head is not getting set correctly");
143 * 2: head will be the head->next
149 element_next = head->next;
169 * 2: element->previous->next will be element->next
[all...]
/third_party/ffmpeg/libavcodec/
H A Dxbmdec.c75 const uint8_t *next; in xbm_decode_frame() local
91 next = memchr(ptr, '{', avpkt->size); in xbm_decode_frame()
92 if (!next) in xbm_decode_frame()
93 next = memchr(ptr, '(', avpkt->size); in xbm_decode_frame()
94 if (!next) in xbm_decode_frame()
96 ptr = next + 1; in xbm_decode_frame()
/third_party/ffmpeg/libavformat/
H A Dsdr2.c76 unsigned next; in sdr2_read_packet() local
84 next = avio_rl32(s->pb); in sdr2_read_packet()
85 if (next <= 52) in sdr2_read_packet()
93 if ((ret = av_new_packet(pkt, next - 52 + 24)) < 0) in sdr2_read_packet()
96 ret = avio_read(s->pb, pkt->data + 24, next - 52); in sdr2_read_packet()
102 ret = av_get_packet(s->pb, pkt, next - 52); in sdr2_read_packet()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java103 T aa = ait.next(); in hasRelation()
104 T bb = bit.next(); in hasRelation()
116 aa = ait.next(); in hasRelation()
117 bb = bit.next(); in hasRelation()
123 aa = ait.next(); in hasRelation()
129 bb = bit.next(); in hasRelation()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DBundleGroup.java59 v.addElement(iter.next()); in getItemsAsVector()
83 BundleItem item = (BundleItem)iter.next(); in removeBundleItem()
108 iter.next(); in getBundleItem()
109 return (BundleItem)iter.next(); in getBundleItem()
172 ((BundleItem) iter.next()).writeContents(ps); in writeContents()
185 ((BundleItem) iter.next()).writeContents(w); in writeContents()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DSortedSetRelation.java105 T aa = ait.next(); in hasRelation()
106 T bb = bit.next(); in hasRelation()
118 aa = ait.next(); in hasRelation()
119 bb = bit.next(); in hasRelation()
125 aa = ait.next(); in hasRelation()
131 bb = bit.next(); in hasRelation()
/third_party/jerryscript/jerry-core/ext/
H A Dtracker.c76 new_item->next = item; in StoragePut()
94 IStorageItem* next = item->next; in StorageReset() local
96 item = next; in StorageReset()
116 item->next = NULL; in CreateRefInfoItem()
172 item = item->next; in DumpTracker()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DSelection.java112 caret = next(caret, breaker, direction, true); in nextBound()
121 anchor = next(anchor,breaker,-1,false); in expand()
122 caret = next(caret,breaker,1,false); in expand()
133 anchor = next(anchor,breaker,1,false); in expand()
134 caret = next(caret,breaker,-1,false); in expand()
147 // different = false - move to next boundary, unless on one
148 // true - move to next boundary, even if on one
149 public static int next(int position, BreakIterator breaker, in next() method in Selection
/third_party/ltp/testcases/realtime/func/periodic_cpu_load/
H A Dperiodic_cpu_load_single.c95 nsec_t next, now; in periodic_thread() local
114 next = rt_gettime(); in periodic_thread()
116 next += period; in periodic_thread()
118 if (now > next) { in periodic_thread()
135 if (now > next) { in periodic_thread()
141 rt_nanosleep(next - now); in periodic_thread()
/third_party/ltp/tools/sparse/sparse-src/
H A Dscope.c36 static struct scope builtin_scope = { .next = &builtin_scope };
72 scope->next = *s; in start_scope()
80 scope->next = &builtin_scope; in start_file_scope()
115 *s = scope->next; in end_scope()
170 if (scope == &builtin_scope && block_scope->next == &builtin_scope) in is_outer_scope()
180 inner = inner->next; in is_in_scope()
/third_party/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.c15 * next paragraph) shall be included in all copies or substantial portions
185 const char *next; in pipe_loader_find_module() local
189 for (next = library_paths; *next; library_paths = next + 1) { in pipe_loader_find_module()
190 next = strchrnul(library_paths, ':'); in pipe_loader_find_module()
191 len = next - library_paths; in pipe_loader_find_module()
/third_party/skia/src/sksl/ir/
H A DSkSLForStatement.h37 std::unique_ptr<Expression> next, in ForStatement()
45 , fNext(std::move(next)) in ForStatement()
53 std::unique_ptr<Expression> next,
67 std::unique_ptr<Expression> next,
88 std::unique_ptr<Expression>& next() { in next() function in SkSL::final
92 const std::unique_ptr<Expression>& next() const { in next() function in SkSL::final
34 ForStatement(int line, std::unique_ptr<Statement> initializer, std::unique_ptr<Expression> test, std::unique_ptr<Expression> next, std::unique_ptr<Statement> statement, std::unique_ptr<LoopUnrollInfo> unrollInfo, std::shared_ptr<SymbolTable> symbols) ForStatement() argument
/third_party/skia/src/sksl/lex/
H A DNFAState.h33 NFAState(Kind kind, std::vector<int> next) in NFAState()
35 , fNext(std::move(next)) {} in NFAState()
37 NFAState(char c, std::vector<int> next) in NFAState()
40 , fNext(std::move(next)) {} in NFAState()
46 NFAState(bool inverse, std::vector<bool> accepts, std::vector<int> next) in NFAState()
49 , fNext(std::move(next)) { in NFAState()
/third_party/toybox/lib/
H A Dcommas.c12 char *next, *arg; in comma_args() local
19 while ((next = comma_iterate(&arg, &len))) in comma_args()
20 if ((next = callback(data, next, len))) in comma_args()
22 (int)(5+strlen(toys.which->name)+strlen(err)+next-al->arg), '^'); in comma_args()
23 al = al->next; in comma_args()
45 // returns start of next entry or NULL if none
47 // advances *list to start of next entry
/third_party/toybox/toys/pending/
H A Dipcrm.c80 for (tmp = TT.mkey; tmp; tmp = tmp->next) do_ipcrm(1, 1, tmp->arg); in ipcrm_main()
81 for (tmp = TT.mid; tmp; tmp = tmp->next) do_ipcrm(0, 1, tmp->arg); in ipcrm_main()
82 for (tmp = TT.qkey; tmp; tmp = tmp->next) do_ipcrm(1, 2, tmp->arg); in ipcrm_main()
83 for (tmp = TT.qid; tmp; tmp = tmp->next) do_ipcrm(0, 2, tmp->arg); in ipcrm_main()
84 for (tmp = TT.skey; tmp; tmp = tmp->next) do_ipcrm(1, 3, tmp->arg); in ipcrm_main()
85 for (tmp = TT.sid; tmp; tmp = tmp->next) do_ipcrm(0, 3, tmp->arg); in ipcrm_main()
/third_party/rust/crates/peeking_take_while/src/
H A Dlib.rs7 //! `peeking_take_while` peeks at the next item in the iterator and runs the
54 //! assert_eq!(iter_xs.next(), Some(11));
57 //! assert_eq!(iter_ys.next(), Some(10));
84 /// `peeking_take_while` peeks at the next item in the iterator and runs the
143 fn next(&mut self) -> Option<Self::Item> { in fmt() functions
198 assert!(it1.next().is_none()); in not_fused()
199 assert_eq!(it1.next(), Some(0)); in not_fused()
200 assert!(it1.next().is_none()); in not_fused()
201 assert_eq!(it1.next(), Some(1)); in not_fused()
215 assert!(it1.next() in fused()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_server_methods.c28 for (m = eap_methods; m; m = m->next) { in eap_server_get_eap_method()
48 for (m = eap_methods; m; m = m->next) { in eap_server_get_type()
116 for (m = eap_methods; m; m = m->next) { in eap_server_method_register()
127 last->next = method; in eap_server_method_register()
147 eap_methods = eap_methods->next; in eap_server_unregister_methods()
171 for (m = eap_methods; m; m = m->next) { in eap_server_get_name()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server_methods.c29 for (m = eap_methods; m; m = m->next) { in eap_server_get_eap_method()
49 for (m = eap_methods; m; m = m->next) { in eap_server_get_type()
118 for (m = eap_methods; m; m = m->next) { in eap_server_method_register()
130 last->next = method; in eap_server_method_register()
150 eap_methods = eap_methods->next; in eap_server_unregister_methods()
174 for (m = eap_methods; m; m = m->next) { in eap_server_get_name()
/third_party/libdrm/intel/
H A Duthash.h227 (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...]
/kernel/linux/linux-5.10/fs/
H A Dpnode.c16 /* return the next shared peer mount of @p */
19 return list_entry(p->mnt_share.next, struct mount, mnt_share); in next_peer()
24 return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave); in first_slave()
34 return list_entry(p->mnt_slave.next, struct mount, mnt_slave); in next_slave()
140 * get the next mount in the propagation tree.
160 struct mount *next = next_peer(m); in propagation_next() local
161 return (next == origin) ? NULL : next; in propagation_next()
162 } else if (m->mnt_slave.next != &master->mnt_slave_list) in propagation_next()
187 struct mount *next; in next_group() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_taprio.c273 u32 base, next, max_list; in lan966x_taprio_gcl_free_get() local
290 next = base; in lan966x_taprio_gcl_free_get()
293 clear_bit(next, free_list); in lan966x_taprio_gcl_free_get()
296 lan_rmw(QSYS_TAS_CFG_CTRL_GCL_ENTRY_NUM_SET(next), in lan966x_taprio_gcl_free_get()
300 next = lan_rd(lan966x, QSYS_TAS_GCL_CT_CFG2); in lan966x_taprio_gcl_free_get()
301 next = QSYS_TAS_GCL_CT_CFG2_NEXT_GCL_GET(next); in lan966x_taprio_gcl_free_get()
302 } while (base != next); in lan966x_taprio_gcl_free_get()
333 u32 i, base, next; in lan966x_taprio_gcl_setup() local
350 next in lan966x_taprio_gcl_setup()
[all...]
/kernel/linux/linux-6.6/fs/
H A Dpnode.c16 /* return the next shared peer mount of @p */
19 return list_entry(p->mnt_share.next, struct mount, mnt_share); in next_peer()
24 return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave); in first_slave()
34 return list_entry(p->mnt_slave.next, struct mount, mnt_slave); in next_slave()
140 * get the next mount in the propagation tree.
160 struct mount *next = next_peer(m); in propagation_next() local
161 return (next == origin) ? NULL : next; in propagation_next()
162 } else if (m->mnt_slave.next != &master->mnt_slave_list) in propagation_next()
187 struct mount *next; in next_group() local
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dtrace-event-info.c39 struct tracepoint_path *next; member
149 tps = tps->next; in name_in_tp_list()
247 tps = tps->next; in system_in_tp_list()
396 tps = tps->next; in put_tracepoints_path()
424 goto next; in tracepoint_id_to_path()
461 next: in tracepoint_id_to_path()
516 ppath->next = tracepoint_name_to_path(pos->name); in get_tracepoints_path()
517 if (ppath->next) in get_tracepoints_path()
518 goto next; in get_tracepoints_path()
527 ppath->next in get_tracepoints_path()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dgraphparser.c176 * point to the char next after the parsed string
215 AVFilterInOut *next = (*inout)->next; in avfilter_inout_free() local
218 *inout = next; in avfilter_inout_free()
227 links = &((*links)->next); in extract_inout()
232 *links = ret->next; in extract_inout()
233 ret->next = NULL; in extract_inout()
241 element->next = *inouts; in insert_inout()
247 while (*inouts && (*inouts)->next) in append_inout()
248 inouts = &((*inouts)->next); in append_inout()
[all...]
/third_party/mbedtls/library/
H A Dx509_crl.c267 cur_entry->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl_entry)); in x509_get_entries()
269 if (cur_entry->next == NULL) { in x509_get_entries()
273 cur_entry = cur_entry->next; in x509_get_entries()
306 while (crl->version != 0 && crl->next != NULL) { in mbedtls_x509_crl_parse_der()
307 crl = crl->next; in mbedtls_x509_crl_parse_der()
310 if (crl->version != 0 && crl->next == NULL) { in mbedtls_x509_crl_parse_der()
311 crl->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_parse_der()
313 if (crl->next == NULL) { in mbedtls_x509_crl_parse_der()
318 mbedtls_x509_crl_init(crl->next); in mbedtls_x509_crl_parse_der()
319 crl = crl->next; in mbedtls_x509_crl_parse_der()
[all...]

Completed in 13 milliseconds

1...<<31323334353637383940>>...518