HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 1 - 25 of 15682) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kmod/shared/
hash.h 5 struct hash;
8 const struct hash *hash; member in struct:hash_iter
13 struct hash *hash_new(unsigned int n_buckets, void (*free_value)(void *value));
14 void hash_free(struct hash *hash);
15 int hash_add(struct hash *hash, const char *key, const void *value);
16 int hash_add_unique(struct hash *hash, const char *key, const void *value)
    [all...]
hash.c 25 #include <shared/hash.h>
39 struct hash { struct
47 struct hash *hash_new(unsigned int n_buckets,
50 struct hash *hash; local
53 hash = calloc(1, sizeof(struct hash) +
55 if (hash == NULL)
57 hash->n_buckets = n_buckets;
58 hash->free_value = free_value
95 unsigned int tmp, hash = len, rem = len & 3; local
    [all...]
  /external/clang/test/PCH/Inputs/
pr27445.h 3 void hash() {} function in struct:Info
  /external/e2fsprogs/tests/f_h_badnode/
name 0 hash directory with bad HTREE nodes
  /external/e2fsprogs/tests/f_h_reindex/
name 1 reindex HTREE Directory with different hash seed
expect.1 5 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
14 Problem in HTREE directory inode 16001: block #6 has bad min hash
    [all...]
  /system/tools/hidl/test/hash_test/bad/
current.txt 1 b19939ecb4f877820df49b684f3164f0a3f9aa18743a3521f3bd04e4a06fed64 test.hash.hash@1.0::IHash
  /system/tools/hidl/test/hash_test/good/
current.txt 1 b19939ecb4f877820df49b684f3164f0a3f9aa18743a3521f3bd04e4a06fed64 test.hash.hash@1.0::IHash # comments are fine too
  /frameworks/base/services/tests/servicestests/assets/NetworkWatchlistTest/
watchlist_config_test1.xml 5 <hash>8E7DCD2AEB4F364358242BB3F403263E61E3B4AECE4E2500FF28BF32E52FF0F1</hash>
7 <hash>F0905DA7549614957B449034C281EF7BDEFDBC2B6E050AD1E78D6DE18FBD0D5F</hash>
11 <hash>1EDD62868F2767A1FFF68DF0A4CB3C23448E45100715768DB9310B5E719536A1</hash>
13 <hash>18DD41C9F2E8E4879A1575FB780514EF33CF6E1F66578C4AE7CCA31F49B9F2ED</hash>
17 <hash>6C67059D</hash>
    [all...]
  /external/skia/tests/
DynamicHashTest.cpp 18 static uint32_t Hash(const int& key) { return key; }
22 class Hash : public SkTDynamicHash<Entry, int> {
24 Hash() : INHERITED() {}
45 Hash hash; local
46 ASSERT(hash.capacity() == 0);
48 hash.add(&a);
49 ASSERT(hash.capacity() == 4);
51 hash.add(&b);
52 ASSERT(hash.capacity() == 4)
67 Hash hash; local
79 Hash hash; local
114 Hash hash; local
140 Hash hash; local
193 Hash hash; local
    [all...]
  /external/skqp/tests/
DynamicHashTest.cpp 18 static uint32_t Hash(const int& key) { return key; }
22 class Hash : public SkTDynamicHash<Entry, int> {
24 Hash() : INHERITED() {}
45 Hash hash; local
46 ASSERT(hash.capacity() == 0);
48 hash.add(&a);
49 ASSERT(hash.capacity() == 4);
51 hash.add(&b);
52 ASSERT(hash.capacity() == 4)
67 Hash hash; local
79 Hash hash; local
114 Hash hash; local
140 Hash hash; local
193 Hash hash; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ObjectExtensions.cs 55 int hash = 23;
56 hash = ( ( hash << 5 ) * 37 ) ^ a;
57 hash = ( ( hash << 5 ) * 37 ) ^ b;
58 return hash;
63 int hash = 23;
64 hash = ( ( hash << 5 ) * 37 ) ^ a;
65 hash = ( ( hash << 5 ) * 37 ) ^ b
    [all...]
  /external/llvm/test/tools/llvm-cov/Inputs/
prefer_used_to_unused.proftext 2 # Func Hash:
11 # Func Hash:
19 # Func Hash:
combine_expansions.proftext 2 # Func Hash:
double_dots.proftext 2 # Func Hash:
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
hash1b.d 2 #ld: -shared --hash-style=both
3 #error: .gnu.hash is incompatible with the MIPS ABI
hash1c.d 2 #ld: -shared --hash-style=gnu
3 #error: .gnu.hash is incompatible with the MIPS ABI
  /external/e2fsprogs/ext2ed/
ext2.descriptors 416 __u32 hash[1];
418 __u32 hash[2];
420 __u32 hash[3];
422 __u32 hash[4];
424 __u32 hash[5];
426 __u32 hash[6];
428 __u32 hash[7];
430 __u32 hash[8];
432 __u32 hash[9];
434 __u32 hash[10]
    [all...]
  /external/skia/include/private/
SkChecksum.h 24 * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you
29 static uint32_t Mix(uint32_t hash) {
30 hash ^= hash >> 16;
31 hash *= 0x85ebca6b;
32 hash ^= hash >> 13;
33 hash *= 0xc2b2ae35;
34 hash ^= hash >> 16
    [all...]
  /external/skqp/include/private/
SkChecksum.h 24 * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you
29 static uint32_t Mix(uint32_t hash) {
30 hash ^= hash >> 16;
31 hash *= 0x85ebca6b;
32 hash ^= hash >> 13;
33 hash *= 0xc2b2ae35;
34 hash ^= hash >> 16
    [all...]
  /art/test/120-hashcode/
info.txt 1 Check that object hashCode and System.identityHashCode never cause the hash to change
  /external/llvm/lib/Fuzzer/test/
SimpleHashTest.cpp 16 uint32_t Hash = 0x12039854;
18 Hash += Data[i];
19 Hash += (Hash << 10);
20 Hash ^= (Hash >> 6);
22 Hash += (Hash << 3);
23 Hash ^= (Hash >> 11)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
note-3.l 1 .*warning: section '.hash' is being made into a note
  /hardware/interfaces/tests/hash/1.0/default/
Hash.cpp 1 #include "Hash.h"
6 namespace hash { namespace in namespace:android::hardware::tests
10 // Methods from ::android::hardware::tests::hash::V1_0::IHash follow.
11 Return<void> Hash::dummy() {
15 Return<void> Hash::functions() {
22 return new Hash();
27 } // namespace hash
  /external/adhd/cras/src/common/
sfh.c 43 uint32_t SuperFastHash (const char * data, int len, uint32_t hash) {
54 hash += get16bits (data);
55 tmp = (get16bits (data+2) << 11) ^ hash;
56 hash = (hash << 16) ^ tmp;
58 hash += hash >> 11;
63 case 3: hash += get16bits (data);
64 hash ^= hash << 16
    [all...]

Completed in 5104 milliseconds

1 2 3 4 5 6 7 8 91011>>