HomeSort by relevance Sort by last modified time
    Searched defs:hash_value (Results 1 - 25 of 38) sorted by null

1 2

  /external/v8/src/base/
functional.cc 98 size_t hash_value(unsigned int v) { return hash_value_unsigned(v); } function in namespace:v8::base
101 size_t hash_value(unsigned long v) { // NOLINT(runtime/int) function in namespace:v8::base
106 size_t hash_value(unsigned long long v) { // NOLINT(runtime/int) function in namespace:v8::base
functional.h 26 // base::hash is implemented by calling the hash_value function. The namespace
28 // lookup. So if there is a free function hash_value in the same namespace as a
45 // size_t hash_value(Point const& p) {
54 // size_t hash_code = h(p); // calls bar::hash_value(Point const&)
88 V8_INLINE size_t hash_value(type v) { return static_cast<size_t>(v); }
94 size_t hash_value(unsigned int);
95 size_t hash_value(unsigned long); // NOLINT(runtime/int)
96 size_t hash_value(unsigned long long); // NOLINT(runtime/int)
99 V8_INLINE size_t hash_value(signed type v) { \
100 return hash_value(bit_cast<unsigned type>(v));
109 V8_INLINE size_t hash_value(float v) { function in namespace:v8::base
114 V8_INLINE size_t hash_value(double v) { function in namespace:v8::base
130 V8_INLINE size_t hash_value(T* const& v) { function in namespace:v8::base
135 V8_INLINE size_t hash_value(std::pair<T1, T2> const& v) { function in namespace:v8::base
    [all...]
flags.h 72 friend size_t hash_value(const Flags& flags) { return flags.mask_; } function in class:v8::base::final
  /external/v8/src/compiler/
frame-states.cc 14 size_t hash_value(OutputFrameStateCombine const& sc) { function in namespace:v8::internal::compiler
44 size_t hash_value(FrameStateInfo const& info) { function in namespace:v8::internal::compiler
common-operator.h 47 inline size_t hash_value(BranchHint hint) { return static_cast<size_t>(hint); } function in namespace:v8::internal::compiler
57 size_t hash_value(DeoptimizeKind kind);
67 size_t hash_value(IfExceptionHint hint);
89 size_t hash_value(SelectParameters const& p);
machine-operator.cc 60 size_t hash_value(StoreRepresentation rep) { function in namespace:v8::internal::compiler
simplified-operator.cc 61 size_t hash_value(BufferAccess access) { function in namespace:v8::internal::compiler
97 size_t hash_value(FieldAccess const& access) { function in namespace:v8::internal::compiler
130 size_t hash_value(ElementAccess const& access) { function in namespace:v8::internal::compiler
type-hints.h 40 friend size_t hash_value(BinaryOperationHints const& hints) { function in class:v8::internal::compiler::final
machine-operator.h 42 V8_INLINE size_t hash_value(TruncationMode mode) { function in namespace:v8::internal::compiler
87 size_t hash_value(StoreRepresentation);
js-operator.cc 38 size_t hash_value(VectorSlotPair const& p) { function in namespace:v8::internal::compiler
55 size_t hash_value(TailCallMode mode) { function in namespace:v8::internal::compiler
56 return base::hash_value(static_cast<unsigned>(mode));
85 size_t hash_value(BinaryOperationParameters const& p) { function in namespace:v8::internal::compiler
124 size_t hash_value(CallConstructParameters const& p) { function in namespace:v8::internal::compiler
165 size_t hash_value(CallRuntimeParameters const& p) { function in namespace:v8::internal::compiler
201 size_t hash_value(ContextAccess const& access) { function in namespace:v8::internal::compiler
234 size_t hash_value(DynamicAccess const& access) { function in namespace:v8::internal::compiler
263 size_t hash_value(NamedAccess const& p) { function in namespace:v8::internal::compiler
304 size_t hash_value(PropertyAccess const& p) function in namespace:v8::internal::compiler
323 size_t hash_value(LoadGlobalParameters const& p) { function in namespace:v8::internal::compiler
353 size_t hash_value(StoreGlobalParameters const& p) { function in namespace:v8::internal::compiler
382 size_t hash_value(CreateArgumentsParameters const& p) { function in namespace:v8::internal::compiler
412 size_t hash_value(CreateArrayParameters const& p) { function in namespace:v8::internal::compiler
443 size_t hash_value(CreateClosureParameters const& p) { function in namespace:v8::internal::compiler
472 size_t hash_value(CreateLiteralParameters const& p) { function in namespace:v8::internal::compiler
    [all...]
js-operator.h 43 size_t hash_value(VectorSlotPair const&);
57 size_t hash_value(TailCallMode);
83 size_t hash_value(BinaryOperationParameters const&);
108 size_t hash_value(CallConstructParameters const&);
150 friend size_t hash_value(CallFunctionParameters const& p) { function in class:v8::internal::compiler::final
163 size_t hash_value(CallFunctionParameters const&);
188 size_t hash_value(CallRuntimeParameters const&);
217 size_t hash_value(ContextAccess const&);
238 size_t hash_value(DynamicAccess const&);
269 size_t hash_value(NamedAccess const&)
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
hashtab.h 39 unsigned int (*hash_value) (struct hashtab_val * h, hashtab_key_t key); /* hash function */ member in struct:hashtab_val
51 extern hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
  /external/srtp/crypto/hash/
hmac.c 172 uint32_t hash_value[5]; local
200 /* the result is returned in the array hash_value[] */
201 sha1_final(&state->ctx, hash_value);
203 /* copy hash_value to *result */
205 result[i] = ((uint8_t *)hash_value)[i];
208 octet_string_hex_string((uint8_t *)hash_value, tag_len));
  /external/selinux/policycoreutils/newrole/
hashtab.h 36 unsigned int (*hash_value) (struct hashtab_val * h, hashtab_key_t key); /* hash function */ member in struct:hashtab_val
54 extern hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
  /external/srtp/crypto/test/
sha1_driver.c 100 uint32_t hash_value[5]; local
112 sha1_final(&ctx, hash_value);
113 if (0 == memcmp(test_case->hash, hash_value, 20)) {
118 octet_string_hex_string((uint8_t *)hash_value, 20));
126 octet_string_hex_string((uint8_t *)hash_value, 20));
  /external/v8/test/unittests/base/
functional-unittest.cc 69 EXPECT_EQ(h(v), hash_value(v));
103 EXPECT_EQ(hash_range(values, values + arraysize(values)), hash_value(values));
141 size_t hash_value(Foo const& v) { return hash_combine(v.x, v.y); } function in namespace:v8::base::__anon24461
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
symtab.h 34 unsigned int hash_value; variable
  /external/llvm/include/llvm/ADT/
ArrayRef.h 379 template <typename T> hash_code hash_value(ArrayRef<T> S) { function in namespace:llvm
Hashing.h 27 // -- 'hash_value' is a function designed to be overloaded for each
35 // within the implementation of a 'hash_value' routine or similar context.
70 /// using llvm::hash_value;
71 /// llvm::hash_code code = hash_value(x);
94 /// \brief Allow a hash_code to be directly run through hash_value.
95 friend size_t hash_value(const hash_code &code) { return code.value; } function in class:llvm::hash_code
107 hash_value(T value);
112 template <typename T> hash_code hash_value(const T *ptr);
116 hash_code hash_value(const std::pair<T, U> &arg);
120 hash_code hash_value(const std::basic_string<T> &arg)
634 hash_value(T value) { function in namespace:llvm
640 template <typename T> hash_code hash_value(const T *ptr) { function in namespace:llvm
648 hash_code hash_value(const std::pair<T, U> &arg) { function in namespace:llvm
655 hash_code hash_value(const std::basic_string<T> &arg) { function in namespace:llvm
    [all...]
  /external/mesa3d/src/mesa/program/
hash_table.c 114 const unsigned hash_value = (*ht->hash)(key); local
115 const unsigned bucket = hash_value % ht->num_buckets;
140 const unsigned hash_value = (*ht->hash)(key); local
141 const unsigned bucket = hash_value % ht->num_buckets;
155 const unsigned hash_value = (*ht->hash)(key); local
156 const unsigned bucket = hash_value % ht->num_buckets;
  /external/llvm/unittests/ADT/
HashingTest.cpp 36 friend hash_code hash_value(const NonPOD &obj) { function in struct:llvm::NonPOD
66 EXPECT_EQ(hash_value(42), hash_value(x));
67 EXPECT_EQ(hash_value(42), hash_value(TE_Foo));
68 EXPECT_NE(hash_value(42), hash_value(y));
69 EXPECT_NE(hash_value(42), hash_value(TE_Bar));
70 EXPECT_NE(hash_value(42), hash_value(p))
128 hash_code hash_value(HashableDummy dummy) { return dummy.value; } function in namespace:__anon18814
    [all...]
  /external/v8/src/crankshaft/
unique.h 82 friend inline size_t hash_value(Unique<T> const& unique) { function in class:v8::internal::final
  /external/v8/src/
machine-type.h 158 V8_INLINE size_t hash_value(MachineRepresentation rep) { function in namespace:v8::internal
162 V8_INLINE size_t hash_value(MachineType type) { function in namespace:v8::internal
utils.cc 85 size_t hash_value(BailoutId id) { function in namespace:v8::internal
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
shared_ptr.hpp 704 // hash_value
708 template< class T > std::size_t hash_value( boost::shared_ptr<T> const & p ) function in namespace:boost

Completed in 344 milliseconds

1 2