/third_party/python/Modules/_blake2/clinic/ |
D | blake2b_impl.c.h | 17 int fanout, int depth, unsigned long leaf_size, 36 int fanout = 1; in py_blake2b_new() local 104 fanout = _PyLong_AsInt(fastargs[5]); in py_blake2b_new() 105 if (fanout == -1 && PyErr_Occurred()) { in py_blake2b_new() 169 …return_value = py_blake2b_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, l… in py_blake2b_new()
|
D | blake2s_impl.c.h | 17 int fanout, int depth, unsigned long leaf_size, 36 int fanout = 1; in py_blake2s_new() local 104 fanout = _PyLong_AsInt(fastargs[5]); in py_blake2s_new() 105 if (fanout == -1 && PyErr_Occurred()) { in py_blake2s_new() 169 …return_value = py_blake2s_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, l… in py_blake2s_new()
|
/third_party/python/Modules/_blake2/ |
D | blake2b_impl.c | 91 int fanout, int depth, unsigned long leaf_size, in py_blake2b_new_impl() argument 139 if (fanout < 0 || fanout > 255) { in py_blake2b_new_impl() 144 self->param.fanout = (uint8_t)fanout; in py_blake2b_new_impl()
|
D | blake2s_impl.c | 90 int fanout, int depth, unsigned long leaf_size, in py_blake2s_new_impl() argument 138 if (fanout < 0 || fanout > 255) { in py_blake2s_new_impl() 143 self->param.fanout = (uint8_t)fanout; in py_blake2s_new_impl()
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2b-ref.c | 91 static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout() argument 93 P->fanout = fanout; in blake2b_param_set_fanout() 185 P->fanout = 1; in blake2b_init() 208 P->fanout = 1; in blake2b_init_key()
|
D | blake2s-ref.c | 84 static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout ) in blake2s_param_set_fanout() argument 86 P->fanout = fanout; in blake2s_param_set_fanout() 179 P->fanout = 1; in blake2s_init() 201 P->fanout = 1; in blake2s_init_key()
|
D | blake2s.c | 121 static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout ) in blake2s_param_set_fanout() argument 123 P->fanout = fanout; in blake2s_param_set_fanout()
|
D | blake2.h | 75 uint8_t fanout; // 3 member 101 uint8_t fanout; // 3 member
|
D | blake2b.c | 133 static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout() argument 135 P->fanout = fanout; in blake2b_param_set_fanout()
|
D | blake2bp.c | 33 P->fanout = PARALLELISM_DEGREE; in blake2bp_init_leaf() 52 P->fanout = PARALLELISM_DEGREE; in blake2bp_init_root()
|
D | blake2sp.c | 32 P->fanout = PARALLELISM_DEGREE; in blake2sp_init_leaf() 50 P->fanout = PARALLELISM_DEGREE; in blake2sp_init_root()
|
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/ |
D | blake2.h | 33 uint8_t fanout; /* 3 */ member 57 uint8_t fanout; /* 3 */ member
|
/third_party/openssl/providers/implementations/include/prov/ |
D | blake2.h | 33 uint8_t fanout; /* 3 */ member 57 uint8_t fanout; /* 3 */ member
|
/third_party/python/Lib/test/ |
D | test_hashlib.py | 630 constructor(fanout=i) 631 self.assertRaises(ValueError, constructor, fanout=-1) 632 self.assertRaises(ValueError, constructor, fanout=256) 670 fanout=1, 732 fanout=2, 775 fanout=2,
|
/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, \ 374 * *fanout*: fanout (0 to 255, 0 if unlimited, 1 in sequential mode). 679 ... h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH, 683 ... h01 = blake2b(buf[LEAF_SIZE:], fanout=FANOUT, depth=DEPTH, 687 ... h10 = blake2b(digest_size=32, fanout=FANOUT, depth=DEPTH,
|
/third_party/openssl/providers/implementations/digests/ |
D | blake2s_prov.c | 82 P->fanout = 1; in ossl_blake2s_param_init()
|
D | blake2b_prov.c | 87 P->fanout = 1; in ossl_blake2b_param_init()
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
D | blake2b_prov.c | 87 P->fanout = 1; in ossl_blake2b_param_init()
|
D | blake2s_prov.c | 82 P->fanout = 1; in ossl_blake2s_param_init()
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 137 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
|
/third_party/ffmpeg/doc/ |
D | protocols.texi | 91 subscriber must have a matching routing_key; "amq.fanout" is the same as a 92 broadcast operation (i.e. the data is forwarded to all queues on the fanout
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.0.0.rst | 2923 - freedreno/ir3: rename fanin/fanout to collect/split
|
D | 19.3.0.rst | 2931 - freedreno/ir3: allow copy-propagate out of fanout
|
D | 21.2.0.rst | 2020 - docs/freedreno: Update for the fanin/fanout -> collect/split rename.
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 89560 struct packet_fanout *fanout; member
|