/third_party/python/Modules/_blake2/clinic/ |
D | blake2b_impl.c.h | 17 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()
|
D | blake2s_impl.c.h | 17 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/ |
D | blake2s_impl.c | 90 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()
|
D | blake2b_impl.c | 91 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/ |
D | test_hashlib.py | 641 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/ |
D | mkutf8data.c | 352 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/ |
D | hashlib.rst | 325 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/ |
D | gstavcodecmap.c | 3433 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/ |
D | matroska-demux.c | 7267 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/ |
D | 3.6.4rc1.rst | 412 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
|
D | 3.7.0a3.rst | 716 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
|