Home
last modified time | relevance | path

Searched refs:node_offset (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Modules/_blake2/
Dblake2b_impl.c92 unsigned long long node_offset, int node_depth, in py_blake2b_new_impl() argument
161 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2b_new_impl()
166 store48(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
169 store64(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
Dblake2s_impl.c91 unsigned long long node_offset, int node_depth, in py_blake2s_new_impl() argument
160 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2s_new_impl()
165 store48(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
168 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
/third_party/python/Modules/_blake2/clinic/
Dblake2b_impl.c.h18 unsigned long long node_offset, int node_depth,
39 unsigned long long node_offset = 0; in py_blake2b_new() local
130 if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) { in py_blake2b_new()
169 …pe, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, in… in py_blake2b_new()
Dblake2s_impl.c.h18 unsigned long long node_offset, int node_depth,
39 unsigned long long node_offset = 0; in py_blake2s_new() local
130 if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) { in py_blake2s_new()
169 …pe, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, in… in py_blake2s_new()
/third_party/python/Modules/_blake2/impl/
Dblake2b-ref.c109 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument
111 store64( &P->node_offset, node_offset ); in blake2b_param_set_node_offset()
188 store64( &P->node_offset, 0 ); in blake2b_init()
211 store64( &P->node_offset, 0 ); in blake2b_init_key()
Dblake2s-ref.c102 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument
104 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset()
182 store48( &P->node_offset, 0 ); in blake2s_init()
204 store48( &P->node_offset, 0 ); in blake2s_init_key()
Dblake2s.c139 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument
141 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset()
Dblake2.h78 uint8_t node_offset[6];// 14 member
104 uint64_t node_offset; // 16 member
Dblake2b.c151 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument
153 P->node_offset = node_offset; in blake2b_param_set_node_offset()
Dblake2bp.c36 store64(&P->node_offset, offset); in blake2bp_init_leaf()
55 store64(&P->node_offset, 0); in blake2bp_init_root()
Dblake2sp.c35 store48( P->node_offset, offset ); in blake2sp_init_leaf()
53 store48( P->node_offset, 0ULL ); in blake2sp_init_root()
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/
Dblake2.h36 uint8_t node_offset[6];/* 14 */ member
60 uint8_t node_offset[8];/* 16 */ member
/third_party/openssl/providers/implementations/include/prov/
Dblake2.h36 uint8_t node_offset[6];/* 14 */ member
60 uint8_t node_offset[8];/* 16 */ member
/third_party/mesa3d/src/amd/vulkan/
Dradv_acceleration_structure.c260 uint32_t node_offset = ctx->curr_ptr - ctx->base; in build_triangles() local
261 uint32_t node_id = node_offset >> 3; in build_triangles()
420 uint32_t node_offset = ctx->curr_ptr - ctx->base; in build_instances() local
421 uint32_t node_id = (node_offset >> 3) | radv_bvh_node_instance; in build_instances()
476 uint32_t node_offset = ctx->curr_ptr - ctx->base; in build_aabbs() local
477 uint32_t node_id = (node_offset >> 3) | radv_bvh_node_aabb; in build_aabbs()
1191 nir_ssa_def *node_offset = nir_iadd(&b, node_dst_offset, nir_imul_imm(&b, global_id, 64)); in build_leaf_shader() local
1192 nir_ssa_def *triangle_node_dst_addr = nir_iadd(&b, node_dst_addr, nir_u2u64(&b, node_offset)); in build_leaf_shader()
1261 nir_iadd_imm(&b, nir_ushr_imm(&b, node_offset, 3), radv_bvh_node_triangle); in build_leaf_shader()
1270 nir_ssa_def *node_offset = nir_iadd(&b, node_dst_offset, nir_imul_imm(&b, global_id, 64)); in build_leaf_shader() local
[all …]
/third_party/python/Lib/test/
Dtest_hashlib.py655 constructor(node_offset=0)
656 constructor(node_offset=max_offset)
657 self.assertRaises(ValueError, constructor, node_offset=-1)
658 self.assertRaises(OverflowError, constructor, node_offset=max_offset+1)
673 node_offset=512,
735 node_offset=5,
778 node_offset=5,
/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, \
382 * *node_offset*: node offset (0 to ``2**64-1`` for BLAKE2b, 0 to ``2**48-1`` for
681 ... node_offset=0, node_depth=0, last_node=False)
685 ... node_offset=1, node_depth=0, last_node=True)
689 ... node_offset=0, node_depth=1, last_node=True)
/third_party/openssl/providers/implementations/digests/
Dblake2s_prov.c85 store48(P->node_offset, 0); in ossl_blake2s_param_init()
Dblake2b_prov.c90 store64(P->node_offset, 0); in ossl_blake2b_param_init()
/third_party/node/deps/openssl/openssl/providers/implementations/digests/
Dblake2b_prov.c90 store64(P->node_offset, 0); in ossl_blake2b_param_init()
Dblake2s_prov.c85 store48(P->node_offset, 0); in ossl_blake2s_param_init()
/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