HomeSort by relevance Sort by last modified time
    Searched refs:hash (Results 76 - 100 of 3140) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
functional_hash.h 56 /// Primary class template hash.
58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base
61 "std::hash is not specialized for this type");
67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base
77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \
134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl
140 hash(const _Tp& __val) function in struct:_Hash_impl
141 { return hash(&__val, sizeof(__val)); }
146 { return hash(&__val, sizeof(__val), __hash); }
152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl
158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl
169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base
181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base
193 struct hash<long double> struct in inherits:__hash_base
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
functional_hash.h 56 /// Primary class template hash.
58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base
61 "std::hash is not specialized for this type");
67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base
77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \
134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl
140 hash(const _Tp& __val) function in struct:_Hash_impl
141 { return hash(&__val, sizeof(__val)); }
146 { return hash(&__val, sizeof(__val), __hash); }
152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl
158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl
169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base
181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base
193 struct hash<long double> struct in inherits:__hash_base
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
functional_hash.h 56 /// Primary class template hash.
58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base
61 "std::hash is not specialized for this type");
67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base
77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \
134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl
140 hash(const _Tp& __val) function in struct:_Hash_impl
141 { return hash(&__val, sizeof(__val)); }
146 { return hash(&__val, sizeof(__val), __hash); }
152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl
158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl
169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base
181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base
193 struct hash<long double> struct in inherits:__hash_base
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
functional_hash.h 56 /// Primary class template hash.
58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base
61 "std::hash is not specialized for this type");
67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base
77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \
134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl
140 hash(const _Tp& __val) function in struct:_Hash_impl
141 { return hash(&__val, sizeof(__val)); }
146 { return hash(&__val, sizeof(__val), __hash); }
152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl
158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl
169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base
181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base
193 struct hash<long double> struct in inherits:__hash_base
    [all...]
  /external/deqp/framework/delibs/debase/
deString.c 39 * \brief Compute hash from string.
40 * \param str String to compute hash value for.
41 * \return Computed hash value.
45 /* \note [pyry] This hash is used in DT_GNU_HASH and is proven
48 deUint32 hash = 5381; local
53 hash = (hash << 5) + hash + c;
55 return hash;
60 deUint32 hash = 5381 local
74 deUint32 hash = 5381; local
    [all...]
  /external/deqp/framework/delibs/depool/
dePoolHash.c 21 * \brief Memory pool hash class.
40 deTestHash* hash = deTestHash_create(pool); local
47 /* Test find() on empty hash. */
48 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 0);
51 const int* val = deTestHash_find(hash, (deInt16)i);
58 deTestHash_insert(hash, (deInt16)i, -i);
61 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 5000);
64 const int* val = deTestHash_find(hash, (deInt16)i);
70 deTestHash_delete(hash, (deInt16)i);
72 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 4000)
    [all...]
  /art/runtime/
gc_map.h 68 size_t index = Hash(native_pc_offset) % num_entries;
78 static uint32_t Hash(uint32_t native_offset) {
79 uint32_t hash = native_offset; local
80 hash ^= (hash >> 20) ^ (hash >> 12);
81 hash ^= (hash >> 7) ^ (hash >> 4);
82 return hash;
    [all...]
  /external/guava/guava/src/com/google/common/hash/
HashCode.java 15 package com.google.common.hash;
32 * An immutable hash code of arbitrary bit length.
43 * Returns the number of bits in this hash code; a positive multiple of 8.
73 * Returns the value of this hash code as a byte array. The caller may modify the byte array;
81 * Copies bytes from this hash code into {@code dest}.
83 * @param dest the byte array into which the hash code will be written
113 public static HashCode fromInt(int hash) {
114 return new IntHashCode(hash);
118 final int hash; field in class:HashCode.IntHashCode
120 IntHashCode(int hash) {
174 final long hash; field in class:HashCode.LongHashCode
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
PackageSanityTests.java 17 package com.google.common.hash;
19 import com.google.common.hash.BloomFilterStrategies.BitArray;
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/
hash_shared_ptr.pass.cpp 13 // struct hash<shared_ptr<T>>
27 std::hash<std::shared_ptr<int> > f;
29 assert(h == std::hash<int*>()(ptr));
hash_unique_ptr.pass.cpp 13 // struct hash<unique_ptr<T, D>>
27 std::hash<std::unique_ptr<int> > f;
29 assert(h == std::hash<int*>()(ptr));
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_cache.c 37 struct cso_hash *hash; member in struct:translate_cache
47 cache->hash = cso_hash_create();
54 struct cso_hash *hash = cache->hash; local
55 struct cso_hash_iter iter = cso_hash_first_node(hash);
68 cso_hash_delete(cache->hash);
95 cso_hash_find_data_from_template(cache->hash,
102 cso_hash_insert(cache->hash, hash_key, translate);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/
hash_shared_ptr.pass.cpp 13 // struct hash<shared_ptr<T>>
27 std::hash<std::shared_ptr<int> > f;
29 assert(h == std::hash<int*>()(ptr));
hash_unique_ptr.pass.cpp 13 // struct hash<unique_ptr<T, D>>
27 std::hash<std::unique_ptr<int> > f;
29 assert(h == std::hash<int*>()(ptr));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }
direct_mod_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mod_based_base::range_hash(hash); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }
direct_mod_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mod_based_base::range_hash(hash); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }
direct_mod_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mod_based_base::range_hash(hash); }
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }
direct_mod_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mod_based_base::range_hash(hash); }
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }
direct_mod_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mod_based_base::range_hash(hash); }
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 56 operator()(size_type hash) const
57 { return mask_based_base::range_hash(hash); }

Completed in 1701 milliseconds

1 2 34 5 6 7 8 91011>>