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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/
HttpHost.java 212 int hash = LangUtils.HASH_SEED; local
213 hash = LangUtils.hashCode(hash, this.lcHostname);
214 hash = LangUtils.hashCode(hash, this.port);
215 hash = LangUtils.hashCode(hash, this.schemeName);
216 return hash;
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElement.java 218 int hash = LangUtils.HASH_SEED; local
219 hash = LangUtils.hashCode(hash, this.name);
220 hash = LangUtils.hashCode(hash, this.value);
222 hash = LangUtils.hashCode(hash, this.parameters[i]);
224 return hash;
  /external/boringssl/src/ssl/test/runner/
hkdf.go 19 "hash"
23 func hkdfExtract(hash func() hash.Hash, salt, ikm []byte) []byte {
25 salt = make([]byte, hash().Size())
27 hmac := hmac.New(hash, salt)
33 func hkdfExpand(hash func() hash.Hash, prk, info []byte, length int) []byte {
34 hashSize := hash().Size(
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
StringMapFunnel.java 19 import com.google.common.hash.Funnel;
20 import com.google.common.hash.PrimitiveSink;
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
CTLogInfo.java 57 * Get the log's ID, that is the SHA-256 hash of it's public key
93 int hash = 1; local
94 hash = hash * 31 + publicKey.hashCode();
95 hash = hash * 31 + description.hashCode();
96 hash = hash * 31 + url.hashCode();
98 return hash;
  /external/google-breakpad/src/common/
unordered.h 41 // For hash<string>.
42 #include "util/hash/hash.h"
44 template <class T, class U, class H = __gnu_cxx::hash<T> >
46 template <class T, class H = __gnu_cxx::hash<T> >
  /external/libvpx/
update_libvpx.sh 60 # Get the current commit hash.
61 hash=$(git log -1 --format="%H")
68 echo "Commit: $hash"
78 # Output the current commit hash.
79 echo "Current HEAD: $hash"
82 # Output log for upstream from current hash.
90 $prev_hash..$hash)"
98 $hash..$prev_hash)"
  /external/llvm/test/MC/AsmParser/
comments-x86-darwin.s 3 .p2align 3 # test single hash after align
5 foo: # single hash should be ignored as comment
  /external/tensorflow/tensorflow/contrib/lite/tools/
mutable_op_resolver.h 22 // Needed to resolve unordered_set hash on older compilers.
25 struct hash<tflite::BuiltinOperator> { struct in namespace:std
27 return std::hash<int>()(op);
  /external/v8/src/parsing/
duplicate-finder.cc 19 uint32_t hash = Hash(key, is_one_byte); local
21 base::HashMap::Entry* entry = map_.LookupOrInsert(encoding, hash);
27 uint32_t DuplicateFinder::Hash(Vector<const uint8_t> key, bool is_one_byte) {
28 // Primitive hash function, almost identical to the one used
31 uint32_t hash = (length << 1) | (is_one_byte ? 1 : 0); local
34 hash = (hash + c) * 1025;
35 hash ^= (hash >> 6)
    [all...]
  /frameworks/base/location/java/android/location/
Country.java 176 int hash = mHashCode; local
177 if (hash == 0) {
178 hash = 17;
179 hash = hash * 13 + mCountryIso.hashCode();
180 hash = hash * 13 + mSource;
181 mHashCode = hash;
  /frameworks/support/room/common/src/main/java/androidx/room/
RoomMasterTable.java 50 public static String createInsertQuery(String hash) {
53 + " VALUES(" + DEFAULT_ID + ", \"" + hash + "\")";
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 18 *(.hash)
i386linux.xu 18 *(.hash)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-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);
resize_no_store_hash_fn_imps.hpp 39 * hash value is not stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key); local
53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/
i386linux.xr 14 *(.hash)
i386linux.xu 14 *(.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/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);
resize_no_store_hash_fn_imps.hpp 39 * hash value is not stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key); local
53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xr 18 *(.hash)
i386linux.xu 18 *(.hash)
  /external/deqp/framework/delibs/depool/
dePoolHashArray.h 23 * \brief Memory pool hash-array class.
37 * \brief Declare a template pool hash-array (array with hash) class interface.
38 * \param TYPENAME Type name of the declared hash-array.
46 * The functions for operating the hash are:
54 * Value* HashArray_find (Hash* hashArray, Key key);
55 * deBool HashArray_insert (Hash* hashArray, Key key, Value value);
56 * deBool HashArray_copyToArray (Hash* hashArray, KeyArray* keys, ValueArray* values);
62 DE_DECLARE_POOL_HASH(TYPENAME##Hash, KEYTYPE, int); \
66 TYPENAME##Hash* hash;
    [all...]
  /external/libcups/cups/
hash.c 28 * 'cupsHashData()' - Perform a hash function on the given data.
31 * hash algorithms for the "job-password-encryption" attribute, including
34 * The "hash" argument points to a buffer of "hashsize" bytes and should be at
37 * The returned hash is binary data.
42 ssize_t /* O - Size of hash or -1 on error */
44 const void *data, /* I - Data to hash */
45 size_t datalen, /* I - Length of data to hash */
46 unsigned char *hash, /* I - Hash buffer */
47 size_t hashsize) /* I - Size of hash buffer *
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
HC4.java 2 * Hash Chain match finder with 2-, 3-, and 4-byte hashing
14 private final Hash234 hash; field in class:HC4
38 hash = new Hash234(dictSize);
58 * and possibly normalizes the hash tables and the hash chain.
68 hash.normalize(normalizationOffset);
95 hash.calcHashes(buf, readPos);
96 int delta2 = lzPos - hash.getHash2Pos();
97 int delta3 = lzPos - hash.getHash3Pos();
98 int currentMatch = hash.getHash4Pos()
    [all...]

Completed in 1546 milliseconds

1 2 3 4 5 6 7 8 91011>>