/external/curl/tests/data/ |
test1602 | 5 hash 19 Internal hash create/add/destroy testing, exercising clean functions
|
test1603 | 5 hash 19 Internal hash add, retrieval, deletion testing
|
/external/kernel-headers/original/uapi/linux/netfilter/ipset/ |
ip_set_hash.h | 4 /* Hash type specific error codes */ 6 /* Hash is full */
|
/external/libchrome/base/ |
sha1.h | 18 static const size_t kSHA1Length = 20; // Length in bytes of a SHA-1 hash. 20 // Computes the SHA-1 hash of the input string |str| and returns the full 21 // hash. 24 // Computes the SHA-1 hash of the |len| bytes in |data| and puts the hash 25 // in |hash|. |hash| must be kSHA1Length bytes long. 27 unsigned char* hash);
|
hash.h | 14 // Deprecated: just use std::hash directly 16 // Computes a hash of a string |str|. 17 // WARNING: This hash function should not be used for any cryptographic purpose. 18 inline uint32_t Hash(const std::string& str) { 19 std::hash<std::string> hash_fn;
|
/external/snakeyaml/src/test/resources/pyyaml/ |
float-representer-2.3-bug.data | 1 #0.0: # hash(0) == hash(nan) and 0 == nan in Python 2.3
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/ipset/ |
ip_set_hash.h | 4 /* Hash type specific error codes */ 6 /* Hash is full */
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
provide-hidden-s.ld | 10 .hash : { *(.hash) }
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
cross1.t | 6 .hash : { *(.hash) }
|
/build/tools/droiddoc/templates-pdk/assets/ |
jquery-history.js | 15 return msie.getDoc().location.hash; 17 setHash: function(hash) { 21 d.location.hash = hash; 26 var hash = msie.iframe ? msie.getHash() : location.hash; 27 if (hash != currentHash) { 28 currentHash = hash; 30 location.hash = currentHash; 39 add: function(hash) { [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/static/ |
graph.html | 26 * Returns a hex string color from hash code of a string. This a popular 27 * implementation of generating hash code and spread over rgb color range 33 var hash = hashCode_(str); 34 var red = hash & 0xff; 35 var green = (hash >> 8) & 0xff; 36 var blue = (hash >> 16) & 0xff; 41 * Gets a hash code for a string. 42 * This is used by 'stringToColor' to generate a unique hash code 44 * @param {string} str A string to hash. 48 var hash = 0 [all...] |
/external/doclava/res/assets/templates/assets/ |
jquery-history.js | 15 return msie.getDoc().location.hash; 17 setHash: function(hash) { 21 d.location.hash = hash; 26 var hash = msie.iframe ? msie.getHash() : location.hash; 27 if (hash != currentHash) { 28 currentHash = hash; 30 location.hash = currentHash; 39 add: function(hash) { [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
cortex-a8-fix-plt.ld | 6 .hash : { *(.hash) } 7 .gnu.hash : { *(.gnu.hash) }
|
/external/clang/test/Profile/Inputs/ |
max-function-count.proftext | 2 # Func Hash: 11 # Func Hash: 19 # Func Hash:
|
/external/llvm/test/tools/llvm-profdata/Inputs/ |
vp-truncate.proftext | 2 # Func Hash: 11 # Func Hash: 20 # Func Hash:
|
/system/ca-certificates/ |
README.cacerts | 1 The filenames in the cacerts directory are in the format of <hash>.<n> 2 where "hash" is the subject hash produced by:
|
/system/core/include/utils/ |
JenkinsHash.h | 17 /* Implementation of Jenkins one-at-a-time hash function. These choices are 29 /* The Jenkins hash of a sequence of 32 bit words A, B, C is: 35 inline uint32_t JenkinsHashMix(uint32_t hash, uint32_t data) { 36 hash += data; 37 hash += (hash << 10); 38 hash ^= (hash >> 6); 39 return hash; 42 hash_t JenkinsHashWhiten(uint32_t hash); [all...] |
/prebuilts/go/darwin-x86/src/hash/fnv/ |
fnv.go | 5 // Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions 12 "hash" 29 // New32 returns a new 32-bit FNV-1 hash.Hash. 30 func New32() hash.Hash32 { 35 // New32a returns a new 32-bit FNV-1a hash.Hash. 36 func New32a() hash.Hash32 { 41 // New64 returns a new 64-bit FNV-1 hash.Hash [all...] |
/prebuilts/go/linux-x86/src/hash/fnv/ |
fnv.go | 5 // Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions 12 "hash" 29 // New32 returns a new 32-bit FNV-1 hash.Hash. 30 func New32() hash.Hash32 { 35 // New32a returns a new 32-bit FNV-1a hash.Hash. 36 func New32a() hash.Hash32 { 41 // New64 returns a new 64-bit FNV-1 hash.Hash [all...] |
/external/elfutils/libelf/ |
dl-hash.h | 1 /* Compute hash value for given string according to ELF standard. 31 unsigned long int hash = *name; local 32 if (hash != 0 && name[1] != '\0') 34 hash = (hash << 4) + name[1]; 37 hash = (hash << 4) + name[2]; 40 hash = (hash << 4) + name[3]; 43 hash = (hash << 4) + name[4] [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
eap_psk_common.c | 37 u8 hash[aes_block_size]; local 41 if (aes_128_encrypt_block(kdk, rand_p, hash)) 44 hash[aes_block_size - 1] ^= counter; 45 if (aes_128_encrypt_block(kdk, hash, tek)) 47 hash[aes_block_size - 1] ^= counter; 51 hash[aes_block_size - 1] ^= counter; 52 if (aes_128_encrypt_block(kdk, hash, &msk[i * aes_block_size])) 54 hash[aes_block_size - 1] ^= counter; 59 hash[aes_block_size - 1] ^= counter; 60 if (aes_128_encrypt_block(kdk, hash, [all...] |
/external/libweave/third_party/chromium/crypto/ |
sha2.cc | 15 std::string hash = SHA256HashString(str); local 16 len = std::min(hash.size(), len); 17 std::copy(hash.begin(), hash.begin() + len, output); 25 std::string hash(kSHA256Length, 0); 26 SHA256_Final(reinterpret_cast<uint8_t*>(&hash[0]), &sha_context); 27 return hash;
|
/external/lzma/CPP/7zip/Crypto/ |
RandGen.cpp | 28 #define HASH_UPD(x) Sha256_Update(&hash, (const Byte *)&x, sizeof(x));
32 CSha256 hash;
local 33 Sha256_Init(&hash);
79 Sha256_Final(&hash, _buff);
80 Sha256_Init(&hash);
81 Sha256_Update(&hash, _buff, SHA256_DIGEST_SIZE);
84 Sha256_Final(&hash, _buff);
97 CSha256 hash;
local 99 Sha256_Init(&hash);
100 Sha256_Update(&hash, _buff, SHA256_DIGEST_SIZE); [all...] |
/external/v8/test/cctest/ |
test-simd.cc | 22 CHECK_EQ(a->Hash(), b->Hash()); \ 26 CHECK_NE(a->Hash(), b->Hash()); \ 31 CHECK_EQ(a->Hash(), b->Hash()); \ 38 CHECK_NE(a->Hash(), b->Hash()); \ 41 CHECK_EQ(a->Hash(), b->Hash()); \ [all...] |
/external/skia/src/core/ |
SkChecksum.cpp | 19 uint32_t hash = seed; local 26 hash ^= k; 27 hash = (hash << 13) | (hash >> 19); 28 hash *= 5; 29 hash += 0xe6546b64; 42 hash ^= k; 45 hash ^= bytes; 46 return SkChecksum::Mix(hash); [all...] |