Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/kernel/tools/testing/selftests/kvm/lib/
H A Dsparsebit.c197 static sparsebit_num_t node_num_set(struct node *nodep) in node_num_set() argument
199 return nodep->num_after + __builtin_popcount(nodep->mask); in node_num_set()
207 struct node *nodep; in node_first() local
209 for (nodep = s->root; nodep && nodep->left; nodep = nodep->left) in node_first()
212 return nodep; in node_first()
221 struct node *nodep = np; in node_next() local
227 if (nodep->right) { in node_next()
228 for (nodep = nodep->right; nodep->left; nodep = nodep->left) in node_next()
230 return nodep; in node_next()
237 while (nodep->parent && nodep == nodep->parent->right) in node_next()
[all …]
/OK3568_Linux_fs/kernel/arch/mips/netlogic/xlr/
H A Dwakeup.c53 struct nlm_soc_info *nodep; in xlr_wakeup_secondary_cpus() local
61 nodep = nlm_get_node(0); in xlr_wakeup_secondary_cpus()
67 nlm_pic_send_ipi(nodep->picbase, i, 1, 1); /* send NMI */ in xlr_wakeup_secondary_cpus()
71 nodep->coremask = 1; in xlr_wakeup_secondary_cpus()
79 nodep->coremask |= (1u << i); in xlr_wakeup_secondary_cpus()
H A Dsetup.c168 struct nlm_soc_info *nodep; in nlm_init_node() local
170 nodep = nlm_current_node(); in nlm_init_node()
171 nodep->picbase = nlm_mmio_base(NETLOGIC_IO_PIC_OFFSET); in nlm_init_node()
172 nodep->ebase = read_c0_ebase() & MIPS_EBASE_BASE; in nlm_init_node()
173 spin_lock_init(&nodep->piclock); in nlm_init_node()
/OK3568_Linux_fs/u-boot/cmd/
H A Dfdt.c52 static int fdt_value_env_set(const void *nodep, int len, const char *var) in fdt_value_env_set() argument
54 if (is_printable_string(nodep, len)) in fdt_value_env_set()
55 env_set(var, (void *)nodep); in fdt_value_env_set()
59 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep)); in fdt_value_env_set()
68 *(unsigned int *)(nodep + i)); in fdt_value_env_set()
221 char *nodep; /* new node to add */ in do_fdt() local
232 nodep = argv[3]; in do_fdt()
243 err = fdt_add_subnode(working_fdt, nodeoffset, nodep); in do_fdt()
313 const void *nodep; /* property node pointer */ in do_fdt() local
379 nodep = fdt_getprop( in do_fdt()
[all …]
/OK3568_Linux_fs/kernel/arch/mips/netlogic/xlp/
H A Dnlm_hal.c54 struct nlm_soc_info *nodep; in nlm_node_init() local
56 nodep = nlm_get_node(node); in nlm_node_init()
58 nodep->coremask = 1; /* node 0, boot cpu */ in nlm_node_init()
59 nodep->sysbase = nlm_get_sys_regbase(node); in nlm_node_init()
60 nodep->picbase = nlm_get_pic_regbase(node); in nlm_node_init()
61 nodep->ebase = read_c0_ebase() & MIPS_EBASE_BASE; in nlm_node_init()
63 nodep->socbus = xlp9xx_get_socbus(node); in nlm_node_init()
65 nodep->socbus = 0; in nlm_node_init()
66 spin_lock_init(&nodep->piclock); in nlm_node_init()
H A Dwakeup.c111 struct nlm_soc_info *nodep; in xlp_enable_secondary_cores() local
133 nodep = nlm_get_node(n); in xlp_enable_secondary_cores()
148 fusemask = nlm_read_sys_reg(nodep->sysbase, in xlp_enable_secondary_cores()
187 if (!xlp_wakeup_core(nodep->sysbase, n, core)) in xlp_enable_secondary_cores()
191 nodep->coremask |= 1u << core; in xlp_enable_secondary_cores()
/OK3568_Linux_fs/u-boot/tools/
H A Dfit_info.c47 const void *nodep; /* property node pointer */ in main() local
96 nodep = fdt_getprop(fit_blob, nodeoffset, propertyname, &len); in main()
104 printf("OFF: %d\n", (int)(nodep - fit_blob)); in main()
105 printf("END: %d\n", (int)(nodep + len - fit_blob)); in main()
/OK3568_Linux_fs/u-boot/board/BuR/common/
H A Dcommon.c122 const char *nodep = 0; in load_lcdtiming() local
172 nodep = fdt_getprop(gd->fdt_blob, nodeoff, "rotation", NULL); in load_lcdtiming()
173 if (nodep != 0) { in load_lcdtiming()
174 if (strcmp(nodep, "cw") == 0) in load_lcdtiming()
176 else if (strcmp(nodep, "ud") == 0) in load_lcdtiming()
178 else if (strcmp(nodep, "ccw") == 0) in load_lcdtiming()
328 const char *nodep = buf; in br_summaryscreen_printdtb() local
353 nodep = fdt_getprop(gd->fdt_blob, nodeoffset, name, &len); in br_summaryscreen_printdtb()
355 if (nodep && strlen(nodep) > 1) in br_summaryscreen_printdtb()
356 lcd_printf("%s %s %s", prefix, nodep, suffix); in br_summaryscreen_printdtb()
/OK3568_Linux_fs/kernel/arch/mips/netlogic/common/
H A Dirq.c213 struct nlm_soc_info *nodep; in nlm_init_node_irqs() local
217 nodep = nlm_get_node(node); in nlm_init_node_irqs()
218 nodep->irqmask = PERCPU_IRQ_MASK; in nlm_init_node_irqs()
223 nodep->irqmask |= 1ull << i; in nlm_init_node_irqs()
227 nlm_pic_init_irt(nodep->picbase, irt, i, in nlm_init_node_irqs()
/OK3568_Linux_fs/kernel/lib/
H A Dradix-tree.c84 struct radix_tree_node **nodep, unsigned long index) in radix_tree_descend() argument
89 *nodep = (void *)entry; in radix_tree_descend()
387 struct radix_tree_node **nodep, unsigned long *maxindex) in radix_tree_load_root() argument
391 *nodep = node; in radix_tree_load_root()
597 unsigned long index, struct radix_tree_node **nodep, in __radix_tree_create() argument
638 if (nodep) in __radix_tree_create()
639 *nodep = node; in __radix_tree_create()
746 unsigned long index, struct radix_tree_node **nodep, in __radix_tree_lookup() argument
772 if (nodep) in __radix_tree_lookup()
773 *nodep = parent; in __radix_tree_lookup()
/OK3568_Linux_fs/kernel/arch/mips/pci/
H A Dmsi-xlp.c468 struct nlm_soc_info *nodep; in xlp_init_node_msi_irqs() local
473 nodep = nlm_get_node(node); in xlp_init_node_msi_irqs()
481 md->node = nodep; in xlp_init_node_msi_irqs()
503 nlm_pic_init_irt(nodep->picbase, irt, in xlp_init_node_msi_irqs()
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dcpumap.h28 int cpu_map__build_node_map(struct perf_cpu_map *cpus, struct perf_cpu_map **nodep);
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_iext_tree.c452 struct xfs_iext_node **nodep, in xfs_iext_split_node() argument
456 struct xfs_iext_node *node = *nodep; in xfs_iext_split_node()
464 *nodep = new; in xfs_iext_split_node()
480 *nodep = new; in xfs_iext_split_node()
/OK3568_Linux_fs/u-boot/lib/
H A Dfdtdec.c893 const char *nodep; in fdtdec_get_config_string() local
902 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); in fdtdec_get_config_string()
903 if (!nodep) in fdtdec_get_config_string()
906 return (char *)nodep; in fdtdec_get_config_string()
/OK3568_Linux_fs/kernel/include/linux/
H A Dradix-tree.h220 struct radix_tree_node **nodep, void __rcu ***slotp);
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Dprom_init.c625 static int __init prom_next_node(phandle *nodep) in prom_next_node() argument
629 if ((node = *nodep) != 0 in prom_next_node()
630 && (*nodep = call_prom("child", 1, 1, node)) != 0) in prom_next_node()
632 if ((*nodep = call_prom("peer", 1, 1, node)) != 0) in prom_next_node()
637 if ((*nodep = call_prom("peer", 1, 1, node)) != 0) in prom_next_node()
/OK3568_Linux_fs/kernel/kernel/
H A Dsys.c2704 SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep, in SYSCALL_DEFINE3() argument
2712 if (nodep) in SYSCALL_DEFINE3()
2713 err |= put_user(cpu_to_node(cpu), nodep); in SYSCALL_DEFINE3()
/OK3568_Linux_fs/kernel/tools/perf/
H A Dbuiltin-stat.c1434 struct perf_cpu_map **nodep) in perf_env__build_node_map() argument
1436 return cpu_map__build_map(cpus, nodep, perf_env__get_node, env); in perf_env__build_node_map()
/OK3568_Linux_fs/kernel/security/selinux/ss/
H A Dpolicydb.c1201 struct constraint_node **nodep, in read_cons_helper() argument
1219 *nodep = c; in read_cons_helper()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/
H A Dlibc.info-44118 void __action_fn_t (const void *nodep, VISIT value, int level);
4200 twalk_with_twalk_r_action (const void *nodep, VISIT which, void *closure0)
4207 closure->action (nodep, which, closure->depth);
4210 closure->action (nodep, which, closure->depth);
4215 closure->action (nodep, which, closure->depth - 1);
4219 closure->action (nodep, which, closure->depth);
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/
H A Dlibc.info-44118 void __action_fn_t (const void *nodep, VISIT value, int level);
4200 twalk_with_twalk_r_action (const void *nodep, VISIT which, void *closure0)
4207 closure->action (nodep, which, closure->depth);
4210 closure->action (nodep, which, closure->depth);
4215 closure->action (nodep, which, closure->depth - 1);
4219 closure->action (nodep, which, closure->depth);