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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/
sha1.h 18 static const size_t kSHA1Length = 20; // Length in bytes of a SHA-1 hash.
20 // Computes the SHA-1 hash of the input string |str| and returns the full
21 // hash.
24 // Computes the SHA-1 hash of the |len| bytes in |data| and puts the hash
25 // in |hash|. |hash| must be kSHA1Length bytes long.
27 unsigned char* hash);
  /external/libcxx/test/std/containers/
NotConstructible.h 31 struct hash<NotConstructible> struct in namespace:std
  /external/libcxx/test/std/containers/unord/unord.map/
max_size.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>,
  /external/libcxx/test/std/containers/unord/unord.multimap/
max_size.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>,
  /external/libcxx/test/std/containers/unord/unord.multiset/
max_bucket_count.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 typedef std::unordered_multiset<int, std::hash<int>,
max_size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 std::unordered_multiset<int, std::hash<int>,
  /external/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/
size.fail.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
49 test_hash<std::hash<NotConstructible> >,
55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
49 test_hash<std::hash<NotConstructible> >,
55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
  /external/libcxx/test/std/containers/unord/unord.set/
max_bucket_count.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 typedef std::unordered_set<int, std::hash<int>,
max_size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 std::unordered_set<int, std::hash<int>,
  /external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
assign_move.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
33 test_hash<std::hash<int> >,
49 test_hash<std::hash<int> >(8),
55 test_hash<std::hash<int> >(2),
66 assert(c.hash_function() == test_hash<std::hash<int> >(8));
78 test_hash<std::hash<int> >,
94 test_hash<std::hash<int> >(8),
100 test_hash<std::hash<int> >(2),
111 assert(c.hash_function() == test_hash<std::hash<int> >(8))
    [all...]
size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
49 test_hash<std::hash<NotConstructible> >,
55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
  /external/libcxx/test/std/utilities/type.index/type.index.synopsis/
hash_type_index.pass.cpp 12 // struct hash<type_index>
23 typedef std::hash<std::type_index> H;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btHashMap.h 40 /* Fowler / Noll / Vo (FNV) Hash */
41 unsigned int hash = InitialFNV; local
45 hash = hash ^ (m_string[i]); /* xor the low 8 bits */
46 hash = hash * FNVMultiple; /* multiply by the magic number */
48 m_hash = hash;
104 // Thomas Wang's hash
145 // Thomas Wang's hash
178 // Thomas Wang's hash
270 int hash = key.getHash() & (m_valueArray.capacity()-1); local
298 int hash = key.getHash() & (m_valueArray.capacity()-1); local
    [all...]
  /external/ppp/pppd/
md5.h 62 void MD5_Final (unsigned char hash[], MD5_CTX *mdContext);
  /external/tpm2/
PCR_Event.c 54 TPM_ALG_ID hash = CryptGetHashAlgByIndex(i); local
55 out->digests.digests[i].hashAlg = hash;
56 size = CryptStartHash(hash, &hashState);
61 PCRExtend(in->pcrHandle, hash, size,
  /external/v8/src/js/
templates.js 40 function GetCachedCallSite(siteObj, hash) {
41 var obj = %_Call(mapGetFn, callSiteCache, hash);
52 function SetCachedCallSite(siteObj, hash) {
53 var obj = %_Call(mapGetFn, callSiteCache, hash);
59 %_Call(mapSetFn, callSiteCache, hash, array);
68 function GetTemplateCallSite(siteObj, rawStrings, hash) {
69 var cached = GetCachedCallSite(rawStrings, hash);
76 return SetCachedCallSite(%object_freeze(siteObj), hash);
  /frameworks/opt/bitmap/sample/src/com/example/bitmapsample/
BitmapRequestKeyImpl.java 55 int hash = 17; local
56 hash += 31 * hash + mUriString.hashCode();
57 return hash;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
NotConstructible.h 31 struct hash<NotConstructible> struct in namespace:std
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
max_size.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
max_size.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
max_bucket_count.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 typedef std::unordered_multiset<int, std::hash<int>,
max_size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 std::unordered_multiset<int, std::hash<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
size.fail.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
49 test_hash<std::hash<NotConstructible> >,
55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
49 test_hash<std::hash<NotConstructible> >,
55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>