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

  /external/python/cpython3/Modules/_blake2/clinic/
blake2b_impl.c.h 17 int fanout, int depth, PyObject *leaf_size_obj,
34 PyObject *leaf_size_obj = NULL; 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);
blake2s_impl.c.h 17 int fanout, int depth, PyObject *leaf_size_obj,
34 PyObject *leaf_size_obj = NULL; 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/
blake2b_impl.c 82 leaf_size as leaf_size_obj: object = NULL
94 int fanout, int depth, PyObject *leaf_size_obj,
159 if (leaf_size_obj != NULL) {
160 leaf_size = PyLong_AsUnsignedLong(leaf_size_obj);
blake2s_impl.c 82 leaf_size as leaf_size_obj: object = NULL
94 int fanout, int depth, PyObject *leaf_size_obj,
159 if (leaf_size_obj != NULL) {
160 leaf_size = PyLong_AsUnsignedLong(leaf_size_obj);

Completed in 72 milliseconds