Home
last modified time | relevance | path

Searched refs:nextp (Results 1 – 23 of 23) sorted by relevance

/openbmc/linux/kernel/cgroup/
H A Drstat.c130 struct cgroup **nextp; in cgroup_rstat_cpu_pop_updated() local
133 nextp = &prstatc->updated_children; in cgroup_rstat_cpu_pop_updated()
134 while (*nextp != pos) { in cgroup_rstat_cpu_pop_updated()
137 nrstatc = cgroup_rstat_cpu(*nextp, cpu); in cgroup_rstat_cpu_pop_updated()
138 WARN_ON_ONCE(*nextp == parent); in cgroup_rstat_cpu_pop_updated()
139 nextp = &nrstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
141 *nextp = rstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-links.patch32 for (lp = ihead; lp != NULL; lp = lp->nextp)
62 nextl = l->nextp;
77 struct linkbuf *nextp;
H A Drdist-6.1.5-cleanup.patch517 nextl = l->nextp;
/openbmc/linux/net/ipv4/
H A Dinet_fragment.c456 struct sk_buff **nextp = NULL; in inet_frag_reasm_prepare() local
531 nextp = &clone->next; in inet_frag_reasm_prepare()
533 nextp = &skb_shinfo(head)->frag_list; in inet_frag_reasm_prepare()
551 return nextp; in inet_frag_reasm_prepare()
560 struct sk_buff **nextp = reasm_data; in inet_frag_reasm_finish() local
601 *nextp = fp; in inet_frag_reasm_finish()
602 nextp = &fp->next; in inet_frag_reasm_finish()
618 *nextp = NULL; in inet_frag_reasm_finish()
/openbmc/linux/arch/riscv/mm/
H A Dinit.c569 pmd_t *nextp; in create_pud_mapping() local
582 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
583 memset(nextp, 0, PAGE_SIZE); in create_pud_mapping()
586 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
596 pud_t *nextp; in create_p4d_mapping() local
609 nextp = pt_ops.get_pud_virt(next_phys); in create_p4d_mapping()
610 memset(nextp, 0, PAGE_SIZE); in create_p4d_mapping()
654 pgd_next_t *nextp; in create_pgd_mapping() local
667 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping()
668 memset(nextp, 0, PAGE_SIZE); in create_pgd_mapping()
[all …]
/openbmc/linux/sound/pci/emu10k1/
H A Dmemory.c95 static int search_empty_map_area(struct snd_emu10k1 *emu, int npages, struct list_head **nextp) in search_empty_map_area() argument
109 *nextp = pos; in search_empty_map_area()
122 *nextp = pos; in search_empty_map_area()
125 *nextp = candidate; in search_empty_map_area()
262 struct list_head *p, *nextp; in snd_emu10k1_memblk_map() local
279 for (; p != &emu->mapped_order_link_head; p = nextp) { in snd_emu10k1_memblk_map()
280 nextp = p->next; in snd_emu10k1_memblk_map()
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Dprocess_tree.py251 nextp = process_subtree[idx+1]
252 if nextp.cmd == p.cmd:
256 p.child_list.extend(nextp.child_list)
257 self.merge_processes(p, nextp)
/openbmc/qemu/util/
H A Dqtree.c821 QTreeNode *nextp = node; in q_tree_remove_internal() local
828 path[++idx] = nextp = next; in q_tree_remove_internal()
836 if (nextp != node) { in q_tree_remove_internal()
838 nextp->left = next->right; in q_tree_remove_internal()
840 nextp->left_child = FALSE; in q_tree_remove_internal()
842 nextp->balance += 1; in q_tree_remove_internal()
/openbmc/linux/kernel/time/
H A Dtick-sched.c60 ktime_t delta, nextp; in tick_do_update_jiffies64() local
83 nextp = tick_next_period; in tick_do_update_jiffies64()
86 if (ktime_before(now, nextp)) in tick_do_update_jiffies64()
123 nextp = ktime_add_ns(last_jiffies_update, TICK_NSEC); in tick_do_update_jiffies64()
132 smp_store_release(&tick_next_period, nextp); in tick_do_update_jiffies64()
138 tick_next_period = nextp; in tick_do_update_jiffies64()
/openbmc/linux/fs/fat/
H A Dfatent.c199 u8 *nextp = ent12_p[1] + 1 + (fatent->entry & 1); in fat12_ent_next() local
207 if (nextp < (u8 *)(bhs[0]->b_data + (bhs[0]->b_size - 1))) { in fat12_ent_next()
208 ent12_p[0] = nextp - 1; in fat12_ent_next()
209 ent12_p[1] = nextp; in fat12_ent_next()
216 ent12_p[0] = nextp - 1; in fat12_ent_next()
217 ent12_p[1] = nextp; in fat12_ent_next()
/openbmc/linux/drivers/virt/
H A Dfsl_hypervisor.c463 #define nextp(x) (((x) + 1) & (QSIZE - 1)) macro
498 if (dbq->head != nextp(dbq->tail)) { in fsl_hv_queue_doorbell()
505 dbq->tail = nextp(dbq->tail); in fsl_hv_queue_doorbell()
638 dbq->head = nextp(dbq->head); in fsl_hv_read()
/openbmc/linux/arch/sparc/include/asm/
H A Dleon.h228 void leon_node_init(struct device_node *dp, struct device_node ***nextp);
H A Dleon_amba.h181 void _amba_init(struct device_node *dp, struct device_node ***nextp);
/openbmc/linux/drivers/media/usb/au0828/
H A Dau0828-core.c129 struct media_entity_notify *notify, *nextp; in au0828_unregister_media_device() local
135 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) { in au0828_unregister_media_device()
/openbmc/linux/drivers/usb/host/
H A Dehci-dbg.c371 char **nextp, unsigned *sizep) in qh_lines() argument
379 char *next = *nextp; in qh_lines()
467 *nextp = next; in qh_lines()
/openbmc/linux/fs/jfs/
H A Djfs_xtree.c215 static int xtSearch(struct inode *ip, s64 xoff, s64 *nextp, in xtSearch() argument
343 if (nextp) in xtSearch()
344 *nextp = next; in xtSearch()
453 if (nextp) in xtSearch()
454 *nextp = next; in xtSearch()
/openbmc/linux/drivers/media/mc/
H A Dmc-device.c791 struct media_entity_notify *notify, *nextp; in media_device_unregister() local
812 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) in media_device_unregister()
/openbmc/linux/fs/xfs/
H A Dxfs_rtalloc.c246 xfs_rtblock_t *nextp, /* out: next block to try */ in xfs_rtallocate_extent_block() argument
347 *nextp = next; in xfs_rtallocate_extent_block()
/openbmc/qemu/hw/ppc/
H A Dppc.c839 static void __cpu_ppc_store_decr(PowerPCCPU *cpu, int64_t now, uint64_t *nextp, in __cpu_ppc_store_decr() argument
867 *nextp = next; /* nextp is in timebase units */ in __cpu_ppc_store_decr()
/openbmc/linux/kernel/
H A Dworkqueue.c1033 struct work_struct **nextp) in move_linked_works() argument
1052 if (nextp) in move_linked_works()
1053 *nextp = n; in move_linked_works()
1073 struct work_struct **nextp) in assign_work() argument
1090 move_linked_works(work, &collision->scheduled, nextp); in assign_work()
1094 move_linked_works(work, &worker->scheduled, nextp); in assign_work()
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_bmap.c332 xfs_bmbt_rec_t *nextp; /* pointer to next extent */ in xfs_bmap_check_leaf_extents() local
429 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1); in xfs_bmap_check_leaf_extents()
432 xfs_bmbt_disk_get_startoff(nextp)); in xfs_bmap_check_leaf_extents()
433 ep = nextp; in xfs_bmap_check_leaf_extents()
/openbmc/linux/drivers/usb/fotg210/
H A Dfotg210-hcd.c354 char **nextp, unsigned *sizep) in qh_lines() argument
361 char *next = *nextp; in qh_lines()
441 *nextp = next; in qh_lines()
/openbmc/linux/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt.c11343 u8 **nextp) in bnxt_exthdr_check() argument
11396 if (nextp) { in bnxt_exthdr_check()
11399 *nextp = nexthdr; in bnxt_exthdr_check()
11402 *nextp = NULL; in bnxt_exthdr_check()