Home
last modified time | relevance | path

Searched refs:fanout (Results 1 – 25 of 25) sorted by relevance

/third_party/python/Modules/_blake2/clinic/
Dblake2b_impl.c.h17 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()
Dblake2s_impl.c.h17 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/
Dblake2b_impl.c91 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()
Dblake2s_impl.c90 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/
Dblake2b-ref.c91 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()
Dblake2s-ref.c84 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()
Dblake2s.c121 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()
Dblake2.h75 uint8_t fanout; // 3 member
101 uint8_t fanout; // 3 member
Dblake2b.c133 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()
Dblake2bp.c33 P->fanout = PARALLELISM_DEGREE; in blake2bp_init_leaf()
52 P->fanout = PARALLELISM_DEGREE; in blake2bp_init_root()
Dblake2sp.c32 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/
Dblake2.h33 uint8_t fanout; /* 3 */ member
57 uint8_t fanout; /* 3 */ member
/third_party/openssl/providers/implementations/include/prov/
Dblake2.h33 uint8_t fanout; /* 3 */ member
57 uint8_t fanout; /* 3 */ member
/third_party/python/Lib/test/
Dtest_hashlib.py630 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/
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, \
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/
Dblake2s_prov.c82 P->fanout = 1; in ossl_blake2s_param_init()
Dblake2b_prov.c87 P->fanout = 1; in ossl_blake2b_param_init()
/third_party/node/deps/openssl/openssl/providers/implementations/digests/
Dblake2b_prov.c87 P->fanout = 1; in ossl_blake2b_param_init()
Dblake2s_prov.c82 P->fanout = 1; in ossl_blake2s_param_init()
/third_party/python/Doc/tools/
Dsusp-ignored.csv137 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
/third_party/ffmpeg/doc/
Dprotocols.texi91 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/
D20.0.0.rst2923 - freedreno/ir3: rename fanin/fanout to collect/split
D19.3.0.rst2931 - freedreno/ir3: allow copy-propagate out of fanout
D21.2.0.rst2020 - docs/freedreno: Update for the fanin/fanout -> collect/split rename.
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h89560 struct packet_fanout *fanout; member