/external/python/cpython3/Modules/_blake2/clinic/ |
D | blake2s_impl.c.h | 19 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()
|
D | blake2b_impl.c.h | 19 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/ |
D | arena_planner.cc | 130 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()
|
D | arena_planner.h | 54 TfLiteStatus ExecuteAllocations(int first_node, int last_node) override; 66 TfLiteStatus CalculateAllocations(int first_node, int last_node);
|
D | memory_planner.h | 35 virtual TfLiteStatus ExecuteAllocations(int first_node, int last_node) = 0;
|
/external/tensorflow/tensorflow/core/graph/ |
D | subgraph_test.cc | 356 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/ |
D | blake2b_impl.c | 96 int inner_size, int last_node) in py_blake2b_new_impl() argument 222 self->state.last_node = last_node; in py_blake2b_new_impl()
|
D | blake2s_impl.c | 96 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/ |
D | blake2.h | 59 uint8_t last_node; member 69 uint8_t last_node; member
|
D | blake2s.c | 83 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()
|
D | blake2b.c | 89 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()
|
D | blake2b-ref.c | 68 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()
|
D | blake2s-ref.c | 63 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/ |
D | hashlib.rst | 310 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/ |
D | nir.h | 2103 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/ |
D | test_hashlib.py | 575 last_node=True
|