HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 226 - 250 of 8562) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/droiddriver/libs/
guava-13.0.jar 
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
bitset.cpp 17 * Uses a simple hash table for compaction.
25 * Hash table for up to 1k 64-bit words, for 1 bit per BMP code point.
47 int32_t hash=(int32_t)(key>>55)&0x1ff; local
48 hash^=(int32_t)(key>>44)&0x7ff;
49 hash^=(int32_t)(key>>33)&0x7ff;
50 hash^=(int32_t)(key>>22)&0x7ff;
51 hash^=(int32_t)(key>>11)&0x7ff;
52 hash^=(int32_t)key&0x7ff;
54 if(values[hash]==0xffff) {
56 keys[hash]=key
    [all...]
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 17 * Uses a simple hash table for compaction.
25 * Hash table for up to 1k 64-bit words, for 1 bit per BMP code point.
47 int32_t hash=(int32_t)(key>>55)&0x1ff; local
48 hash^=(int32_t)(key>>44)&0x7ff;
49 hash^=(int32_t)(key>>33)&0x7ff;
50 hash^=(int32_t)(key>>22)&0x7ff;
51 hash^=(int32_t)(key>>11)&0x7ff;
52 hash^=(int32_t)key&0x7ff;
54 if(values[hash]==0xffff) {
56 keys[hash]=key
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 35 template<class Key = std::string, class Hash = std::hash_map<Key, double> >
38 typedef Hash Wmap;
45 explicit SparseWeightVector(const SparseWeightVector<Key, Hash> &other) {
48 void operator=(const SparseWeightVector<Key, Hash> &other) {
51 void CopyFrom(const SparseWeightVector<Key, Hash> &other) {
115 void LoadWeightVector(const SparseWeightVector<Key, Hash> &vec) {
132 const SparseWeightVector<Key, Hash> &w1,
135 const SparseWeightVector<Key, Hash> &w1,
138 const SparseWeightVector<Key, Hash> &w1,
140 void MultWeightUpdate(const SparseWeightVector<Key, Hash> &w1)
    [all...]
  /external/chromium/chrome/browser/resources/picasaweb_uploader/
background.html 23 * @param {string} hash Hash value unique to this uploader (to differentiate
26 function Uploader(files, album, client, hash) {
33 this.hash = hash;
60 // We pass unique hash to the notification dom, so it will distinct this
64 chrome.extension.getURL('notification.html' + this.hash));
124 bg.removeUploader(this.hash);
286 var hash = '#' + this.lastUploaderHash_++;
287 var uploader = new Uploader(files, album, this.client, hash);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
swap_member.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 typedef test_hash<std::hash<int> > Hash;
34 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1));
37 C c2(0, Hash(2), Compare(2), Alloc(2));
43 assert(c1.hash_function() == Hash(2));
52 assert(c2.hash_function() == Hash(1));
60 typedef test_hash<std::hash<int> > Hash
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
swap_non_member.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash;
33 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 31 * a simple hash algorithm directly into this class, instead of using the
33 * are combined in getExpandedTypeID() method to share the same hash calculation
35 * expand the hash table.
80 * The initial capacity of the hash table. Use a bigger number
86 * The capacity of the hash table, i.e. the size of the
92 * The threshold of the hash table, which is equal to capacity * loadFactor.
93 * If the number of entries in the hash table is bigger than the threshold,
94 * the hash table needs to be expanded.
99 * The internal array to store the hash entries.
100 * Each array member is a slot for a hash bucket
187 int hash = type + namespace.hashCode() + localName.hashCode(); local
379 int hash; field in class:ExpandedNameTable.HashEntry
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_cache.c 35 * consumers can query the hash table of state using a cache_id,
40 * The inner workings are a simple hash table based on a CRC of the
57 GLuint hash = item->cache_id, i; local
64 hash ^= ikey[i];
65 hash = (hash << 5) | (hash >> 27);
68 return hash;
76 a->hash == b->hash &
141 GLuint hash; local
274 GLuint hash; local
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 15 package com.google.common.hash;
40 * Returns a general-purpose, <b>non-cryptographic-strength</b>, streaming hash function that
41 * produces hash codes of length at least {@code minimumBits}. Users without specific
42 * compatibility requirements and who do not persist the hash codes are encouraged to
43 * choose this hash function.
68 * Returns a hash function implementing the
77 * Returns a hash function implementing the
88 * Returns a hash function implementing the
98 * Returns a hash function implementing the
110 * Returns a hash function implementing the MD5 hash algorithm by delegating to the MD
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_cache.c 35 * consumers can query the hash table of state using a cache_id,
40 * The inner workings are a simple hash table based on a CRC of the
57 GLuint hash = item->cache_id, i; local
64 hash ^= ikey[i];
65 hash = (hash << 5) | (hash >> 27);
68 return hash;
76 a->hash == b->hash &
141 GLuint hash; local
274 GLuint hash; local
    [all...]
  /external/chromium_org/third_party/smhasher/src/
main.cpp 37 pfHash hash; member in struct:HashInfo
55 { FNV, 32, 0xE3CBBE91, "FNV", "Fowler-Noll-Vo hash, 32-bit" },
106 pass &= VerificationTest(info->hash,info->hashbits,info->verification,false);
118 pass &= VerificationTest(info->hash,info->hashbits,info->verification,true);
128 void test ( hashfunc<hashtype> hash, HashInfo * info )
142 VerificationTest(hash,hashbits,info->verification,true);
143 SanityTest(hash,hashbits);
144 AppendedZeroesTest(hash,hashbits);
155 BulkSpeedTest(info->hash,info->verification);
162 TinySpeedTest(hashfunc<hashtype>(info->hash),sizeof(hashtype),i,info->verification,true,cycles)
    [all...]
City.h 25 // hash functions, such as Murmur. This is largely due to higher
27 // well on hash-quality tests.
30 // a 128-bit hash. For strings more than about 2000 bytes it can be
39 // By the way, for some hash functions, given strings a and b, the hash
41 // doesn't hold for any hash functions in this file.
59 // Hash function for a byte array.
62 // Hash function for a byte array. For convenience, a 64-bit seed is also
66 // Hash function for a byte array. For convenience, two seeds are also
71 // Hash function for a byte array
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 4 perfect.c: code to generate code for a hash for perfect hashing.
10 This generates a minimal perfect hash function. That means, given a
11 set of n keys, this determines a hash function that maps each of
14 The perfect hash function first uses a normal hash function on the key
16 keys, then it computes a^scramble[tab[b]] to get the final perfect hash.
22 perfect hash functions for large databases", Fox, Heath, Chen, and Daoud,
27 0..*blen*-1. A fast hash function determines both a and b
28 simultaneously. Any decent hash function is likely to produce
29 hashes so that (a,b) is distinct for all pairs. I try the hash
233 ub4 hash = phash_lookup(mykey->name_k, mykey->len_k, initlev); local
276 ub4 hash = initval; local
384 ub4 hash; local
491 ub4 hash = mykey->a_k^scramble[i]; local
    [all...]
  /bootable/recovery/minzip/
Android.mk 5 Hash.c \
  /dalvik/vm/
Hash.h 17 * General purpose hash table, used for finding classes, methods, etc.
25 /* compute the hash of an item with a specific type */
29 * Compare a hash entry with a "loose" item after their hash values match.
52 * One entry in the hash table. "data" values are expected to be (or have
69 * Expandable hash table.
101 * Clear out a hash table, freeing the contents of any used entries.
106 * Free a hash table. Performs a "clear" first.
122 * Get #of entries in hash table.
129 * Get total size of hash table (for memory usage calculations)
    [all...]
  /development/ndk/platforms/android-3/arch-arm/lib-bootstrap/
libdl.so 
  /development/ndk/platforms/android-9/arch-x86/lib-bootstrap/
libdl.so 
  /external/chromium/crypto/
sha2.h 18 SHA256_LENGTH = 32 // length in bytes of a SHA-256 hash
21 // Computes the SHA-256 hash of the input string 'str' and stores the first
22 // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32,
23 // only 32 bytes (the full hash) are stored in the 'output' buffer.
  /external/chromium_org/crypto/
sha2.h 19 static const size_t kSHA256Length = 32; // Length in bytes of a SHA-256 hash.
21 // Computes the SHA-256 hash of the input string 'str' and stores the first
22 // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32,
23 // only 32 bytes (the full hash) are stored in the 'output' buffer.
  /external/chromium_org/net/quic/
quic_sent_entropy_manager.h 33 // Returns true if |entropy_hash| matches the expected sent entropy hash
52 // Linked hash map from sequence numbers to the sent entropy hash up to the
56 // Cumulative hash of entropy of all sent packets.
  /external/chromium_org/tools/page_cycler/startup_test_common/
head.js 6 console.log("PAGE_ONLOAD_EVENT" + location.hash);
  /external/chromium_org/tools/traceline/svgui/
traceline.xml 9 <body onload="loadJSON(document.location.hash.substr(1).split(','));">
  /external/dropbear/libtomcrypt/demos/
small.c 1 /* small demo app that just includes a cipher/hash/prng */
  /external/e2fsprogs/tests/f_h_badroot/
expect.1 7 HTREE directory inode 26689 has an unsupported hash version (240)
20 Problem in HTREE directory inode 80065: block #0 has an unordered hash table
29 Problem in HTREE directory inode 73393: block #1 has bad min hash
30 Problem in HTREE directory inode 73393: block #2 has bad max hash

Completed in 1145 milliseconds

1 2 3 4 5 6 7 8 91011>>