Home
last modified time | relevance | path

Searched refs:first_node (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/lite/
Darena_planner.cc187 TfLiteStatus ArenaPlanner::ExecuteAllocations(int first_node, int last_node) { in ExecuteAllocations() argument
193 TF_LITE_ENSURE_STATUS(CalculateAllocations(first_node, last_node)); in ExecuteAllocations()
213 TfLiteStatus ArenaPlanner::CalculateAllocations(int first_node, int last_node) { in CalculateAllocations() argument
214 int active_node = first_node; in CalculateAllocations()
220 if (alloc_info.node < first_node) continue; in CalculateAllocations()
225 if (active_node != first_node) { in CalculateAllocations()
Darena_planner.h62 TfLiteStatus ExecuteAllocations(int first_node, int last_node) override;
74 TfLiteStatus CalculateAllocations(int first_node, int last_node);
Dmemory_planner.h35 virtual TfLiteStatus ExecuteAllocations(int first_node, int last_node) = 0;
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinstruction_list.cpp22 Instruction* first_node = list.front().get(); in InsertBefore() local
27 return iterator(first_node); in InsertBefore()
Dinstruction.cpp401 Instruction* first_node = list.front().get(); in InsertBefore() local
406 return first_node; in InsertBefore()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dinstruction_list.cpp22 Instruction* first_node = list.front().get(); in InsertBefore() local
27 return iterator(first_node); in InsertBefore()
Dinstruction.cpp401 Instruction* first_node = list.front().get(); in InsertBefore() local
406 return first_node; in InsertBefore()
/external/tensorflow/tensorflow/lite/testing/
Dmessage.cc31 explicit MessageStack(Message* first_node) { in MessageStack() argument
32 nodes_.push(first_node); in MessageStack()
/external/tensorflow/tensorflow/lite/testing/nnapi_tflite_zip_tests/
Dmessage.cc34 explicit MessageStack(Message* first_node) { in MessageStack() argument
35 nodes_.push(first_node); in MessageStack()
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dilist.h110 NodeType* first_node = list->sentinel_.next_node_; in MoveBefore() local
113 this->node_->previous_node_->next_node_ = first_node; in MoveBefore()
114 first_node->previous_node_ = this->node_->previous_node_; in MoveBefore()
122 return iterator(first_node); in MoveBefore()
/external/deqp-deps/SPIRV-Tools/source/util/
Dilist.h110 NodeType* first_node = list->sentinel_.next_node_; in MoveBefore() local
113 this->node_->previous_node_->next_node_ = first_node; in MoveBefore()
114 first_node->previous_node_ = this->node_->previous_node_; in MoveBefore()
122 return iterator(first_node); in MoveBefore()
/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dhoist_random_uniform.cc113 NodeDef MakeZipNode(const NodeDef& first_node, const NodeDef& second_node, in MakeZipNode() argument
120 zip_node.add_input(first_node.name()); in MakeZipNode()
124 graph_utils::ConcatAttributeList(key, first_node, second_node, &zip_node); in MakeZipNode()
/external/u-boot/fs/ext4/
Dext4_journal.c24 static int first_node = true; variable
259 if (first_node == true) { in ext4fs_push_revoke_blk()
262 first_node = false; in ext4fs_push_revoke_blk()
289 first_node = true; in ext4fs_free_revoke_blks()
/external/mesa3d/src/compiler/nir/
Dnir.h2170 nir_cf_node *first_node = exec_node_data(nir_cf_node, in nir_before_cf_list() local
2172 return nir_before_cf_node(first_node); in nir_before_cf_list()