/third_party/node/deps/cares/src/lib/ |
H A D | ares__slist.h | 40 * - Delete: O(1) -- delete assumes you hold a node pointer 104 /*! Fetch first node in SkipList 111 /*! Fetch last node in SkipList 118 /*! Fetch next node in SkipList 120 * \param[in] node SkipList Node Object 123 ares__slist_node_t *ares__slist_node_next(ares__slist_node_t *node); 125 /*! Fetch previous node in SkipList 127 * \param[in] node SkipList Node Object 130 ares__slist_node_t *ares__slist_node_prev(ares__slist_node_t *node); 143 * \param[in] node SkipLis [all...] |
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/ |
H A D | main.go | 389 func Parse(node *html.Node) (*Parser, error) { 393 return p, p.getRules(node) 396 // getRules populates the rule slice by scanning HTML node and its children 397 func (p *Parser) getRules(node *html.Node) error { 398 section, subSection, err := getSectionInfo(node) 401 //skip this node and move on to its children 405 // Check if this node is visited before. This is necessary since 407 if marked := markedNodesSet[node]; marked { 417 // extract rules from the node 418 if err := p.getAlgorithmRule(node, sectio [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/ |
H A D | iwl-dbg-tlv.c | 99 * struct iwl_dbg_tlv_timer_node - timer node struct 103 * @tlv: TLV attach to the timer node 124 struct iwl_dbg_tlv_node *node; in iwl_dbg_tlv_add() local 126 node = kzalloc(sizeof(*node) + len, GFP_KERNEL); in iwl_dbg_tlv_add() 127 if (!node) in iwl_dbg_tlv_add() 130 memcpy(&node->tlv, tlv, sizeof(node->tlv) + len); in iwl_dbg_tlv_add() 131 list_add_tail(&node->list, list); in iwl_dbg_tlv_add() 373 struct iwl_dbg_tlv_timer_node *node, *tm in iwl_dbg_tlv_del_timers() local 710 struct iwl_dbg_tlv_node *node; iwl_dbg_tlv_send_hcmds() local 749 struct iwl_dbg_tlv_node *node; iwl_dbg_tlv_set_periodic_trigs() local 829 iwl_dbg_tlv_override_trig_node(struct iwl_fw_runtime *fwrt, struct iwl_ucode_tlv *trig_tlv, struct iwl_dbg_tlv_node *node) iwl_dbg_tlv_override_trig_node() argument 914 struct iwl_dbg_tlv_node *node, *match = NULL; iwl_dbg_tlv_add_active_trigger() local 941 struct iwl_dbg_tlv_node *node; iwl_dbg_tlv_gen_active_trig_list() local 987 struct iwl_dbg_tlv_node *node; iwl_dbg_tlv_tp_trigger() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/mwifiex/ |
H A D | util.c | 529 struct mwifiex_sta_node *node; in mwifiex_get_sta_entry() local 534 list_for_each_entry(node, &priv->sta_list, list) { in mwifiex_get_sta_entry() 535 if (!memcmp(node->mac_addr, mac, ETH_ALEN)) in mwifiex_get_sta_entry() 536 return node; in mwifiex_get_sta_entry() 545 struct mwifiex_sta_node *node; in mwifiex_get_tdls_sta_entry() local 547 list_for_each_entry(node, &priv->sta_list, list) { in mwifiex_get_tdls_sta_entry() 548 if (node->tdls_status == status) in mwifiex_get_tdls_sta_entry() 549 return node; in mwifiex_get_tdls_sta_entry() 609 struct mwifiex_sta_node *node; in mwifiex_add_sta_entry() local 615 node in mwifiex_add_sta_entry() 635 mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies, int ies_len, struct mwifiex_sta_node *node) mwifiex_set_sta_ht_cap() argument 663 struct mwifiex_sta_node *node; mwifiex_del_sta_entry() local 680 struct mwifiex_sta_node *node, *tmp; mwifiex_del_all_sta_list() local [all...] |
/kernel/linux/linux-6.6/drivers/clk/ti/ |
H A D | clkctrl.c | 53 struct list_head node; member 236 list_for_each_entry(iter, &provider->clocks, node) { in _ti_omap4_clkctrl_xlate() 250 /* Get clkctrl clock base name based on clkctrl_name or dts node */ 275 /* l4per_cm:1234:0 old style naming based on parent node name */ in clkctrl_get_clock_name() 280 /* l4per-clkctrl:1234:0 style naming based on node name */ in clkctrl_get_clock_name() 286 struct device_node *node, struct clk_hw *clk_hw, in _ti_clkctrl_clk_register() 296 init.name = clkctrl_get_clock_name(node, clkctrl_name, offset, bit, in _ti_clkctrl_clk_register() 312 clk = of_ti_clk_register(node, clk_hw, init.name); in _ti_clkctrl_clk_register() 322 list_add(&clkctrl_clk->node, &provider->clocks); in _ti_clkctrl_clk_register() 334 struct device_node *node, u1 in _ti_clkctrl_setup_gate() 285 _ti_clkctrl_clk_register(struct omap_clkctrl_provider *provider, struct device_node *node, struct clk_hw *clk_hw, u16 offset, u8 bit, const char * const *parents, int num_parents, const struct clk_ops *ops, const char *clkctrl_name) _ti_clkctrl_clk_register() argument 333 _ti_clkctrl_setup_gate(struct omap_clkctrl_provider *provider, struct device_node *node, u16 offset, const struct omap_clkctrl_bit_data *data, void __iomem *reg, const char *clkctrl_name) _ti_clkctrl_setup_gate() argument 354 _ti_clkctrl_setup_mux(struct omap_clkctrl_provider *provider, struct device_node *node, u16 offset, const struct omap_clkctrl_bit_data *data, void __iomem *reg, const char *clkctrl_name) _ti_clkctrl_setup_mux() argument 389 _ti_clkctrl_setup_div(struct omap_clkctrl_provider *provider, struct device_node *node, u16 offset, const struct omap_clkctrl_bit_data *data, void __iomem *reg, const char *clkctrl_name) _ti_clkctrl_setup_div() argument 425 _ti_clkctrl_setup_subclks(struct omap_clkctrl_provider *provider, struct device_node *node, const struct omap_clkctrl_reg_data *data, void __iomem *reg, const char *clkctrl_name) _ti_clkctrl_setup_subclks() argument 510 _ti_omap4_clkctrl_setup(struct device_node *node) _ti_omap4_clkctrl_setup() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/mwifiex/ |
H A D | util.c | 517 struct mwifiex_sta_node *node; in mwifiex_get_sta_entry() local 522 list_for_each_entry(node, &priv->sta_list, list) { in mwifiex_get_sta_entry() 523 if (!memcmp(node->mac_addr, mac, ETH_ALEN)) in mwifiex_get_sta_entry() 524 return node; in mwifiex_get_sta_entry() 533 struct mwifiex_sta_node *node; in mwifiex_get_tdls_sta_entry() local 535 list_for_each_entry(node, &priv->sta_list, list) { in mwifiex_get_tdls_sta_entry() 536 if (node->tdls_status == status) in mwifiex_get_tdls_sta_entry() 537 return node; in mwifiex_get_tdls_sta_entry() 597 struct mwifiex_sta_node *node; in mwifiex_add_sta_entry() local 603 node in mwifiex_add_sta_entry() 623 mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies, int ies_len, struct mwifiex_sta_node *node) mwifiex_set_sta_ht_cap() argument 651 struct mwifiex_sta_node *node; mwifiex_del_sta_entry() local 668 struct mwifiex_sta_node *node, *tmp; mwifiex_del_all_sta_list() local [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | env.c | 34 struct bpf_prog_info_node *node; in __perf_env__insert_bpf_prog_info() local 42 node = rb_entry(parent, struct bpf_prog_info_node, rb_node); in __perf_env__insert_bpf_prog_info() 43 if (prog_id < node->info_linear->info.id) { in __perf_env__insert_bpf_prog_info() 45 } else if (prog_id > node->info_linear->info.id) { in __perf_env__insert_bpf_prog_info() 61 struct bpf_prog_info_node *node = NULL; in perf_env__find_bpf_prog_info() local 68 node = rb_entry(n, struct bpf_prog_info_node, rb_node); in perf_env__find_bpf_prog_info() 69 if (prog_id < node->info_linear->info.id) in perf_env__find_bpf_prog_info() 71 else if (prog_id > node->info_linear->info.id) in perf_env__find_bpf_prog_info() 76 node = NULL; in perf_env__find_bpf_prog_info() 80 return node; in perf_env__find_bpf_prog_info() 97 struct btf_node *node; __perf_env__insert_btf() local 133 struct btf_node *node = NULL; __perf_env__find_btf() local 162 struct bpf_prog_info_node *node; perf_env__purge_bpf() local 177 struct btf_node *node; perf_env__purge_bpf() local [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/adp/tde_v2_0/ |
H A D | tde_hal_k.c | 42 #define drv_tde_node_blend_mode(node, a, b) \ 44 (node)->src1_cbmpara.bits.s1_blendmode = (a); \ 45 (node)->src2_cbmpara.bits.s2_blendmode = (b); \ 76 #define TDE_AQ_CTRL_COMP_LINE 0x4 /* start next AQ list, after complete current node and line */ 431 * Description: init the software node struct for tde 432 * Input: hw_node: the pointer of software node struct 462 * Description: Free TDE operate node buffer 485 * Input: nodephy_addr: the start address of head node address 486 * update:the head node update set 499 /* write the first node addres in tde_hal_node_execute() 2076 tde_hal_calc_src1_set_zme(tde_hw_node *node, hi_tde_color_fmt in_fmt, hi_tde_rect *in_rect, hi_tde_rect *out_rect) tde_hal_calc_src1_set_zme() argument 2117 tde_hal_calc_src1_filter_opt(tde_hw_node *node, hi_tde_color_fmt in_fmt, hi_tde_rect *in_rect, hi_tde_rect *out_rect, hi_tde_deflicker_mode filter_mode) tde_hal_calc_src1_filter_opt() argument 2183 tde_hal_calc_src2_filter_opt_chesk(tde_hw_node *node, tde_rect_opt *rect_opt) tde_hal_calc_src2_filter_opt_chesk() argument 2203 tde_hal_set_zme_in_limit(tde_hw_node *node, tde_rect_opt *rect_opt) tde_hal_set_zme_in_limit() argument 2248 tde_hal_set_zme(tde_hw_node *node, tde_rect_opt *rect_opt, hi_tde_deflicker_mode filter_mode, hi_bool defilicker) tde_hal_set_zme() argument 2309 tde_hal_set_defilicker(tde_hw_node *node) tde_hal_set_defilicker() argument 2331 tde_hal_calc_src2_filter_opt(tde_hw_node *node, tde_rect_opt *rect_opt, hi_bool defilicker, hi_tde_deflicker_mode filter_mode) tde_hal_calc_src2_filter_opt() argument [all...] |
/kernel/linux/linux-5.10/arch/m68k/include/asm/ |
H A D | oplib.h | 29 /* Root node of the prom device tree, this stays constant after 122 /* Acquire the IDPROM of the root node in the prom device tree. This 178 /* Start the CPU with the given device tree node, context table, and context 184 /* Stop the CPU with the passed device tree node. */ 187 /* Idle the CPU with the passed device tree node. */ 190 /* Re-Start the CPU with the passed device tree node. */ 213 /* Get the child node of the given node, or zero if no child exists. */ 216 /* Get the next sibling node of the given node, o [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-actions/ |
H A D | platsmp.c | 97 struct device_node *node; in s500_smp_prepare_cpus() local 99 node = of_find_compatible_node(NULL, NULL, "actions,s500-timer"); in s500_smp_prepare_cpus() 100 if (!node) { in s500_smp_prepare_cpus() 105 timer_base_addr = of_iomap(node, 0); in s500_smp_prepare_cpus() 111 node = of_find_compatible_node(NULL, NULL, "actions,s500-sps"); in s500_smp_prepare_cpus() 112 if (!node) { in s500_smp_prepare_cpus() 117 sps_base_addr = of_iomap(node, 0); in s500_smp_prepare_cpus() 124 node = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu"); in s500_smp_prepare_cpus() 125 if (!node) { in s500_smp_prepare_cpus() 130 scu_base_addr = of_iomap(node, in s500_smp_prepare_cpus() [all...] |
/kernel/linux/linux-5.10/drivers/clk/socfpga/ |
H A D | clk-periph-a10.c | 60 static __init void __socfpga_periph_init(struct device_node *node, in __socfpga_periph_init() argument 66 const char *clk_name = node->name; in __socfpga_periph_init() 73 of_property_read_u32(node, "reg", ®); in __socfpga_periph_init() 81 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in __socfpga_periph_init() 90 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in __socfpga_periph_init() 96 of_property_read_string(node, "clock-output-names", &clk_name); in __socfpga_periph_init() 102 init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS); in __socfpga_periph_init() 112 rc = of_clk_add_provider(node, of_clk_src_simple_get, clk); in __socfpga_periph_init() 114 pr_err("Could not register clock provider for node:%s\n", in __socfpga_periph_init() 125 void __init socfpga_a10_periph_init(struct device_node *node) in socfpga_a10_periph_init() argument [all...] |
H A D | clk-periph.c | 50 static __init void __socfpga_periph_init(struct device_node *node, in __socfpga_periph_init() argument 56 const char *clk_name = node->name; in __socfpga_periph_init() 63 of_property_read_u32(node, "reg", ®); in __socfpga_periph_init() 71 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in __socfpga_periph_init() 80 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in __socfpga_periph_init() 86 of_property_read_string(node, "clock-output-names", &clk_name); in __socfpga_periph_init() 92 init.num_parents = of_clk_parent_fill(node, parent_name, in __socfpga_periph_init() 103 rc = of_clk_add_provider(node, of_clk_src_simple_get, hw_clk); in __socfpga_periph_init() 106 void __init socfpga_periph_init(struct device_node *node) in socfpga_periph_init() argument 108 __socfpga_periph_init(node, in socfpga_periph_init() [all...] |
/kernel/linux/linux-6.6/arch/m68k/include/asm/ |
H A D | oplib.h | 29 /* Root node of the prom device tree, this stays constant after 122 /* Acquire the IDPROM of the root node in the prom device tree. This 178 /* Start the CPU with the given device tree node, context table, and context 184 /* Stop the CPU with the passed device tree node. */ 187 /* Idle the CPU with the passed device tree node. */ 190 /* Re-Start the CPU with the passed device tree node. */ 213 /* Get the child node of the given node, or zero if no child exists. */ 216 /* Get the next sibling node of the given node, o [all...] |
/kernel/linux/linux-6.6/arch/arm/mach-actions/ |
H A D | platsmp.c | 99 struct device_node *node; in s500_smp_prepare_cpus() local 101 node = of_find_compatible_node(NULL, NULL, "actions,s500-timer"); in s500_smp_prepare_cpus() 102 if (!node) { in s500_smp_prepare_cpus() 107 timer_base_addr = of_iomap(node, 0); in s500_smp_prepare_cpus() 113 node = of_find_compatible_node(NULL, NULL, "actions,s500-sps"); in s500_smp_prepare_cpus() 114 if (!node) { in s500_smp_prepare_cpus() 119 sps_base_addr = of_iomap(node, 0); in s500_smp_prepare_cpus() 126 node = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu"); in s500_smp_prepare_cpus() 127 if (!node) { in s500_smp_prepare_cpus() 132 scu_base_addr = of_iomap(node, in s500_smp_prepare_cpus() [all...] |
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | topology.h | 21 #define cpumask_of_node(node) ((node) == -1 ? \ 23 node_to_cpumask_map[node]) 48 static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node) in update_numa_cpu_lookup_table() argument 50 numa_cpu_lookup_table[cpu] = node; in update_numa_cpu_lookup_table() 60 * Fall back to node 0 if nid is unset (it should be, except bugs). in early_cpu_to_node() 67 void update_numa_distance(struct device_node *node); 69 extern void map_cpu_to_node(int cpu, int node); 90 static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node) {} in update_numa_cpu_lookup_table() argument 102 static inline void update_numa_distance(struct device_node *node) {} in update_numa_distance() argument 105 map_cpu_to_node(int cpu, int node) map_cpu_to_node() argument [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | hashtable.h | 57 * @node: the &struct hlist_node of the object to be added 60 #define hash_add(hashtable, node, key) \ 61 hlist_add_head(node, &hashtable[hash_min(key, HASH_BITS(hashtable))]) 66 * @node: the &struct hlist_node of the object to be added 69 #define hash_add_rcu(hashtable, node, key) \ 70 hlist_add_head_rcu(node, &hashtable[hash_min(key, HASH_BITS(hashtable))]) 74 * @node: the &struct hlist_node of the object to be checked 76 static inline bool hash_hashed(struct hlist_node *node) in hash_hashed() argument 78 return !hlist_unhashed(node); in hash_hashed() 103 * @node 105 hash_del(struct hlist_node *node) hash_del() argument 114 hash_del_rcu(struct hlist_node *node) hash_del_rcu() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | hashtable.h | 57 * @node: the &struct hlist_node of the object to be added 60 #define hash_add(hashtable, node, key) \ 61 hlist_add_head(node, &hashtable[hash_min(key, HASH_BITS(hashtable))]) 66 * @node: the &struct hlist_node of the object to be added 69 #define hash_add_rcu(hashtable, node, key) \ 70 hlist_add_head_rcu(node, &hashtable[hash_min(key, HASH_BITS(hashtable))]) 74 * @node: the &struct hlist_node of the object to be checked 76 static inline bool hash_hashed(struct hlist_node *node) in hash_hashed() argument 78 return !hlist_unhashed(node); in hash_hashed() 103 * @node 105 hash_del(struct hlist_node *node) hash_del() argument 114 hash_del_rcu(struct hlist_node *node) hash_del_rcu() argument [all...] |
H A D | llist.h | 105 * @node: the first entry of deleted list entries 116 #define llist_for_each(pos, node) \ 117 for ((pos) = (node); pos; (pos) = (pos)->next) 124 * @node: the first entry of deleted list entries 135 #define llist_for_each_safe(pos, n, node) \ 136 for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n)) 141 * @node: the fist entry of deleted list entries. 153 #define llist_for_each_entry(pos, node, member) \ 154 for ((pos) = llist_entry((node), typeof(*(pos)), member); \ 163 * @node 194 llist_next(struct llist_node *node) llist_next() argument [all...] |
/kernel/linux/linux-6.6/drivers/clk/socfpga/ |
H A D | clk-periph-a10.c | 60 static void __init __socfpga_periph_init(struct device_node *node, in __socfpga_periph_init() argument 66 const char *clk_name = node->name; in __socfpga_periph_init() 73 of_property_read_u32(node, "reg", ®); in __socfpga_periph_init() 81 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in __socfpga_periph_init() 90 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in __socfpga_periph_init() 96 of_property_read_string(node, "clock-output-names", &clk_name); in __socfpga_periph_init() 102 init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS); in __socfpga_periph_init() 115 rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw_clk); in __socfpga_periph_init() 117 pr_err("Could not register clock provider for node:%s\n", in __socfpga_periph_init() 130 void __init socfpga_a10_periph_init(struct device_node *node) in socfpga_a10_periph_init() argument [all...] |
H A D | clk-gate-a10.c | 42 static void __init __socfpga_gate_init(struct device_node *node, in __socfpga_gate_init() argument 50 const char *clk_name = node->name; in __socfpga_gate_init() 59 rc = of_property_read_u32_array(node, "clk-gate", clk_gate, 2); in __socfpga_gate_init() 71 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in __socfpga_gate_init() 77 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in __socfpga_gate_init() 86 of_property_read_string(node, "clock-output-names", &clk_name); in __socfpga_gate_init() 92 init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS); in __socfpga_gate_init() 103 rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw_clk); in __socfpga_gate_init() 105 pr_err("Could not register clock provider for node:%s\n", in __socfpga_gate_init() 118 void __init socfpga_a10_gate_init(struct device_node *node) in socfpga_a10_gate_init() argument [all...] |
H A D | clk-periph.c | 50 static void __init __socfpga_periph_init(struct device_node *node, in __socfpga_periph_init() argument 56 const char *clk_name = node->name; in __socfpga_periph_init() 63 of_property_read_u32(node, "reg", ®); in __socfpga_periph_init() 71 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in __socfpga_periph_init() 80 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in __socfpga_periph_init() 86 of_property_read_string(node, "clock-output-names", &clk_name); in __socfpga_periph_init() 92 init.num_parents = of_clk_parent_fill(node, parent_name, in __socfpga_periph_init() 105 rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw_clk); in __socfpga_periph_init() 107 pr_err("Could not register clock provider for node:%s\n", in __socfpga_periph_init() 120 void __init socfpga_periph_init(struct device_node *node) in socfpga_periph_init() argument [all...] |
/kernel/linux/linux-6.6/drivers/cpuidle/ |
H A D | cpuidle-psci-domain.c | 26 struct device_node *node; member 87 pd_provider->node = of_node_get(np); in psci_pd_init() 111 of_genpd_del_provider(pd_provider->node); in psci_pd_remove() 113 genpd = of_genpd_remove_last(pd_provider->node); in psci_pd_remove() 117 of_node_put(pd_provider->node); in psci_pd_remove() 140 struct device_node *node; in psci_cpuidle_domain_probe() local 151 for_each_child_of_node(np, node) { in psci_cpuidle_domain_probe() 152 if (!of_property_present(node, "#power-domain-cells")) in psci_cpuidle_domain_probe() 155 ret = psci_pd_init(node, use_osi); in psci_cpuidle_domain_probe() 157 of_node_put(node); in psci_cpuidle_domain_probe() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/loongson/ |
H A D | lsdc_debugfs.c | 18 struct drm_info_node *node = (struct drm_info_node *)m->private; in lsdc_identify() local 19 struct lsdc_device *ldev = (struct lsdc_device *)node->info_ent->data; in lsdc_identify() 35 struct drm_info_node *node = (struct drm_info_node *)m->private; in lsdc_show_mm() local 36 struct drm_device *ddev = node->minor->dev; in lsdc_show_mm() 46 struct drm_info_node *node = (struct drm_info_node *)m->private; in lsdc_show_gfxpll_clock() local 47 struct lsdc_device *ldev = (struct lsdc_device *)node->info_ent->data; in lsdc_show_gfxpll_clock() 58 struct drm_info_node *node = (struct drm_info_node *)m->private; in lsdc_show_benchmark() local 59 struct lsdc_device *ldev = (struct lsdc_device *)node->info_ent->data; in lsdc_show_benchmark() 69 struct drm_info_node *node = (struct drm_info_node *)m->private; in lsdc_pdev_enable_io_mem() local 70 struct lsdc_device *ldev = (struct lsdc_device *)node in lsdc_pdev_enable_io_mem() [all...] |
/third_party/node/test/addons/new-isolate-addon/ |
H A D | binding.cc | 2 #include <node.h> 4 using node::Environment; 5 using node::MultiIsolatePlatform; 29 node::GetCurrentEnvironment(parent_isolate->GetCurrentContext()); in RunInSeparateIsolate() 31 MultiIsolatePlatform* platform = node::GetMultiIsolatePlatform(parent_env); in RunInSeparateIsolate() 40 node::CommonEnvironmentSetup::Create(platform, in RunInSeparateIsolate() 44 node::EnvironmentFlags::kNoFlags); in RunInSeparateIsolate() 60 node::LoadEnvironment(setup->env(), *code); in RunInSeparateIsolate() 63 (void)node::SpinEventLoop(setup->env()); in RunInSeparateIsolate() 65 node in RunInSeparateIsolate() [all...] |
/third_party/ninja/src/ |
H A D | dyndep.cc | 29 bool DyndepLoader::LoadDyndeps(Node* node, std::string* err) const { in LoadDyndeps() argument 31 return LoadDyndeps(node, &ddf, err); in LoadDyndeps() 34 bool DyndepLoader::LoadDyndeps(Node* node, DyndepFile* ddf, in LoadDyndeps() argument 37 node->set_dyndep_pending(false); in LoadDyndeps() 40 EXPLAIN("loading dyndep file '%s'", node->path().c_str()); in LoadDyndeps() 41 if (!LoadDyndepFile(node, ddf, err)) in LoadDyndeps() 44 // Update each edge that specified this node as its dyndep binding. in LoadDyndeps() 45 std::vector<Edge*> const& out_edges = node->out_edges(); in LoadDyndeps() 49 if (edge->dyndep_ != node) in LoadDyndeps() 56 "'" + node in LoadDyndeps() [all...] |