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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome_elf/dll_hash/
dll_hash_main.cc 24 int hash = DllNameToHash(std::string(argv[i])); local
25 printf("<int value=\"%d\" label=\"%s\"/>\n", hash, argv[i]);
  /external/chromium_org/media/base/
djb2.cc 9 uint32 hash = seed; local
11 hash = hash * 33 + src[i];
13 return hash;
  /external/chromium_org/ppapi/tools/
pepper_hash_for_uma.cc 16 #include "base/hash.h"
29 uint32 data = base::Hash(argv[i], strlen(argv[i]));
33 int hash = static_cast<int>(data & 0x7fffffff); local
34 printf("<int value=\"%d\" label=\"%s\"/>\n", hash, argv[i]);
  /external/chromium_org/remoting/host/
pin_hash_unittest.cc 17 std::string hash = MakeHostPinHash("Host ID", "1234"); local
18 ASSERT_EQ("hmac:bk6RVRFLpLO89mr4QPHSg8CemUUtI90r2F0VfvTmWLI=", hash);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_hash.h 30 * Hash table implementation.
32 * This file provides a hash implementation that is capable of dealing
34 * functions operating on the hash return an iterator. The iterator
59 struct cso_hash *hash; member in struct:cso_hash_iter
65 void cso_hash_delete(struct cso_hash *hash);
68 int cso_hash_size(struct cso_hash *hash);
72 * Adds a data with the given key to the hash. If entry with the given
73 * key is already in the hash, this current entry is instered before it
75 * Function returns iterator pointing to the inserted item in the hash.
77 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash, unsigned key
    [all...]
  /external/clang/test/CodeGen/
ubsan-blacklist.c 2 // RUN: echo "fun:hash" > %t-func.blacklist
13 // DEFAULT: @hash
14 // FUNC: @hash
15 // FILE: @hash
16 unsigned hash() { function
  /external/guava/guava/src/com/google/common/hash/
package-info.java 17 * Hash functions and related structures.
20 package com.google.common.hash;
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_hash.h 30 * Hash table implementation.
32 * This file provides a hash implementation that is capable of dealing
34 * functions operating on the hash return an iterator. The iterator
59 struct cso_hash *hash; member in struct:cso_hash_iter
65 void cso_hash_delete(struct cso_hash *hash);
68 int cso_hash_size(struct cso_hash *hash);
72 * Adds a data with the given key to the hash. If entry with the given
73 * key is already in the hash, this current entry is instered before it
75 * Function returns iterator pointing to the inserted item in the hash.
77 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash, unsigned key
    [all...]
  /hardware/invensense/60xx/mlsdk/mlutils/
checksum.c 3 /** bernstein hash, from public domain source */
7 uint32_t hash = 5381; local
12 hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
15 return hash;
  /external/chromium_org/base/third_party/superfasthash/
superfasthash.c 42 uint32_t hash = len, tmp; local
52 hash += get16bits (data);
53 tmp = (get16bits (data+2) << 11) ^ hash;
54 hash = (hash << 16) ^ tmp;
56 hash += hash >> 11;
61 case 3: hash += get16bits (data);
62 hash ^= hash << 16
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
RsaHashedKeyAlgorithm.cpp 44 KeyAlgorithm* RsaHashedKeyAlgorithm::hash() function in class:WebCore::RsaHashedKeyAlgorithm
47 m_hash = KeyAlgorithm::createHash(m_algorithm.rsaHashedParams()->hash());
  /external/chromium_org/third_party/smhasher/src/
SuperFastHash.cpp 8 http://www.azillionmonkeys.com/qed/hash.html */
29 uint32_t hash = 0, tmp; local
39 hash += get16bits (data);
40 tmp = (get16bits (data+2) << 11) ^ hash;
41 hash = (hash << 16) ^ tmp;
43 hash += hash >> 11;
48 case 3: hash += get16bits (data);
49 hash ^= hash << 16
    [all...]
  /external/elfutils/0.153/libelf/
dl-hash.h 1 /* Compute hash value for given string according to ELF standard.
62 unsigned int hash = (unsigned int) *iname++; local
65 hash = (hash << 4) + (unsigned int) *iname++;
68 hash = (hash << 4) + (unsigned int) *iname++;
71 hash = (hash << 4) + (unsigned int) *iname++;
74 hash = (hash << 4) + (unsigned int) *iname++
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/
hash_fun.h 1 // 'struct hash' from SGI -*- C++ -*-
66 struct hash { }; struct
78 struct hash<char*> struct
86 struct hash<const char*> struct
94 struct hash<char> struct
102 struct hash<unsigned char> struct
110 struct hash<signed char> struct
118 struct hash<short> struct
126 struct hash<unsigned short> struct
134 struct hash<int struct
142 struct hash<unsigned int> struct
150 struct hash<long> struct
158 struct hash<unsigned long> struct
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/
hash_fun.h 1 // 'struct hash' from SGI -*- C++ -*-
66 struct hash { }; struct
78 struct hash<char*> struct
86 struct hash<const char*> struct
94 struct hash<char> struct
102 struct hash<unsigned char> struct
110 struct hash<signed char> struct
118 struct hash<short> struct
126 struct hash<unsigned short> struct
134 struct hash<int struct
142 struct hash<unsigned int> struct
150 struct hash<long> struct
158 struct hash<unsigned long> struct
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/
hash_fun.h 1 // 'struct hash' from SGI -*- C++ -*-
66 struct hash { }; struct
78 struct hash<char*> struct
86 struct hash<const char*> struct
94 struct hash<char> struct
102 struct hash<unsigned char> struct
110 struct hash<signed char> struct
118 struct hash<short> struct
126 struct hash<unsigned short> struct
134 struct hash<int struct
142 struct hash<unsigned int> struct
150 struct hash<long> struct
158 struct hash<unsigned long> struct
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/backward/
hash_fun.h 1 // 'struct hash' from SGI -*- C++ -*-
66 struct hash { }; struct
78 struct hash<char*> struct
86 struct hash<const char*> struct
94 struct hash<char> struct
102 struct hash<unsigned char> struct
110 struct hash<signed char> struct
118 struct hash<short> struct
126 struct hash<unsigned short> struct
134 struct hash<int struct
142 struct hash<unsigned int> struct
150 struct hash<long> struct
158 struct hash<unsigned long> struct
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 39 * when the hash value is not stored.
48 size_type hash = ranged_probe_fn_base::operator()(r_key); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);

Completed in 2006 milliseconds

1 2 3 4 5 6 7 8 91011>>