HomeSort by relevance Sort by last modified time
    Searched defs:hash_size (Results 1 - 25 of 26) sorted by null

1 2

  /external/webp/src/utils/
color_cache_utils.c 24 const int hash_size = 1 << hash_bits; local
27 cc->colors_ = (uint32_t*)WebPSafeCalloc((uint64_t)hash_size,
  /bootable/recovery/tests/unit/
package_test.cpp 85 uint64_t hash_size = file_content_.size() / 2; local
87 SHA1(reinterpret_cast<uint8_t*>(file_content_.data()), hash_size, expected_sha.data()); local
94 package->UpdateHashAtOffset(hashers, 0, hash_size);
  /external/u-boot/include/dm/
of_extra.h 31 int hash_size; /* Hash size */ member in struct:fmap_entry
  /external/avb/libavb/
avb_vbmeta_image.h 145 uint64_t hash_size; member in struct:AvbVBMetaImageHeader
  /external/e2fsprogs/intl/
gettextP.h 109 nls_uint32 hash_size; member in struct:loaded_domain
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 170 int hash_size = cso_hash_size(hash); local
171 int max_entries = (max_size > hash_size) ? max_size : hash_size;
173 if (hash_size > max_size)
174 to_remove += hash_size - max_size;
cso_context.c 228 int hash_size = cso_hash_size(hash); local
229 int max_entries = (max_size > hash_size) ? max_size : hash_size;
235 if (hash_size > max_size)
236 to_remove += hash_size - max_size;
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
hash_map.hpp 144 rehash(hash_size(size_ + 1));
210 static std::size_t hash_size(std::size_t num_elems) function in class:asio::detail::hash_map
  /external/u-boot/lib/libavb/
avb_vbmeta_image.h 126 uint64_t hash_size; member in struct:AvbVBMetaImageHeader
  /external/vboot_reference/firmware/2lib/
2rsa.c 247 uint32_t hash_size = vb2_digest_size(key->hash_alg); local
248 uint32_t pad_size = sig_size - hash_size;
254 if (!sig_size || !hash_size || hash_size > sig_size)
  /external/virglrenderer/src/gallium/auxiliary/cso_cache/
cso_cache.c 170 int hash_size = cso_hash_size(hash); local
171 int max_entries = (max_size > hash_size) ? max_size : hash_size;
173 if (hash_size > max_size)
174 to_remove += hash_size - max_size;
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.h 41 size_t hash_size; member in struct:tlsv1_record_layer
  /external/e2fsprogs/debugfs/
revoke.c 117 int hash_size; member in struct:jbd2_revoke_table_s
224 static struct jbd2_revoke_table_s *journal_init_revoke_table(int hash_size)
227 int tmp = hash_size;
237 table->hash_size = hash_size;
240 kmalloc(hash_size * sizeof(struct list_head), GFP_KERNEL);
247 for (tmp = 0; tmp < hash_size; tmp++)
259 for (i = 0; i < table->hash_size; i++) {
269 int journal_init_revoke(journal_t *journal, int hash_size)
272 J_ASSERT(is_power_of_2(hash_size));
    [all...]
  /external/e2fsprogs/e2fsck/
revoke.c 117 int hash_size; member in struct:jbd2_revoke_table_s
224 static struct jbd2_revoke_table_s *journal_init_revoke_table(int hash_size)
227 int tmp = hash_size;
237 table->hash_size = hash_size;
240 kmalloc(hash_size * sizeof(struct list_head), GFP_KERNEL);
247 for (tmp = 0; tmp < hash_size; tmp++)
259 for (i = 0; i < table->hash_size; i++) {
269 int journal_init_revoke(journal_t *journal, int hash_size)
272 J_ASSERT(is_power_of_2(hash_size));
    [all...]
  /external/tensorflow/tensorflow/core/grappler/graph_analyzer/
sig_node_test.cc 967 std::vector<size_t> hash_size; local
974 hash_size.emplace_back(RefTopoHash(sig_.nodes[i]).size());
985 std::sort(hash_size.begin(), hash_size.end());
986 EXPECT_THAT(hash_size, ElementsAre(4, 5, 5, 6, 6));
1013 std::vector<size_t> hash_size; local
1016 hash_size.emplace_back(RefTopoHash(sig_.nodes[i]).size());
1019 std::sort(hash_size.begin(), hash_size.end());
1021 EXPECT_THAT(hash_size, ElementsAre(3, 3, 4, 4))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
deflate.h 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
141 uInt hash_bits; /* log2(hash_size) */
142 uInt hash_mask; /* hash_size-1 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
deflate.h 137 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */
  /external/dnsmasq/src/
cache.c 26 static int bignames_left, hash_size; variable
77 /* hash_size is a power of two. */
84 else if (new_size <= hash_size || !(new = whine_malloc(new_size * sizeof(struct crec*))))
90 old_size = hash_size;
92 hash_size = new_size;
114 /* hash_size is a power of two */
115 return hash_table + ((val ^ (val >> 16)) & (hash_size - 1));
247 for (i = 0; i < hash_size; i++)
493 for (i = 0; i < hash_size; i++)
551 for (i = 0; i < hash_size; i++)
    [all...]
  /external/python/cpython2/Modules/zlib/
deflate.h 143 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
144 uInt hash_bits; /* log2(hash_size) */
145 uInt hash_mask; /* hash_size-1 */
  /external/u-boot/lib/zlib/
deflate.h 137 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */
  /external/zlib/src/
deflate.h 143 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
144 uInt hash_bits; /* log2(hash_size) */
145 uInt hash_mask; /* hash_size-1 */
  /external/u-boot/tools/
kwbimage.c 460 unsigned int hash_size; local
483 if (!EVP_DigestFinal(ctx, hash->hash, &hash_size)) {
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 139 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
140 #define TDB_DATA_START(hash_size) TDB_HASH_TOP(hash_size-1)
161 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
193 u32 hash_size; /* number of hash entries */ member in struct:tdb_header
421 if (list < -1 || list >= (int)tdb->header.hash_size) {
520 if (list < -1 || list >= (int)tdb->header.hash_size) {
521 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_unlock: list %d invalid (%d)\n", list, tdb->header.hash_size));
646 0, 4*tdb->header.hash_size)) {
684 0, 4*tdb->header.hash_size)) {
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 412 DWORD hash_size, len, i; local
442 len = sizeof(hash_size);
443 if (!CryptGetHashParam(hash, HP_HASHSIZE, (BYTE *) &hash_size, &len,
449 if ((int) hash_size != flen) {
451 (unsigned) hash_size, flen);
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.c 4636 int hash_size = hash_count ? (hash_count \/ MAX_LOAD) + 1 : 0; local
    [all...]

Completed in 475 milliseconds

1 2