/external/libaom/libaom/tools/txfm_analyzer/ |
D | txfm_graph.cc | 183 int node_idx, int in, double w) { in add_node() argument 184 int outIdx = get_idx(stage_idx, node_idx, node_num); in add_node() 199 int node_idx, int in0, double w0, int in1, double w1) { in connect_node() argument 200 int outIdx = get_idx(stage_idx, node_idx, node_num); in connect_node() 265 int node_idx, int estimate_bit) { in estimate_value() argument 267 int outIdx = get_idx(stage_idx, node_idx, node_num); in estimate_value() 280 int node_idx, int amplify_bit) { in amplify_value() argument 281 int outIdx = get_idx(stage_idx, node_idx, node_num); in amplify_value() 310 int node_idx, int N, int star) { in gen_B_graph() argument 312 int out = node_idx + i; in gen_B_graph() [all …]
|
D | txfm_graph.h | 55 int node_idx, int in0, double w0, int in1, double w1); 60 int node_idx, int N, int star); 62 int node_idx, int N); 65 int node_idx, int N); 67 int node_idx, int N); 69 int node_idx, int idx, int N); 71 int node_idx, int idx, int N); 74 int node_idx, int N); 77 int node_idx, int N); 80 int node_idx, int dct_node_num); [all …]
|
/external/tensorflow/tensorflow/core/grappler/ |
D | graph_topology_view.cc | 57 for (int node_idx = 0; node_idx < num_nodes_; ++node_idx) { in InitializeFromGraph() local 58 const NodeDef& node = graph.node(node_idx); in InitializeFromGraph() 59 node_name_to_index_.emplace(node.name(), node_idx); in InitializeFromGraph() 102 for (int node_idx = 0; node_idx < num_nodes_; ++node_idx) { in InitializeFromGraph() local 103 const NodeDef& node = graph.node(node_idx); in InitializeFromGraph() 104 fanins_[node_idx].reserve(node.input_size()); in InitializeFromGraph() 126 fanins_[node_idx].push_back(input_idx); in InitializeFromGraph() 127 fanouts_[input_idx].push_back(node_idx); in InitializeFromGraph() 132 SortAndRemoveDuplicates(&fanins_[node_idx]); in InitializeFromGraph() 136 for (int node_idx = 0; node_idx < num_nodes_; ++node_idx) { in InitializeFromGraph() local [all …]
|
D | graph_topology_view.h | 76 const NodeDef* GetNode(int node_idx) const; 87 const absl::InlinedVector<int, 4>& GetFanin(int node_idx) const; 90 const absl::InlinedVector<int, 2>& GetFanout(int node_idx) const;
|
D | mutable_graph_view.cc | 658 const int node_idx = in SwapNodeNames() local 663 from_fanouts->erase({node, node_idx}); in SwapNodeNames() 667 fanouts()[to_fanin].insert({node, node_idx}); in SwapNodeNames()
|
/external/arm-trusted-firmware/lib/psci/ |
D | psci_setup.c | 37 static void __init psci_init_pwr_domain_node(unsigned char node_idx, in psci_init_pwr_domain_node() argument 42 psci_non_cpu_pd_nodes[node_idx].level = level; in psci_init_pwr_domain_node() 43 psci_lock_init(psci_non_cpu_pd_nodes, node_idx); in psci_init_pwr_domain_node() 44 psci_non_cpu_pd_nodes[node_idx].parent_node = parent_idx; in psci_init_pwr_domain_node() 45 psci_non_cpu_pd_nodes[node_idx].local_state = in psci_init_pwr_domain_node() 50 psci_cpu_pd_nodes[node_idx].parent_node = parent_idx; in psci_init_pwr_domain_node() 53 psci_cpu_pd_nodes[node_idx].mpidr = PSCI_INVALID_MPIDR; in psci_init_pwr_domain_node() 56 &(_cpu_data_by_index(node_idx)->psci_svc_cpu_data); in psci_init_pwr_domain_node() 70 cm_set_context_by_index(node_idx, in psci_init_pwr_domain_node() 71 (void *) &psci_ns_context[node_idx], in psci_init_pwr_domain_node()
|
/external/arm-trusted-firmware/plat/xilinx/versal/pm_service/ |
D | pm_client.c | 134 enum pm_device_node_idx node_idx; in pm_client_set_wakeup_sources() local 143 node_idx = irq_to_pm_node_idx(irq); in pm_client_set_wakeup_sources() 146 if ((node_idx != XPM_NODEIDX_DEV_MIN) && in pm_client_set_wakeup_sources() 147 (!pm_wakeup_nodes_set[node_idx])) { in pm_client_set_wakeup_sources() 149 device_id = PERIPH_DEVID(node_idx); in pm_client_set_wakeup_sources() 152 pm_wakeup_nodes_set[node_idx] = !ret; in pm_client_set_wakeup_sources()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | auto_mixed_precision.cc | 418 const NodeTypeId* GetNode(int node_idx) const; 430 const absl::InlinedVector<int, 4>& GetFanin(int node_idx) const; 433 const absl::InlinedVector<int, 2>& GetFanout(int node_idx) const; 491 for (int node_idx = 0; node_idx < num_nodedefs; ++node_idx) { in InitializeFromGraph() local 492 const NodeDef& node = graph.node(node_idx); in InitializeFromGraph() 493 node_name_to_index_.emplace(node.name(), node_idx); in InitializeFromGraph() 624 const NodeTypeId* GraphTypeTopologyView::GetNode(int node_idx) const { in GetNode() 626 DCHECK(node_idx >= 0 && node_idx < num_nodes_) << "node_idx is out of range"; in GetNode() 627 return &node_type_attrs_.at(node_idx); in GetNode() 647 int node_idx) const { in GetFanin() [all …]
|
D | dependency_optimizer.cc | 224 void DependencyOptimizer::OptimizeNode(int node_idx, in OptimizeNode() argument 227 NodeDef* node = optimized_graph_->mutable_node(node_idx); in OptimizeNode() 429 nodes_to_delete->insert(node_idx); in OptimizeNode() 517 for (int node_idx = 0; node_idx < num_nodes; ++node_idx) { in TransitiveReduction() local 518 const NodeDef& node = optimized_graph_->node(node_idx); in TransitiveReduction() 532 outputs[input_node_idx].push_back(node_idx); in TransitiveReduction() 534 std::min(target_range[input_node_idx].first, node_idx); in TransitiveReduction() 537 control_outputs[input_node_idx].emplace_back(node_idx, input_slot); in TransitiveReduction() 539 std::max(target_range[input_node_idx].second, node_idx); in TransitiveReduction()
|
D | dependency_optimizer.h | 66 void OptimizeNode(int node_idx, SetVector<int>* nodes_to_simplify,
|
D | loop_optimizer.cc | 524 for (int node_idx = 0; node_idx < optimized_graph->node_size(); ++node_idx) { in RemoveStackOps() local 525 if (IsStackOp(optimized_graph->node(node_idx))) { in RemoveStackOps() 527 graph_view, nodes_to_preserve, node_idx)) { in RemoveStackOps()
|
/external/tensorflow/tensorflow/core/grappler/utils/ |
D | traversal.cc | 54 const absl::optional<int> node_idx = graph_view.GetNodeIndex(*node); in DfsTraversal() local 55 DCHECK(node_idx.has_value()) << "Illegal start node: " << node->name(); in DfsTraversal() 56 if (node_idx.has_value()) { in DfsTraversal() 57 stack.emplace_back(node_idx.value()); in DfsTraversal()
|
/external/tensorflow/tensorflow/core/example/ |
D | example_parser_configuration.cc | 33 const string& node_name, int* node_idx) { in FindNodeIndexByName() argument 37 *node_idx = i; in FindNodeIndexByName() 49 int node_idx; in ExtractExampleParserConfiguration() local 50 TF_RETURN_IF_ERROR(FindNodeIndexByName(graph, node_name, &node_idx)); in ExtractExampleParserConfiguration() 52 const auto& node = graph.node(node_idx); in ExtractExampleParserConfiguration()
|
/external/adhd/cras/src/server/ |
D | cras_iodev_list.c | 109 unsigned int node_idx) in find_node() argument 112 DL_SEARCH_SCALAR(iodev->nodes, node, idx, node_idx); in find_node() 1534 static int set_node_plugged(struct cras_iodev *iodev, unsigned int node_idx, in set_node_plugged() argument 1539 node = find_node(iodev, node_idx); in set_node_plugged() 1546 static int set_node_volume(struct cras_iodev *iodev, unsigned int node_idx, in set_node_volume() argument 1551 node = find_node(iodev, node_idx); in set_node_volume() 1567 unsigned int node_idx, int capture_gain) in set_node_capture_gain() argument 1571 node = find_node(iodev, node_idx); in set_node_capture_gain() 1583 unsigned int node_idx, in set_node_left_right_swapped() argument 1591 node = find_node(iodev, node_idx); in set_node_left_right_swapped()
|
D | cras_hfp_alsa_iodev.c | 186 unsigned node_idx, unsigned dev_enabled) in hfp_alsa_update_active_node() argument 191 aio->update_active_node(aio, node_idx, dev_enabled); in hfp_alsa_update_active_node()
|
D | cras_bt_io.c | 300 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument 329 dev->update_active_node(dev, node_idx, dev_enabled); in update_active_node()
|
D | cras_empty_iodev.c | 162 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument
|
D | test_iodev.c | 142 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument
|
D | cras_iodev.h | 258 void (*update_active_node)(struct cras_iodev *iodev, unsigned node_idx,
|
D | cras_loopback_iodev.c | 239 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument
|
D | cras_hfp_iodev.c | 248 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument
|
D | cras_a2dp_iodev.c | 430 static void update_active_node(struct cras_iodev *iodev, unsigned node_idx, in update_active_node() argument
|
/external/skqp/src/compute/skc/platforms/cl_12/kernels/ |
D | fills_expand.cl | 275 skc_uint node_idx = id * SKC_FILLS_EXPAND_ELEMS_PER_SUBBLOCK + get_sub_group_local_id(); 282 union skc_path_elem const n##I = blocks[node_idx + I * SKC_FILLS_EXPAND_SUBGROUP_SIZE]; 292 node_idx + I * SKC_FILLS_EXPAND_SUBGROUP_SIZE);
|
D | paths_reclaim.cl | 314 skc_uint const node_idx = id * SKC_DEVICE_SUBBLOCK_WORDS + get_sub_group_local_id(); 321 skc_uint n##I = bp_elems[node_idx + I * SKC_PATHS_RECLAIM_SUBGROUP_SIZE];
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | test_util.cc | 301 for (int node_idx : interpreter->execution_plan()) { in CountPartitionsExecutedByCpuKernel() local 304 std::tie(node, reg) = *(interpreter->node_and_registration(node_idx)); in CountPartitionsExecutedByCpuKernel()
|