Home
last modified time | relevance | path

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

/external/bcc/src/cc/
Dtable_desc.h50 leaf_size(that.leaf_size), in TableDesc()
66 leaf_size(0), in TableDesc()
72 size_t leaf_size, size_t max_entries, int flags) in TableDesc() argument
77 leaf_size(leaf_size), in TableDesc()
93 size_t leaf_size; variable
Dbpf_module.cc500 return tables_[id]->leaf_size; in table_leaf_size()
507 TableIterator(size_t key_size, size_t leaf_size) in TableIterator()
508 : key(new uint8_t[key_size]), leaf(new uint8_t[leaf_size]) { in TableIterator()
/external/bcc/src/cc/includes/
Dtable_desc.h50 leaf_size(that.leaf_size), in TableDesc()
66 leaf_size(0), in TableDesc()
72 size_t leaf_size, size_t max_entries, int flags) in TableDesc() argument
77 leaf_size(leaf_size), in TableDesc()
93 size_t leaf_size; variable
/external/python/cpython3/Modules/_blake2/clinic/
Dblake2s_impl.c.h17 int fanout, int depth, unsigned long leaf_size,
38 unsigned long leaf_size = 0; in py_blake2s_new() local
137 if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) { in py_blake2s_new()
194 …_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, no… in py_blake2s_new()
Dblake2b_impl.c.h17 int fanout, int depth, unsigned long leaf_size,
38 unsigned long leaf_size = 0; in py_blake2b_new() local
137 if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) { in py_blake2b_new()
194 …_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, no… in py_blake2b_new()
/external/bcc/src/cc/api/
DBPFTable.cc45 char value[desc.leaf_size]; in get_value()
63 char value[desc.leaf_size * ncpus]; in get_value()
77 r = leaf_to_string(value + i * desc.leaf_size, value_str.at(i)); in get_value()
87 char value[desc.leaf_size]; in update_value()
109 char value[desc.leaf_size * ncpus]; in update_value()
121 r = string_to_leaf(value_str.at(i), value + i * desc.leaf_size); in update_value()
190 auto value = std::unique_ptr<void, decltype(::free)*>(::malloc(desc.leaf_size), in get_table_offline()
DBPFTable.h60 char buf[8 * desc.leaf_size]; in leaf_to_string()
/external/python/cpython3/Modules/_blake2/
Dblake2s_impl.c91 int fanout, int depth, unsigned long leaf_size, in py_blake2s_new_impl() argument
153 if (leaf_size > 0xFFFFFFFFU) { in py_blake2s_new_impl()
158 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()
/external/avb/libavb_aftl/
Davb_aftl_util.c52 uint64_t leaf_size, in avb_aftl_rfc6962_hash_leaf() argument
58 avb_assert(leaf_size != AVB_AFTL_UINT64_MAX); in avb_aftl_rfc6962_hash_leaf()
60 buffer = (uint8_t*)avb_malloc(leaf_size + 1); in avb_aftl_rfc6962_hash_leaf()
69 if (leaf_size > 0) avb_memcpy(buffer + 1, leaf, leaf_size); in avb_aftl_rfc6962_hash_leaf()
71 retval = avb_aftl_sha256(buffer, leaf_size + 1, hash); in avb_aftl_rfc6962_hash_leaf()
Davb_aftl_util.h59 uint64_t leaf_size, /* Size of the leaf data. */
/external/python/cpython3/Lib/test/
Dtest_hashlib.py648 constructor(leaf_size=0)
649 constructor(leaf_size=(1<<32)-1)
650 self.assertRaises(ValueError, constructor, leaf_size=-1)
651 self.assertRaises(OverflowError, constructor, leaf_size=1<<32)
670 leaf_size=256,
732 leaf_size=4,
775 leaf_size=4,
/external/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()
/external/python/cpython3/Doc/library/
Dhashlib.rst319 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
324 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
373 * *leaf_size*: maximal byte length of leaf (0 to 2**32-1, 0 if unlimited or in
674 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
678 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
682 ... leaf_size=LEAF_SIZE, inner_size=INNER_SIZE,
/external/bcc/src/cc/frontends/clang/
Db_frontend_action.cc1144 table.leaf_size = sz; in VisitVarDecl()
1234 table.key_size, table.leaf_size, in VisitVarDecl()
/external/python/cpython3/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