Home
last modified time | relevance | path

Searched refs:leaf_size (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Modules/_blake2/clinic/
Dblake2b_impl.c.h17 int fanout, int depth, unsigned long leaf_size,
38 unsigned long leaf_size = 0; in py_blake2b_new() local
122 if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) { in py_blake2b_new()
169 …_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, no… in py_blake2b_new()
Dblake2s_impl.c.h17 int fanout, int depth, unsigned long leaf_size,
38 unsigned long leaf_size = 0; in py_blake2s_new() local
122 if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) { in py_blake2s_new()
169 …_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, no… in py_blake2s_new()
/third_party/python/Modules/_blake2/
Dblake2s_impl.c90 int fanout, int depth, unsigned long leaf_size, in py_blake2s_new_impl() argument
152 if (leaf_size > 0xFFFFFFFFU) { in py_blake2s_new_impl()
157 store32(&(self->param.leaf_length), leaf_size); in py_blake2s_new_impl()
Dblake2b_impl.c91 int fanout, int depth, unsigned long leaf_size, in py_blake2b_new_impl() argument
153 if (leaf_size > 0xFFFFFFFFU) { in py_blake2b_new_impl()
158 store32(&(self->param.leaf_length), leaf_size); in py_blake2b_new_impl()
/third_party/python/Lib/test/
Dtest_hashlib.py641 constructor(leaf_size=0)
642 constructor(leaf_size=(1<<32)-1)
643 self.assertRaises(ValueError, constructor, leaf_size=-1)
644 self.assertRaises(OverflowError, constructor, leaf_size=1<<32)
663 leaf_size=256,
725 leaf_size=4,
768 leaf_size=4,
/third_party/e2fsprogs/util/
Dmkutf8data.c352 int (*leaf_size)(void *); member
959 index += tree->leaf_size(tree->root); in index_nodes()
982 index += tree->leaf_size(node->left); in index_nodes()
996 index += tree->leaf_size(node->right); in index_nodes()
1210 size = tree->leaf_size(tree->root); in emit()
1275 size = tree->leaf_size(node->left); in emit()
1292 size = tree->leaf_size(node->right); in emit()
1658 trees[i].leaf_size = nfkdicf_size; in trees_init()
1665 trees[i+1].leaf_size = nfkdi_size; in trees_init()
/third_party/python/Doc/library/
Dhashlib.rst325 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
330 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
379 * *leaf_size*: maximal byte length of leaf (0 to ``2**32-1``, 0 if unlimited or in
680 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
684 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
688 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
/third_party/gstreamer/gst_libav/ext/libav/
Dgstavcodecmap.c3433 gint leaf_size; in gst_ffmpeg_caps_with_codecid() local
3436 if (gst_structure_get_int (str, "leaf_size", &leaf_size)) in gst_ffmpeg_caps_with_codecid()
3437 context->block_align = leaf_size; in gst_ffmpeg_caps_with_codecid()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-demux.c7267 guint leaf_size; in gst_matroska_demux_audio_caps() local
7277 leaf_size = GST_READ_UINT16_BE (data + 44); in gst_matroska_demux_audio_caps()
7283 flavor, packet_size, height, leaf_size, sample_width, in gst_matroska_demux_audio_caps()
7287 G_TYPE_INT, leaf_size, "width", G_TYPE_INT, sample_width, NULL); in gst_matroska_demux_audio_caps()
/third_party/python/Misc/NEWS.d/
D3.6.4rc1.rst412 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
D3.7.0a3.rst716 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch