Searched refs:last_node (Results 1 - 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/contrib/lite/
H A Dmemory_planner.h34 // [first_node, last_node].
35 virtual TfLiteStatus ExecuteAllocations(int first_node, int last_node) = 0;
H A Darena_planner.h54 TfLiteStatus ExecuteAllocations(int first_node, int last_node) override;
65 // for all tensors affected by ops in the interval [first_node, last_node].
66 TfLiteStatus CalculateAllocations(int first_node, int last_node);
H A Darena_planner.cc130 TfLiteStatus ArenaPlanner::ExecuteAllocations(int first_node, int last_node) { argument
131 TF_LITE_ENSURE_STATUS(CalculateAllocations(first_node, last_node));
151 TfLiteStatus ArenaPlanner::CalculateAllocations(int first_node, int last_node) { argument
155 // processed previously and should be skipped. Entries after last_node are
159 if (alloc_info.node > last_node) break;
/external/python/cpython3/Modules/_blake2/clinic/
H A Dblake2b_impl.c.h9 " last_node=False)\n"
19 int inner_size, int last_node);
25 static const char * const _keywords[] = {"string", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", NULL};
38 int last_node = 0; local
41 &data, &digest_size, &key, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) {
44 return_value = py_blake2b_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node);
H A Dblake2s_impl.c.h9 " last_node=False)\n"
19 int inner_size, int last_node);
25 static const char * const _keywords[] = {"string", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", NULL};
38 int last_node = 0; local
41 &data, &digest_size, &key, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) {
44 return_value = py_blake2s_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, last_node);
/external/python/cpython3/Modules/_blake2/impl/
H A Dblake2.h59 uint8_t last_node; member in struct:__blake2s_state
69 uint8_t last_node; member in struct:__blake2b_state
H A Dblake2b-ref.c68 if( S->last_node ) blake2b_set_lastnode( S );
76 if( S->last_node ) blake2b_clear_lastnode( S );
H A Dblake2b.c89 if( S->last_node ) blake2b_set_lastnode( S );
97 if( S->last_node ) blake2b_clear_lastnode( S );
H A Dblake2s-ref.c63 if( S->last_node ) blake2s_set_lastnode( S );
71 if( S->last_node ) blake2s_clear_lastnode( S );
H A Dblake2s.c83 if( S->last_node ) blake2s_set_lastnode( S );
91 if( S->last_node ) blake2s_clear_lastnode( S );
/external/tensorflow/tensorflow/core/graph/
H A Dsubgraph_test.cc356 Node* last_node = nullptr; local
360 last_node = ops::UnaryOp("Op", last_node, b.opts().WithName(name));
362 last_node = ops::SourceOp("In", b.opts().WithName(name));
/external/python/cpython3/Modules/_blake2/
H A Dblake2b_impl.c86 last_node: bool = False
96 int inner_size, int last_node)
222 self->state.last_node = last_node;
92 py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size, Py_buffer *key, Py_buffer *salt, Py_buffer *person, int fanout, int depth, PyObject *leaf_size_obj, PyObject *node_offset_obj, int node_depth, int inner_size, int last_node) argument
H A Dblake2s_impl.c86 last_node: bool = False
96 int inner_size, int last_node)
222 self->state.last_node = last_node;
92 py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size, Py_buffer *key, Py_buffer *salt, Py_buffer *person, int fanout, int depth, PyObject *leaf_size_obj, PyObject *node_offset_obj, int node_depth, int inner_size, int last_node) argument
/external/mesa3d/src/compiler/nir/
H A Dnir.h2103 nir_cf_node *last_node = exec_node_data(nir_cf_node, local
2105 return nir_after_cf_node(last_node);
/external/python/cpython3/Lib/test/
H A Dtest_hashlib.py575 last_node=True

Completed in 390 milliseconds