HomeSort by relevance Sort by last modified time
    Searched refs:node_depth (Results 1 - 12 of 12) sorted by null

  /external/python/cpython3/Modules/_blake2/clinic/
blake2b_impl.c.h 8 " node_offset=0, node_depth=0, inner_size=0, last_node=False)\n"
17 PyObject *node_offset_obj, int node_depth,
24 static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", NULL};
35 int node_depth = 0; local
40 &data, &digest_size, &key, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) {
43 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);
blake2s_impl.c.h 8 " node_offset=0, node_depth=0, inner_size=0, last_node=False)\n"
17 PyObject *node_offset_obj, int node_depth,
24 static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", NULL};
35 int node_depth = 0; local
40 &data, &digest_size, &key, &salt, &person, &fanout, &depth, &leaf_size_obj, &node_offset_obj, &node_depth, &inner_size, &last_node)) {
43 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/
blake2b_impl.c 81 node_depth: int = 0
92 PyObject *node_offset_obj, int node_depth,
187 if (node_depth < 0 || node_depth > 255) {
189 "node_depth must be between 0 and 255");
192 self->param.node_depth = node_depth;
blake2s_impl.c 81 node_depth: int = 0
92 PyObject *node_offset_obj, int node_depth,
187 if (node_depth < 0 || node_depth > 255) {
189 "node_depth must be between 0 and 255");
192 self->param.node_depth = node_depth;
  /external/python/cpython3/Modules/_blake2/impl/
blake2.h 98 uint8_t node_depth; /* 15 */ member in struct:__blake2s_param
113 uint8_t node_depth; /* 17 */ member in struct:__blake2b_param
blake2b-ref.c 122 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth )
124 P->node_depth = node_depth;
185 P->node_depth = 0;
208 P->node_depth = 0;
blake2s-ref.c 115 BLAKE2_LOCAL_INLINE(int) blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth )
117 P->node_depth = node_depth;
179 P->node_depth = 0;
201 P->node_depth = 0;
blake2b.c 151 BLAKE2_LOCAL_INLINE(int) blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth )
153 P->node_depth = node_depth;
blake2s.c 138 BLAKE2_LOCAL_INLINE(int) blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth )
140 P->node_depth = node_depth;
  /external/python/cpython3/Lib/test/
test_hashlib.py 566 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,
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_xmf.c 507 EAS_I32 node_depth = 0 ; local
525 if ((result = XMF_ReadNode(hwInstData, pXMFData, value, &length, node_depth)) != EAS_SUCCESS)
  /external/tensorflow/tensorflow/core/kernels/
nn_ops_test.cc     [all...]

Completed in 692 milliseconds