Home
last modified time | relevance | path

Searched refs:next (Results 1301 - 1325 of 12994) sorted by relevance

1...<<51525354555657585960>>...520

/kernel/linux/linux-5.10/drivers/clocksource/
H A Dtimer-imx-sysctr.c58 u64 next; in sysctr_set_next_event() local
62 next = sysctr_read_counter(); in sysctr_set_next_event()
64 next += delta; in sysctr_set_next_event()
66 cmp_hi = (next >> 32) & 0x00fffff; in sysctr_set_next_event()
67 cmp_lo = next & 0xffffffff; in sysctr_set_next_event()
/kernel/linux/linux-6.6/arch/csky/lib/
H A Dstring.c46 unsigned long last, next; in memcpy() local
56 next = s.as_ulong[0]; in memcpy()
58 last = next; in memcpy()
59 next = s.as_ulong[1]; in memcpy()
62 next << ((BYTES_LONG - distance) * 8); in memcpy()
/kernel/linux/linux-5.10/tools/testing/selftests/vm/
H A Dcompaction_test.c26 struct map_list *next; member
208 entry->next = list; in main()
220 for (entry = list; entry != NULL; entry = entry->next) { in main()
222 if (!entry->next) in main()
224 entry = entry->next; in main()
/kernel/linux/linux-6.6/arch/powerpc/mm/nohash/
H A De500_hugetlbpage.c21 int this, next; in tlb1_next() local
26 next = this + 1; in tlb1_next()
27 if (next >= tcd->esel_max) in tlb1_next()
28 next = tcd->esel_first; in tlb1_next()
30 tcd->esel_next = next; in tlb1_next()
/kernel/linux/linux-6.6/arch/powerpc/kvm/
H A Dbook3s_hv.h45 void accumulate_time(struct kvm_vcpu *vcpu, struct kvmhv_tb_accumulator *next);
46 #define start_timing(vcpu, next) accumulate_time(vcpu, next)
49 #define accumulate_time(vcpu, next) do {} while (0)
50 #define start_timing(vcpu, next) do {} while (0)
/kernel/linux/linux-5.10/drivers/net/fddi/skfp/
H A Dsmttimer.c120 struct smt_timer *next ; in timer_done() local
141 next = smc->t.st_queue ; in timer_done()
144 for ( tm = next ; tm ; tm = next) { in timer_done()
145 next = tm->tm_next ; in timer_done()
/kernel/linux/linux-6.6/drivers/clocksource/
H A Dtimer-imx-sysctr.c58 u64 next; in sysctr_set_next_event() local
62 next = sysctr_read_counter(); in sysctr_set_next_event()
64 next += delta; in sysctr_set_next_event()
66 cmp_hi = (next >> 32) & 0x00fffff; in sysctr_set_next_event()
67 cmp_lo = next & 0xffffffff; in sysctr_set_next_event()
/kernel/linux/linux-6.6/drivers/net/fddi/skfp/
H A Dsmttimer.c116 struct smt_timer *next ; in timer_done() local
137 next = smc->t.st_queue ; in timer_done()
140 for ( tm = next ; tm ; tm = next) { in timer_done()
141 next = tm->tm_next ; in timer_done()
/kernel/linux/linux-6.6/arch/xtensa/include/asm/
H A Dmmu_context.h75 * Start new asid cycle; continue counting with next in get_new_mmu_context()
126 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, in switch_mm() argument
130 int migrated = next->context.cpu != cpu; in switch_mm()
134 next->context.cpu = cpu; in switch_mm()
136 if (migrated || prev != next) in switch_mm()
137 activate_context(next, cpu); in switch_mm()
/kernel/linux/linux-6.6/rust/macros/
H A Dhelpers.rs6 if let Some(TokenTree::Ident(ident)) = it.next() {
14 if let Some(TokenTree::Literal(literal)) = it.next() {
42 if let TokenTree::Punct(punct) = it.next().expect("Reached end of token stream for Punct") {
60 if let TokenTree::Group(group) = it.next().expect("Reached end of token stream for Group") {
68 if it.next().is_some() {
/kernel/linux/linux-6.6/tools/testing/selftests/mm/
H A Dcompaction_test.c26 struct map_list *next; member
208 entry->next = list; in main()
220 for (entry = list; entry != NULL; entry = entry->next) { in main()
222 if (!entry->next) in main()
224 entry = entry->next; in main()
/third_party/ffmpeg/libavcodec/
H A Ddpx_parser.c46 int next = END_NOT_FOUND; in dpx_parse() local
53 next = 0; in dpx_parse()
94 next = i - 3; in dpx_parse()
101 if (ff_combine_frame(&d->pc, next, &buf, &buf_size) < 0) in dpx_parse()
108 return next; in dpx_parse()
H A Dmjpeg_parser.c38 * @return the position of the first byte of the next frame, or -1
111 int next; in jpeg_parse() local
114 next= buf_size; in jpeg_parse()
116 next= find_frame_end(m, buf, buf_size); in jpeg_parse()
118 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { in jpeg_parse()
127 return next; in jpeg_parse()
H A Davs3_parser.c153 int next; in avs3_parse() local
156 next = buf_size; in avs3_parse()
158 next = avs3_find_frame_end(pc, buf, buf_size); in avs3_parse()
159 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { in avs3_parse()
171 return next; in avs3_parse()
H A Ddnxhd_parser.c124 int next; in dnxhd_parse() local
127 next = buf_size; in dnxhd_parse()
129 next = dnxhd_find_frame_end(dctx, buf, buf_size); in dnxhd_parse()
130 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { in dnxhd_parse()
138 return next; in dnxhd_parse()
H A Dpng_parser.c42 int next = END_NOT_FOUND; in png_parse() local
67 next = i; in png_parse()
88 next = ppc->chunk_length + i + 1; in png_parse()
103 if (ff_combine_frame(&ppc->pc, next, &buf, &buf_size) < 0) in png_parse()
110 return next; in png_parse()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCharacterIteration.java25 * Move the iterator forward to the next code point, and return that code point,
29 * @return The next code point.
33 // which leaves it in position for underlying iterator's next() to work. in next32()
36 c = ci.next(); in next32()
42 // For BMP chars, this next() is the real deal. in next32()
43 c = ci.next(); in next32()
61 // The call site does an initial ci.next() and calls this function
64 // middle of a surrogate pair. ci.next() will work correctly
73 char cTrail = ci.next(); in nextTrail32()
98 ci.next(); in previous32()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUCharacterIterator.java158 // next code point in currentCodePoint()
159 next(); in currentCodePoint()
161 // current() after next() actually in currentCodePoint()
194 * Returns the UTF16 code unit at index, and increments to the next code unit (post-increment semantics). If index
197 * @return the next UTF16 code unit, or DONE if the index is at the limit of the text.
201 public abstract int next(); in next() method in UCharacterIterator
204 * Returns the code point at index, and increments to the next code point (post-increment semantics). If index does
205 * not point to a valid surrogate pair, the behavior is the same as <code>next()</code>. Otherwise the iterator is
208 * @return the next codepoint in text, or DONE if the index is at the limit of the text.
213 int ch1 = next(); in nextCodePoint()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DUCharacterIterator.java147 // next code point in currentCodePoint()
148 next(); in currentCodePoint()
150 // current() after next() actually in currentCodePoint()
181 * Returns the UTF16 code unit at index, and increments to the next code unit (post-increment semantics). If index
184 * @return the next UTF16 code unit, or DONE if the index is at the limit of the text.
187 public abstract int next(); in next() method in UCharacterIterator
190 * Returns the code point at index, and increments to the next code point (post-increment semantics). If index does
191 * not point to a valid surrogate pair, the behavior is the same as <code>next()</code>. Otherwise the iterator is
194 * @return the next codepoint in text, or DONE if the index is at the limit of the text.
198 int ch1 = next(); in nextCodePoint()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DCharacterIteration.java29 * Move the iterator forward to the next code point, and return that code point,
33 * @return The next code point.
37 // which leaves it in position for underlying iterator's next() to work. in next32()
40 c = ci.next(); in next32()
46 // For BMP chars, this next() is the real deal. in next32()
47 c = ci.next(); in next32()
65 // The call site does an initial ci.next() and calls this function
68 // middle of a surrogate pair. ci.next() will work correctly
77 char cTrail = ci.next(); in nextTrail32()
102 ci.next(); in previous32()
[all...]
/third_party/libuv/src/win/
H A Dfs-fd-hash-inl.h60 struct uv__fd_hash_entry_group_s* next; member
116 for (group_ptr = group_ptr->next; \
118 group_ptr = group_ptr->next) \
153 new_group_ptr->next = bucket_ptr->data; in uv__fd_hash_add()
187 bucket_ptr->data = old_group_ptr->next; in uv__fd_hash_remove()
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dthreadpool.c11 * The above copyright notice and this permission notice (including the next
63 pool->workqueue = task->next; in threadpool_worker()
160 task->next = NULL; in _mesa_threadpool_queue_task()
169 while (previous && previous->next) in _mesa_threadpool_queue_task()
170 previous = previous->next; in _mesa_threadpool_queue_task()
172 previous->next = task; in _mesa_threadpool_queue_task()
/third_party/node/deps/v8/src/handles/
H A Dlocal-handles.cc26 prev_next_ = data->next; in OpenMainThreadScope()
57 FullObjectSlot(scope_.next)); in Iterate()
70 : scope_.next; in Contains()
80 DCHECK_EQ(scope_.next, scope_.limit); in AddBlock()
83 scope_.next = block; in AddBlock()
/third_party/node/deps/v8/src/objects/
H A Dtemplate-objects.cc41 maybe_cached_template = cached_template.next(); in GetTemplateObject()
89 Handle<HeapObject> next) { in New()
90 DCHECK(next->IsCachedTemplateObject() || next->IsTheHole()); in New()
99 result.set_next(*next); in New()
87 New( Isolate* isolate, int slot_id, Handle<JSArray> template_object, Handle<HeapObject> next) New() argument
/third_party/node/deps/uv/src/win/
H A Dfs-fd-hash-inl.h60 struct uv__fd_hash_entry_group_s* next; member
116 for (group_ptr = group_ptr->next; \
118 group_ptr = group_ptr->next) \
153 new_group_ptr->next = bucket_ptr->data; in uv__fd_hash_add()
187 bucket_ptr->data = old_group_ptr->next; in uv__fd_hash_remove()

Completed in 12 milliseconds

1...<<51525354555657585960>>...520