HomeSort by relevance Sort by last modified time
    Searched refs:hash (Results 276 - 300 of 5079) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/containers/
NotConstructible.h 31 struct hash<NotConstructible> struct in namespace:std
  /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>,
  /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>,
32 test_hash<std::hash<NotConstructible> >,
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
50 test_hash<std::hash<NotConstructible> >,
56 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>,
32 test_hash<std::hash<NotConstructible> >,
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
50 test_hash<std::hash<NotConstructible> >,
56 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>,
  /external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
assign_move.pass.cpp 14 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
36 test_hash<std::hash<int> >,
52 test_hash<std::hash<int> >(8),
58 test_hash<std::hash<int> >(2),
69 assert(c.hash_function() == test_hash<std::hash<int> >(8));
81 test_hash<std::hash<int> >,
97 test_hash<std::hash<int> >(8),
103 test_hash<std::hash<int> >(2),
114 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>,
32 test_hash<std::hash<NotConstructible> >,
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
50 test_hash<std::hash<NotConstructible> >,
56 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
hash.pass.cpp 19 // template <class P> struct hash<experimental::coroutine_handle<P>>;
35 const size_t ExpectLHS = std::hash<void*>{}(reinterpret_cast<void*>(LHSVal));
36 const size_t ExpectRHS = std::hash<void*>{}(reinterpret_cast<void*>(RHSVal));
39 const std::hash<C> h;
40 // FIXME: libc++'s implementation hash's the result of LHS.address(), so we
47 ASSERT_NOEXCEPT(std::hash<C>{}(LHS));
  /external/libcxx/test/support/test.support/
test_poisoned_hash_helper.pass.cpp 13 // headers that provide hash<T> specializations. This is required so that the
15 // by default, unless a STL header providing hash has already been included.
25 enum { value = is_complete<std::hash<T> >() };
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
128-space-before-hash.c 3 #pragma Testing spaces before hash
  /external/ppp/pppd/
md5.h 62 void MD5_Final (unsigned char hash[], MD5_CTX *mdContext);
  /external/syslinux/core/lwip/src/netif/ppp/
md5.h 53 void MD5Final ( unsigned char hash[], MD5_CTX *mdContext);
  /external/syslinux/gnu-efi/gnu-efi-3.0/gnuefi/
elf_x86_64_fbsd_efi.lds 9 .hash : { *(.hash) } /* this MUST come first! */
  /external/syslinux/gpxe/src/include/gpxe/
md5.h 15 u32 hash[MD5_HASH_WORDS]; member in struct:md5_ctx
  /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;
  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidRawDevice.h 59 std::hash<unsigned int> hash; local
60 return hash(v.first) ^ hash(v.second);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/debug/containers/
db_unord_container_tests.pass.cpp 59 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, MapAlloc>,
62 std::unordered_set<int, std::hash<int>, std::equal_to<int>, SetAlloc>,
65 std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, MapAlloc>,
68 std::unordered_multiset<int, std::hash<int>, std::equal_to<int>, SetAlloc>,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/
NotConstructible.h 31 struct hash<NotConstructible> struct in namespace:std
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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>,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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>,
32 test_hash<std::hash<NotConstructible> >,
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
50 test_hash<std::hash<NotConstructible> >,
56 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>,
32 test_hash<std::hash<NotConstructible> >,
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
50 test_hash<std::hash<NotConstructible> >,
56 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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>,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.set/unord.set.cnstr/
assign_move.pass.cpp 14 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
36 test_hash<std::hash<int> >,
52 test_hash<std::hash<int> >(8),
58 test_hash<std::hash<int> >(2),
69 assert(c.hash_function() == test_hash<std::hash<int> >(8));
81 test_hash<std::hash<int> >,
97 test_hash<std::hash<int> >(8),
103 test_hash<std::hash<int> >(2),
114 assert(c.hash_function() == test_hash<std::hash<int> >(8))
    [all...]

Completed in 605 milliseconds

<<11121314151617181920>>