Home
last modified time | relevance | path

Searched refs:node_depth (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Modules/_blake2/clinic/
Dblake2b_impl.c.h17 PyObject *node_offset_obj, int node_depth,
35 int node_depth = 0; in py_blake2b_new() local
40 …y, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &l… in py_blake2b_new()
43 …, &key, &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, las… in py_blake2b_new()
Dblake2s_impl.c.h17 PyObject *node_offset_obj, int node_depth,
35 int node_depth = 0; in py_blake2s_new() local
40 …y, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &l… in py_blake2s_new()
43 …, &key, &salt, &person, fanout, depth, leaf_size_obj, node_offset_obj, node_depth, inner_size, las… in py_blake2s_new()
/external/python/cpython3/Modules/_blake2/
Dblake2b_impl.c92 PyObject *node_offset_obj, int node_depth, in py_blake2b_new_impl() argument
187 if (node_depth < 0 || node_depth > 255) { in py_blake2b_new_impl()
192 self->param.node_depth = node_depth; in py_blake2b_new_impl()
Dblake2s_impl.c92 PyObject *node_offset_obj, int node_depth, in py_blake2s_new_impl() argument
187 if (node_depth < 0 || node_depth > 255) { in py_blake2s_new_impl()
192 self->param.node_depth = node_depth; in py_blake2s_new_impl()
/external/python/cpython3/Modules/_blake2/impl/
Dblake2s-ref.c115 BLAKE2_LOCAL_INLINE(int) blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth() argument
117 P->node_depth = node_depth; in blake2s_param_set_node_depth()
179 P->node_depth = 0; in blake2s_init()
201 P->node_depth = 0; in blake2s_init_key()
Dblake2b-ref.c122 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth() argument
124 P->node_depth = node_depth; in blake2b_param_set_node_depth()
185 P->node_depth = 0; in blake2b_init()
208 P->node_depth = 0; in blake2b_init_key()
Dblake2.h98 uint8_t node_depth; /* 15 */ member
113 uint8_t node_depth; /* 17 */ member
Dblake2s.c138 BLAKE2_LOCAL_INLINE(int) blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth() argument
140 P->node_depth = node_depth; in blake2s_param_set_node_depth()
Dblake2b.c151 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth() argument
153 P->node_depth = node_depth; in blake2b_param_set_node_depth()
/external/python/cpython3/Lib/test/
Dtest_hashlib.py566 constructor(node_depth=i)
567 self.assertRaises(ValueError, constructor, node_depth=-1)
568 self.assertRaises(ValueError, constructor, node_depth=256)
599 node_depth=1,
661 node_depth=6,
704 node_depth=6,
/external/sonivox/arm-wt-22k/lib_src/
Deas_xmf.c507 EAS_I32 node_depth = 0 ; in XMF_FindFileContents() local
525 if ((result = XMF_ReadNode(hwInstData, pXMFData, value, &length, node_depth)) != EAS_SUCCESS) in XMF_FindFileContents()
/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)
368 * *node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode).
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/tensorflow/tensorflow/core/kernels/
Dnn_ops_test.cc1257 static void BM_ImageNetSoftmaxFwd(int iters, int batch_size, int node_depth, in BM_ImageNetSoftmaxFwd() argument
1262 Tensor input(DT_FLOAT, TensorShape({batch_size, node_depth})); in BM_ImageNetSoftmaxFwd()
1280 testing::ItemsProcessed(batch_size * node_depth * iters); in BM_ImageNetSoftmaxFwd()