Home
last modified time | relevance | path

Searched refs:next (Results 801 - 825 of 13055) sorted by relevance

1...<<31323334353637383940>>...523

/kernel/linux/linux-6.6/arch/arc/include/asm/
H A Dswitch_to.h17 #define switch_to(prev, next, last) \
19 dsp_save_restore(prev, next); \
20 fpu_save_restore(prev, next); \
21 last = __switch_to(prev, next);\
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dswitch_to_64.h7 #define prepare_arch_switch(next) \
15 * for l0/l1. It will use one for 'next' and the other to hold
16 * the output value of 'last'. 'next' is not referenced again
21 #define switch_to(prev, next, last) \
26 task_thread_info(next); \
57 : "0" (task_thread_info(next)), \
/third_party/typescript/tests/baselines/reference/
H A DiteratorSpreadInArray2.js3 next() {
16 next() {
33 next() {
44 next() {
H A DiteratorSpreadInCall5.js4 next() {
17 next() {
34 next() {
45 next() {
H A DiteratorSpreadInCall6.js4 next() {
17 next() {
34 next() {
45 next() {
H A DiteratorSpreadInCall7.js4 next() {
17 next() {
34 next() {
45 next() {
/kernel/linux/linux-5.10/drivers/media/test-drivers/vidtv/
H A Dvidtv_channel.c42 curr = curr->next; in vidtv_channel_encoder_destroy()
132 while (head->next) in vidtv_channel_s302m_init()
133 head = head->next; in vidtv_channel_s302m_init()
135 head->next = s302m; in vidtv_channel_s302m_init()
194 curr = curr->next; in vidtv_channel_eit_event_cat_into_new()
197 cur_chnl = cur_chnl->next; in vidtv_channel_eit_event_cat_into_new()
244 curr = curr->next; in vidtv_channel_sdt_serv_cat_into_new()
247 cur_chnl = cur_chnl->next; in vidtv_channel_sdt_serv_cat_into_new()
295 curr = curr->next; in vidtv_channel_pat_prog_cat_into_new()
298 cur_chnl = cur_chnl->next; in vidtv_channel_pat_prog_cat_into_new()
[all...]
H A Dvidtv_psi.h52 struct vidtv_psi_desc *next; member
63 struct vidtv_psi_desc *next; member
79 struct vidtv_psi_desc *next; member
101 struct vidtv_psi_desc *next; member
110 struct vidtv_psi_desc_service_list_entry *next; member
118 struct vidtv_psi_desc *next; member
129 struct vidtv_psi_desc *next; member
168 struct vidtv_psi_table_pat_program *next; member
193 struct vidtv_psi_table_sdt_service *next; member
235 struct vidtv_psi_table_pmt_stream *next; member
657 struct vidtv_psi_table_transport *next; global() member
727 struct vidtv_psi_table_eit_event *next; global() member
[all...]
/kernel/linux/linux-6.6/drivers/media/test-drivers/vidtv/
H A Dvidtv_channel.c42 curr = curr->next; in vidtv_channel_encoder_destroy()
132 while (head->next) in vidtv_channel_s302m_init()
133 head = head->next; in vidtv_channel_s302m_init()
135 head->next = s302m; in vidtv_channel_s302m_init()
194 curr = curr->next; in vidtv_channel_eit_event_cat_into_new()
197 cur_chnl = cur_chnl->next; in vidtv_channel_eit_event_cat_into_new()
244 curr = curr->next; in vidtv_channel_sdt_serv_cat_into_new()
247 cur_chnl = cur_chnl->next; in vidtv_channel_sdt_serv_cat_into_new()
295 curr = curr->next; in vidtv_channel_pat_prog_cat_into_new()
298 cur_chnl = cur_chnl->next; in vidtv_channel_pat_prog_cat_into_new()
[all...]
H A Dvidtv_psi.h52 struct vidtv_psi_desc *next; member
63 struct vidtv_psi_desc *next; member
79 struct vidtv_psi_desc *next; member
101 struct vidtv_psi_desc *next; member
110 struct vidtv_psi_desc_service_list_entry *next; member
118 struct vidtv_psi_desc *next; member
129 struct vidtv_psi_desc *next; member
168 struct vidtv_psi_table_pat_program *next; member
193 struct vidtv_psi_table_sdt_service *next; member
235 struct vidtv_psi_table_pmt_stream *next; member
657 struct vidtv_psi_table_transport *next; global() member
727 struct vidtv_psi_table_eit_event *next; global() member
[all...]
/third_party/libfuse/lib/
H A Dfuse_loop_mt.c43 struct fuse_worker *next; member
108 static void list_add_worker(struct fuse_worker *w, struct fuse_worker *next) in list_add_worker() argument
110 struct fuse_worker *prev = next->prev; in list_add_worker()
111 w->next = next; in list_add_worker()
113 prev->next = w; in list_add_worker()
114 next->prev = w; in list_add_worker()
120 struct fuse_worker *next = w->next; in list_del_worker() local
121 prev->next in list_del_worker()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_bridge.c12 * next paragraph) shall be included in all copies or substantial portions
70 * Bridges are responsible for linking themselves with the next bridge in the
665 struct drm_bridge *next, *limit; in drm_atomic_bridge_chain_post_disable() local
676 next = list_next_entry(bridge, chain_node); in drm_atomic_bridge_chain_post_disable()
678 if (next->pre_enable_prev_first) { in drm_atomic_bridge_chain_post_disable()
679 /* next bridge had requested that prev in drm_atomic_bridge_chain_post_disable()
682 limit = next; in drm_atomic_bridge_chain_post_disable()
684 /* Find the next bridge that has NOT requested in drm_atomic_bridge_chain_post_disable()
687 list_for_each_entry_from(next, &encoder->bridge_chain, in drm_atomic_bridge_chain_post_disable()
689 if (next in drm_atomic_bridge_chain_post_disable()
755 struct drm_bridge *iter, *next, *limit; drm_atomic_bridge_chain_pre_enable() local
[all...]
/third_party/lwip/src/core/ipv6/
H A Dip6_frag.c128 r = r->next; in ip6_reass_tmr()
132 /* get the next pointer before freeing */ in ip6_reass_tmr()
133 r = r->next; in ip6_reass_tmr()
153 r = r->next; in ip6_reass_tmr_tick()
216 /* get the next pointer before freeing */ in ip6_reass_free_complete_datagram()
226 reassdatagrams = ipr->next; in ip6_reass_free_complete_datagram()
230 if (prev->next == ipr) { in ip6_reass_free_complete_datagram()
233 prev = prev->next; in ip6_reass_free_complete_datagram()
236 prev->next = ipr->next; in ip6_reass_free_complete_datagram()
[all...]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Dexmutex.c45 if (obj_desc->mutex.next) { in acpi_ex_unlink_mutex()
46 (obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev; in acpi_ex_unlink_mutex()
50 (obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next; in acpi_ex_unlink_mutex()
61 thread->acquired_mutex_list = obj_desc->mutex.next; in acpi_ex_unlink_mutex()
89 obj_desc->mutex.next = list_head; in acpi_ex_link_mutex()
463 union acpi_operand_object *next = thread->acquired_mutex_list; in acpi_ex_release_all_mutexes() local
470 while (next) { in acpi_ex_release_all_mutexes()
471 obj_desc = next; in acpi_ex_release_all_mutexes()
496 next in acpi_ex_release_all_mutexes()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/mm/nohash/
H A Dmmu_context.c261 void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next, in switch_mmu_context() argument
274 cpu, next, next->context.active, next->context.id); in switch_mmu_context()
278 next->context.active++; in switch_mmu_context()
289 id = next->context.id; in switch_mmu_context()
292 if (context_mm[id] != next) in switch_mmu_context()
294 next, id, id, context_mm[id]); in switch_mmu_context()
331 context_mm[id] = next; in switch_mmu_context()
332 next in switch_mmu_context()
[all...]
/kernel/linux/linux-5.10/drivers/media/pci/cobalt/
H A Dcobalt-omnitek.c155 dma_addr_t next = desc->bus; in descriptor_list_create() local
164 WARN_ON(next & 3); in descriptor_list_create()
209 next += sizeof(struct sg_dma_descriptor); in descriptor_list_create()
210 d->next_h = (u32)((u64)next >> 32); in descriptor_list_create()
211 d->next_l = (u32)next | in descriptor_list_create()
253 next += sizeof(struct sg_dma_descriptor); in descriptor_list_create()
263 d->next_h = (u32)((u64)next >> 32); in descriptor_list_create()
264 d->next_l = (u32)next | (to_pci ? WRITE_TO_PCI : 0); in descriptor_list_create()
272 struct sg_dma_desc_info *next) in descriptor_list_chain()
277 if (next in descriptor_list_chain()
271 descriptor_list_chain(struct sg_dma_desc_info *this, struct sg_dma_desc_info *next) descriptor_list_chain() argument
[all...]
/kernel/linux/linux-5.10/sound/soc/au1x/
H A Ddma.c30 struct pcm_period *next; member
56 pointer_next = pointer->next; in au1000_release_dma_link()
92 pointer->next = kmalloc(sizeof(struct pcm_period), in au1000_setup_dma_link()
94 if (!pointer->next) { in au1000_setup_dma_link()
98 pointer = pointer->next; in au1000_setup_dma_link()
101 pointer->next = stream->buffer; in au1000_setup_dma_link()
121 set_dma_addr1(stream->dma, stream->buffer->next->start); in au1000_dma_start()
127 set_dma_addr0(stream->dma, stream->buffer->next->start); in au1000_dma_start()
141 stream->buffer = stream->buffer->next; in au1000_dma_interrupt()
143 set_dma_addr0(stream->dma, stream->buffer->next in au1000_dma_interrupt()
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dblock-range.c85 struct block_range *next, *entry = NULL; in block_range__create() local
102 * be inside/behind the next range. in block_range__create()
109 * If the last node is before, advance one to find the next. in block_range__create()
117 next = rb_entry(n, struct block_range, node); in block_range__create()
119 if (next->start <= end) { /* add head: [start...][n->start...] */ in block_range__create()
126 .end = next->start - 1, in block_range__create()
131 rb_link_left_of_node(&head->node, &next->node); in block_range__create()
242 next = block_range__next(entry); in block_range__create()
243 if (!next) in block_range__create()
247 * If @end is in beyond @entry but not inside @next, ad in block_range__create()
[all...]
/kernel/linux/linux-5.10/lib/
H A Dklist.c22 * next element in the list. It returns NULL if there are no more items.
25 * the next klist_node. It then drops the lock and returns.
368 * klist_next - Ante up next node in list.
372 * node, if there was one. Grab the next node, increment its reference
373 * count, drop the lock, and return that next node.
379 struct klist_node *next; in klist_next() local
385 next = to_klist_node(last->n_node.next); in klist_next()
389 next = to_klist_node(i->i_klist->k_list.next); in klist_next()
[all...]
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H A Dexmutex.c45 if (obj_desc->mutex.next) { in acpi_ex_unlink_mutex()
46 (obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev; in acpi_ex_unlink_mutex()
50 (obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next; in acpi_ex_unlink_mutex()
61 thread->acquired_mutex_list = obj_desc->mutex.next; in acpi_ex_unlink_mutex()
89 obj_desc->mutex.next = list_head; in acpi_ex_link_mutex()
463 union acpi_operand_object *next = thread->acquired_mutex_list; in acpi_ex_release_all_mutexes() local
470 while (next) { in acpi_ex_release_all_mutexes()
471 obj_desc = next; in acpi_ex_release_all_mutexes()
496 next in acpi_ex_release_all_mutexes()
[all...]
/kernel/linux/linux-6.6/drivers/media/pci/cobalt/
H A Dcobalt-omnitek.c155 dma_addr_t next = desc->bus; in descriptor_list_create() local
164 WARN_ON(next & 3); in descriptor_list_create()
209 next += sizeof(struct sg_dma_descriptor); in descriptor_list_create()
210 d->next_h = (u32)((u64)next >> 32); in descriptor_list_create()
211 d->next_l = (u32)next | in descriptor_list_create()
253 next += sizeof(struct sg_dma_descriptor); in descriptor_list_create()
263 d->next_h = (u32)((u64)next >> 32); in descriptor_list_create()
264 d->next_l = (u32)next | (to_pci ? WRITE_TO_PCI : 0); in descriptor_list_create()
272 struct sg_dma_desc_info *next) in descriptor_list_chain()
277 if (next in descriptor_list_chain()
271 descriptor_list_chain(struct sg_dma_desc_info *this, struct sg_dma_desc_info *next) descriptor_list_chain() argument
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dblock-range.c81 struct block_range *next, *entry = NULL; in block_range__create() local
98 * be inside/behind the next range. in block_range__create()
105 * If the last node is before, advance one to find the next. in block_range__create()
113 next = rb_entry(n, struct block_range, node); in block_range__create()
115 if (next->start <= end) { /* add head: [start...][n->start...] */ in block_range__create()
122 .end = next->start - 1, in block_range__create()
127 rb_link_left_of_node(&head->node, &next->node); in block_range__create()
238 next = block_range__next(entry); in block_range__create()
239 if (!next) in block_range__create()
243 * If @end is in beyond @entry but not inside @next, ad in block_range__create()
[all...]
/kernel/linux/linux-6.6/sound/soc/au1x/
H A Ddma.c30 struct pcm_period *next; member
56 pointer_next = pointer->next; in au1000_release_dma_link()
92 pointer->next = kmalloc(sizeof(struct pcm_period), in au1000_setup_dma_link()
94 if (!pointer->next) { in au1000_setup_dma_link()
98 pointer = pointer->next; in au1000_setup_dma_link()
101 pointer->next = stream->buffer; in au1000_setup_dma_link()
121 set_dma_addr1(stream->dma, stream->buffer->next->start); in au1000_dma_start()
127 set_dma_addr0(stream->dma, stream->buffer->next->start); in au1000_dma_start()
141 stream->buffer = stream->buffer->next; in au1000_dma_interrupt()
143 set_dma_addr0(stream->dma, stream->buffer->next in au1000_dma_interrupt()
[all...]
/kernel/linux/linux-6.6/lib/
H A Dbootconfig.c43 * simply a key word or a value. A key node may have a next key node or/and
44 * a child node (both key and value). A value node may have a next value
160 * xbc_node_get_next() - Get the next sibling XBC node
163 * Return the NEXT sibling node of @node. If the node has no next sibling,
170 return node->next ? &xbc_nodes[node->next] : NULL; in xbc_node_get_next()
331 * xbc_node_find_next_leaf() - Find the next leaf node under given node
335 * Search the next leaf node (which means the terminal key node) of @node
337 * Return the next node or NULL if next lea
342 struct xbc_node *next; xbc_node_find_next_leaf() local
612 char *next; xbc_parse_array() local
696 char *next; xbc_parse_kv() local
[all...]
H A Dklist.c22 * next element in the list. It returns NULL if there are no more items.
25 * the next klist_node. It then drops the lock and returns.
368 * klist_next - Ante up next node in list.
372 * node, if there was one. Grab the next node, increment its reference
373 * count, drop the lock, and return that next node.
379 struct klist_node *next; in klist_next() local
385 next = to_klist_node(last->n_node.next); in klist_next()
389 next = to_klist_node(i->i_klist->k_list.next); in klist_next()
[all...]

Completed in 14 milliseconds

1...<<31323334353637383940>>...523