Home
last modified time | relevance | path

Searched refs:last_node (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Modules/_blake2/clinic/
Dblake2b_impl.c.h18 int inner_size, int last_node);
37 int last_node = 0; in py_blake2b_new() local
40 …person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) { in py_blake2b_new()
43 … &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node); in py_blake2b_new()
Dblake2s_impl.c.h18 int inner_size, int last_node);
37 int last_node = 0; in py_blake2s_new() local
40 …person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) { in py_blake2s_new()
43 … &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node); in py_blake2s_new()
/external/tensorflow/tensorflow/lite/
Darena_planner.h62 TfLiteStatus ExecuteAllocations(int first_node, int last_node) override;
74 TfLiteStatus CalculateAllocations(int first_node, int last_node);
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
221 if (alloc_info.node > last_node) break; in CalculateAllocations()
Dmemory_planner.h35 virtual TfLiteStatus ExecuteAllocations(int first_node, int last_node) = 0;
/external/tensorflow/tensorflow/core/graph/
Dsubgraph_test.cc356 Node* last_node = nullptr; in BM_SubgraphHelper() local
360 last_node = ops::UnaryOp("Op", last_node, b.opts().WithName(name)); in BM_SubgraphHelper()
362 last_node = ops::SourceOp("In", b.opts().WithName(name)); in BM_SubgraphHelper()
/external/python/cpython3/Modules/_blake2/
Dblake2b_impl.c93 int inner_size, int last_node) in py_blake2b_new_impl() argument
221 self->state.last_node = last_node; in py_blake2b_new_impl()
Dblake2s_impl.c93 int inner_size, int last_node) in py_blake2s_new_impl() argument
221 self->state.last_node = last_node; in py_blake2s_new_impl()
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dilist.h111 NodeType* last_node = list->sentinel_.previous_node_; in MoveBefore() local
116 last_node->next_node_ = this->node_; in MoveBefore()
117 this->node_->previous_node_ = last_node; in MoveBefore()
/external/deqp-deps/SPIRV-Tools/source/util/
Dilist.h111 NodeType* last_node = list->sentinel_.previous_node_; in MoveBefore() local
116 last_node->next_node_ = this->node_; in MoveBefore()
117 this->node_->previous_node_ = last_node; in MoveBefore()
/external/python/cpython3/Modules/_blake2/impl/
Dblake2.h59 uint8_t last_node; member
69 uint8_t last_node; member
Dblake2s.c83 if( S->last_node ) blake2s_set_lastnode( S ); in blake2s_set_lastblock()
91 if( S->last_node ) blake2s_clear_lastnode( S ); in blake2s_clear_lastblock()
Dblake2s-ref.c63 if( S->last_node ) blake2s_set_lastnode( S ); in blake2s_set_lastblock()
71 if( S->last_node ) blake2s_clear_lastnode( S ); in blake2s_clear_lastblock()
Dblake2b-ref.c68 if( S->last_node ) blake2b_set_lastnode( S ); in blake2b_set_lastblock()
76 if( S->last_node ) blake2b_clear_lastnode( S ); in blake2b_clear_lastblock()
Dblake2b.c89 if( S->last_node ) blake2b_set_lastnode( S ); in blake2b_set_lastblock()
97 if( S->last_node ) blake2b_clear_lastnode( S ); in blake2b_clear_lastblock()
/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dsubgraph_test.cc211 const GenNode* last_node = nullptr; in TEST() local
216 EXPECT_THAT(new_node, Ne(last_node)) << "At node " << new_node->name(); in TEST()
237 last_node = new_node; in TEST()
/external/u-boot/lib/libfdt/
Dfdt_region.c441 int last_node = 0; in fdt_next_region() local
497 val = h_include(priv, fdt, last_node, FDT_IS_PROP, str, in fdt_next_region()
524 last_node = offset; in fdt_next_region()
/external/python/cpython3/Doc/library/
Dhashlib.rst311 node_depth=0, inner_size=0, last_node=False)
315 node_depth=0, inner_size=0, last_node=False)
373 * *last_node*: boolean indicating whether the processed node is the last
664 ... node_offset=0, node_depth=0, last_node=False)
668 ... node_offset=1, node_depth=0, last_node=True)
672 ... node_offset=0, node_depth=1, last_node=True)
/external/python/cpython3/Lib/test/
Dtest_hashlib.py601 last_node=True
663 last_node=True)
706 last_node=True)
/external/mesa3d/src/compiler/nir/
Dnir.h2178 nir_cf_node *last_node = exec_node_data(nir_cf_node, in nir_after_cf_list() local
2180 return nir_after_cf_node(last_node); in nir_after_cf_list()