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

1 2 3

  /external/v8/src/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...]
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
  /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...]
StringRefTest.cpp 405 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef()));
406 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef("")));
408 hash_code H = hash_value(S);
409 EXPECT_EQ(H, hash_value(StringRef("hello world")));
410 EXPECT_EQ(H, hash_value(StringRef(S)));
411 EXPECT_NE(H, hash_value(StringRef("hello worl")));
412 EXPECT_EQ(hash_value(std::string("hello worl")),
413 hash_value(StringRef("hello worl")))
    [all...]
  /external/srtp/crypto/include/
sha1.h 106 sha1_core(const uint32_t M[16], uint32_t hash_value[5]);
  /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/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/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
simplified-operator.h 53 size_t hash_value(BufferAccess);
76 size_t hash_value(FieldAccess const&);
99 size_t hash_value(ElementAccess const&);
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...]
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);
frame-states.h 64 friend size_t hash_value(OutputFrameStateCombine const&);
161 size_t hash_value(FrameStateInfo const&);
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...]
type-hints.h 40 friend size_t hash_value(BinaryOperationHints const& hints) { function in class:v8::internal::compiler::final
  /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));
sha1.c 77 sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) {
82 sha1_final(&ctx, hash_value);
99 sha1_core(const uint32_t M[16], uint32_t hash_value[5]) {
109 /* copy hash_value into H0, H1, H2, H3, H4 */
110 H0 = hash_value[0];
111 H1 = hash_value[1];
112 H2 = hash_value[2];
113 H3 = hash_value[3];
114 H4 = hash_value[4];
176 hash_value[0] = H0 + A
    [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/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,
hashtab.c 14 hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
32 p->hash_value = hash_value;
53 hvalue = h->hash_value(h, key);
92 hvalue = h->hash_value(h, key);
125 hvalue = h->hash_value(h, key);
166 hvalue = h->hash_value(h, key);
  /external/selinux/libsepol/src/
hashtab.c 35 hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
53 p->hash_value = hash_value;
74 hvalue = h->hash_value(h, key);
113 hvalue = h->hash_value(h, key);
146 hvalue = h->hash_value(h, key);
187 hvalue = h->hash_value(h, key);
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 25 friend hash_code hash_value(const Vector &);
141 /// \brief Return a hash_value for the given vector.
142 inline hash_code hash_value(const Vector &V) {
165 friend hash_code hash_value(const Matrix &);
380 inline hash_code hash_value(const Matrix &M) {
407 inline hash_code hash_value(const MDVector<Metadata> &V) {
408 return hash_value(static_cast<const Vector&>(V));
422 inline hash_code hash_value(const MDMatrix<Metadata> &M) {
423 return hash_value(static_cast<const Matrix&>(M));
  /external/llvm/include/llvm/ADT/
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...]
  /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/libchrome/crypto/
symmetric_key_win.cc 274 std::vector<BYTE> hash_value(hash_size);
277 ok = CryptGetHashParam(safe_hash, HP_HASHVAL, &hash_value[0], &size, 0);
281 memcpy(output_buf, &hash_value[0], hash_size);
292 ok = CryptHashData(safe_hash, &hash_value[0], hash_size, 0);
297 ok = CryptGetHashParam(safe_hash, HP_HASHVAL, &hash_value[0], &size, 0);
302 output_buf[i] ^= hash_value[i];
  /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

Completed in 810 milliseconds

1 2 3