HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 151 - 175 of 15682) sorted by null

1 2 3 4 5 67 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/
hash.c 0 /* hash.c -- gas hash table code
21 /* This version of the hash table code is a wholescale replacement of
22 the old hash table code, which was fairly bad. This is based on
23 the hash table code in BFD, but optimized slightly for the
25 are stored in the hash table. Instead, it always stores a pointer.
26 The assembler uses the hash table mostly to store symbols, and we
27 don't need to confuse the symbol structure with a hash table
34 /* An entry in a hash table. */
37 /* Next entry for this hash code. *
43 unsigned long hash; member in struct:hash_entry
137 unsigned long hash; local
210 unsigned long hash; local
240 unsigned long hash; local
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/HashInstanceLibSha1/
HashInstanceLibSha1.c 2 This library is BaseCrypto SHA1 hash instance.
3 It can be registered to BaseCrypto router, to serve as hash engine.
47 Start hash sequence.
49 @param HashHandle Hash handle.
51 @retval EFI_SUCCESS Hash sequence start and HandleHandle returned.
52 @retval EFI_OUT_OF_RESOURCES No enough resource to start hash.
75 Update hash sequence data.
77 @param HashHandle Hash handle.
81 @retval EFI_SUCCESS Hash sequence updated.
100 Complete hash sequence complete.
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/HashInstanceLibSha256/
HashInstanceLibSha256.c 2 This library is BaseCrypto SHA256 hash instance.
3 It can be registered to BaseCrypto router, to serve as hash engine.
47 Start hash sequence.
49 @param HashHandle Hash handle.
51 @retval EFI_SUCCESS Hash sequence start and HandleHandle returned.
52 @retval EFI_OUT_OF_RESOURCES No enough resource to start hash.
75 Update hash sequence data.
77 @param HashHandle Hash handle.
81 @retval EFI_SUCCESS Hash sequence updated.
100 Complete hash sequence complete.
    [all...]
  /external/adhd/cras/src/common/
sfh.h 5 * An incremental version of the SuperFastHash hash function from
6 * http://www.azillionmonkeys.com/qed/hash.html
14 uint32_t SuperFastHash(const char *data, int len, uint32_t hash);
  /external/icu/icu4c/source/common/
hash.h 31 UHashtable* hash; member in class:Hashtable
127 hash = &hashObj;
128 uhash_setKeyDeleter(hash, uprv_deleteUObject);
139 hash = &hashObj;
140 uhash_setKeyDeleter(hash, uprv_deleteUObject);
145 UErrorCode& status) : hash(0) {
150 : hash(0)
161 : hash(0)
172 : hash(0)
178 : hash(0
    [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/libcxx/include/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /external/libnl/include/netlink/
hash.h 2 * This file was taken from http://ccodearchive.net/info/hash.html
26 * hash - fast hash of an array for internal use
28 * @num: the number of elements to hash
29 * @base: the base number to roll into the hash (usually 0)
32 * a 32-bit hash.
34 * This hash will have different results on different machines, so is
39 * what the fastest hash to use is.
44 * #include <ccan/hash/hash.h
    [all...]
  /external/llvm/unittests/Support/
raw_sha1_ostream_test.cpp 35 auto Hash = toHex(Sha1Stream.sha1());
37 ASSERT_EQ("2EF7BDE608CE5404E97D5F042F95F89F1C232871", Hash);
40 // Check that getting the intermediate hash in the middle of the stream does
45 auto Hash = toHex(Sha1Stream.sha1());
47 ASSERT_EQ("F7FF9E8B7BB2E09B70935A5D785E0CC5D9D0ABF0", Hash);
49 Hash = toHex(Sha1Stream.sha1());
51 // Compute the non-split hash separately as a reference.
56 ASSERT_EQ(NonSplitHash, Hash);
62 auto Hash = toHex(Sha1Stream.sha1());
64 ASSERT_EQ("F7FF9E8B7BB2E09B70935A5D785E0CC5D9D0ABF0", Hash);
    [all...]
  /external/mesa3d/src/mesa/program/
prog_cache.c 39 GLuint hash; member in struct:cache_item
56 * Compute hash index from state key.
62 GLuint hash = 0, i; local
66 /* Make a slightly better attempt at a hash function:
70 hash += ikey[i];
71 hash += (hash << 10);
72 hash ^= (hash >> 6);
75 return hash;
184 const GLuint hash = hash_key(key, keysize); local
208 const GLuint hash = hash_key(key, keysize); local
237 const GLuint hash = hash_key(key, keysize); local
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/configuration/plugins/
PluginFileReader.java 24 int hash = line.indexOf('#'); local
25 if (hash != -1) {
26 line = line.substring(0, hash);
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_StringToHashBucket.pbtxt 15 summary: "Converts each string in the input Tensor to its hash mod by a number of buckets."
17 The hash function is deterministic on the content of the string within the
20 Note that the hash function may change from time to time.
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/ext/
__hash 22 template <typename _Tp> struct _LIBCPP_TEMPLATE_VIS hash { };
24 template <> struct _LIBCPP_TEMPLATE_VIS hash<const char*>
34 template <> struct _LIBCPP_TEMPLATE_VIS hash<char *>
44 template <> struct _LIBCPP_TEMPLATE_VIS hash<char>
54 template <> struct _LIBCPP_TEMPLATE_VIS hash<signed char>
64 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned char>
74 template <> struct _LIBCPP_TEMPLATE_VIS hash<short>
84 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned short>
94 template <> struct _LIBCPP_TEMPLATE_VIS hash<int>
104 template <> struct _LIBCPP_TEMPLATE_VIS hash<unsigned int
    [all...]

Completed in 1778 milliseconds

1 2 3 4 5 67 8 91011>>