Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_blake2/clinic/
Dblake2s_impl.c.h19 int inner_size, int last_node);
38 int last_node = 0; in py_blake2s_new() local
41 …person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) { in py_blake2s_new()
44 … &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node); in py_blake2s_new()
Dblake2b_impl.c.h19 int inner_size, int last_node);
38 int last_node = 0; in py_blake2b_new() local
41 …person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) { in py_blake2b_new()
44 … &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node); in py_blake2b_new()
/external/tensorflow/tensorflow/contrib/lite/
Darena_planner.cc130 TfLiteStatus ArenaPlanner::ExecuteAllocations(int first_node, int last_node) { in ExecuteAllocations() argument
131 TF_LITE_ENSURE_STATUS(CalculateAllocations(first_node, last_node)); in ExecuteAllocations()
151 TfLiteStatus ArenaPlanner::CalculateAllocations(int first_node, int last_node) { in CalculateAllocations() argument
159 if (alloc_info.node > last_node) break; in CalculateAllocations()
Darena_planner.h54 TfLiteStatus ExecuteAllocations(int first_node, int last_node) override;
66 TfLiteStatus CalculateAllocations(int first_node, int last_node);
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.c96 int inner_size, int last_node) in py_blake2b_new_impl() argument
222 self->state.last_node = last_node; in py_blake2b_new_impl()
Dblake2s_impl.c96 int inner_size, int last_node) in py_blake2s_new_impl() argument
222 self->state.last_node = last_node; in py_blake2s_new_impl()
/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()
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()
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()
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()
/external/python/cpython3/Doc/library/
Dhashlib.rst310 node_depth=0, inner_size=0, last_node=False)
314 node_depth=0, inner_size=0, last_node=False)
372 * *last_node*: boolean indicating whether the processed node is the last
658 ... node_offset=0, node_depth=0, last_node=False)
662 ... node_offset=1, node_depth=0, last_node=True)
666 ... node_offset=0, node_depth=1, last_node=True)
/external/mesa3d/src/compiler/nir/
Dnir.h2103 nir_cf_node *last_node = exec_node_data(nir_cf_node, in nir_after_cf_list() local
2105 return nir_after_cf_node(last_node); in nir_after_cf_list()
/external/python/cpython3/Lib/test/
Dtest_hashlib.py575 last_node=True