/kernel/linux/linux-6.6/drivers/net/wireguard/ |
H A D | queueing.h | 80 u32 hash = skb->hash; in wg_reset_packet() local 86 skb->hash = hash; in wg_reset_packet()
|
/third_party/ffmpeg/libavcodec/ |
H A D | lzwenc.c | 42 /** One code in hash table */ 55 int tabsize; ///< Number of values in hash table 74 * @return New hash value 76 static inline int hash(int head, const int add) in hash() function 86 * Hash function calculates next hash value 87 * @param head Actual hash code 89 * @return New hash value 100 * Hash function calculates hash offset 101 * @param head Actual hash code 133 int h = hash(FFMA in findCode() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | DataDrivenTestHelper.java | 125 int hash = line.indexOf('#'); in load() 128 if (hash >= 0) { in load() 129 commentBase = line.substring(hash+1).trim(); in load() 130 line = line.substring(0,hash).trim(); in load()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | DataDrivenTestHelper.java | 124 int hash = line.indexOf('#'); in load() 127 if (hash >= 0) { in load() 128 commentBase = line.substring(hash+1).trim(); in load() 129 line = line.substring(0,hash).trim(); in load()
|
/third_party/mbedtls/library/ |
H A D | psa_crypto_core.h | 28 * Tell if PSA is ready for this hash. 33 * \param hash_alg The hash algorithm (ignored for now). 388 /** Sign a message with a private key. For hash-and-sign algorithms, 432 * a hash-and-sign verification algorithm. 468 /** Sign an already-calculated hash with a private key. 481 * \param[in] hash The hash or message to sign. 482 * \param[in] hash_length Size of the \p hash buffer in bytes. 504 psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, 508 * \brief Verify the signature a hash o [all...] |
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Config/ |
H A D | Query.pm | 51 A reference to a unified information hash table, most commonly known as 56 A reference to a config information hash table, most commonly known as 96 The returned result is a hash table reference, with each key being one of 141 The returned result is a hash table reference, with each key being one of
|
/third_party/rust/crates/clap/src/builder/ |
H A D | os_str.rs | 331 impl std::hash::Hash for Inner { 333 fn hash<H: std::hash::Hasher>(&self, state: &mut H) { in hash() functions 334 self.as_os_str().hash(state); in hash()
|
/third_party/openssl/util/perl/OpenSSL/Config/ |
H A D | Query.pm | 51 A reference to a unified information hash table, most commonly known as 56 A reference to a config information hash table, most commonly known as 96 The returned result is a hash table reference, with each key being one of 141 The returned result is a hash table reference, with each key being one of
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | FieldMask.cs | 313 int hash = 1; in GetHashCode() 314 hash ^= paths_.GetHashCode(); in GetHashCode() 316 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 318 return hash; in GetHashCode()
|
H A D | SourceContext.cs | 119 int hash = 1; in GetHashCode() 120 if (FileName.Length != 0) hash ^= FileName.GetHashCode(); in GetHashCode() 122 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 124 return hash; in GetHashCode()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
H A D | UnittestImport.cs | 145 int hash = 1; in GetHashCode() 146 if (HasD) hash ^= D.GetHashCode(); in GetHashCode() 148 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 150 return hash; in GetHashCode()
|
H A D | UnittestImportProto3.cs | 121 int hash = 1; in GetHashCode() 122 if (D != 0) hash ^= D.GetHashCode(); in GetHashCode() 124 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 126 return hash; in GetHashCode()
|
H A D | UnittestImportPublic.cs | 123 int hash = 1; in GetHashCode() 124 if (HasE) hash ^= E.GetHashCode(); in GetHashCode() 126 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 128 return hash; in GetHashCode()
|
H A D | UnittestIssue6936C.cs | 110 int hash = 1; in GetHashCode() 111 if (foo_ != null) hash ^= Foo.GetHashCode(); in GetHashCode() 113 hash ^= _unknownFields.GetHashCode(); in GetHashCode() 115 return hash; in GetHashCode()
|
/third_party/skia/third_party/externals/angle2/src/compiler/fuzz/ |
H A D | translator_fuzzer.cpp | 83 struct hash<TranslatorCacheKey> struct 87 return (hash<uint32_t>()(k.type) << 1) ^ (hash<uint32_t>()(k.spec) >> 1) ^ in operator ()() 88 hash<uint32_t>()(k.output); in operator ()()
|
/third_party/skia/third_party/externals/angle2/src/common/serializer/ |
H A D | JsonSerializer.cpp | 51 unsigned char hash[angle::base::kSHA1Length]; in addBlob() local 52 angle::base::SHA1HashBytes(blob, length, hash); in addBlob() 60 os << kASCII[hash[i] & 0xf] << kASCII[hash[i] >> 4]; in addBlob() 64 hashName << name << "-hash"; in addBlob()
|
/third_party/skia/third_party/externals/swiftshader/tests/SystemBenchmarks/ |
H A D | LRUCacheBenchmarks.cpp | 57 size_t hash = 12227; in operator ()() local 60 hash = hash * 11801 + key.words[w]; in operator ()() 62 return hash; in operator ()()
|
/third_party/skia/third_party/externals/freetype/src/cache/ |
H A D | ftccmap.c | 50 /* compute a query/node hash */ 240 FT_Offset hash; in FT_EXPORT_DEF() local 265 hash = FTC_CMAP_HASH( face_id, (FT_UInt)cmap_index, char_code ); in FT_EXPORT_DEF() 268 FTC_CACHE_LOOKUP_CMP( cache, ftc_cmap_node_compare, hash, &query, in FT_EXPORT_DEF() 271 error = FTC_Cache_Lookup( cache, hash, &query, &node ); in FT_EXPORT_DEF()
|
/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | addr.rs | 245 impl core::hash::Hash for SocketAddrUnix { 247 fn hash<H: core::hash::Hasher>(&self, state: &mut H) { in hash() functions 249 self.unix.sun_path[..self_len].hash(state) in hash()
|
/third_party/skia/bench/ |
H A D | check_bench_regressions.py | 48 print('-r <revision> the git commit hash or svn revision for checking ') 85 return (hash(self.bench) ^ 86 hash(self.config) ^ 87 hash(self.time_type) ^ 88 hash(frozenset(self.settings.iteritems()))) 211 rev = None # git commit hash or svn revision number
|
/kernel/linux/linux-5.10/drivers/crypto/ |
H A D | padlock-sha.c | 10 #include <crypto/internal/hash.h> 193 static int padlock_init_tfm(struct crypto_shash *hash) in padlock_init_tfm() argument 195 const char *fallback_driver_name = crypto_shash_alg_name(hash); in padlock_init_tfm() 196 struct padlock_sha_ctx *ctx = crypto_shash_ctx(hash); in padlock_init_tfm() 209 hash->descsize += crypto_shash_descsize(fallback_tfm); in padlock_init_tfm() 213 static void padlock_exit_tfm(struct crypto_shash *hash) in padlock_exit_tfm() argument 215 struct padlock_sha_ctx *ctx = crypto_shash_ctx(hash); in padlock_exit_tfm() 267 * multiple-parts hash supported by VIA Nano Processor.*/
|
/kernel/linux/linux-5.10/include/net/ |
H A D | nexthop.h | 172 struct nexthop *nexthop_select_path(struct nexthop *nh, int hash); 240 static inline void nexthop_path_fib_result(struct fib_result *res, int hash) in nexthop_path_fib_result() argument 245 nh = nexthop_select_path(res->fi->nh, hash); in nexthop_path_fib_result() 417 static inline void nexthop_path_fib6_result(struct fib6_result *res, int hash) in nexthop_path_fib6_result() argument 422 nh = nexthop_select_path(nh, hash); in nexthop_path_fib6_result() 454 int hash) in nexthop_path_fdb_result() 459 nhp = nexthop_select_path(nh, hash); in nexthop_path_fdb_result() 453 nexthop_path_fdb_result(struct nexthop *nh, int hash) nexthop_path_fdb_result() argument
|
/kernel/linux/linux-5.10/net/netfilter/ipvs/ |
H A D | ip_vs_proto_udp.c | 364 __u16 hash; in udp_register_app() local 369 hash = udp_app_hashkey(port); in udp_register_app() 371 list_for_each_entry(i, &ipvs->udp_apps[hash], p_list) { in udp_register_app() 377 list_add_rcu(&inc->p_list, &ipvs->udp_apps[hash]); in udp_register_app() 398 int hash; in udp_app_conn_bind() local 407 hash = udp_app_hashkey(cp->vport); in udp_app_conn_bind() 409 list_for_each_entry_rcu(inc, &ipvs->udp_apps[hash], p_list) { in udp_app_conn_bind()
|
/kernel/linux/linux-6.6/include/net/ |
H A D | nexthop.h | 286 struct nexthop *nexthop_select_path(struct nexthop *nh, int hash); 354 static inline void nexthop_path_fib_result(struct fib_result *res, int hash) in nexthop_path_fib_result() argument 359 nh = nexthop_select_path(res->fi->nh, hash); in nexthop_path_fib_result() 508 static inline void nexthop_path_fib6_result(struct fib6_result *res, int hash) in nexthop_path_fib6_result() argument 513 nh = nexthop_select_path(nh, hash); in nexthop_path_fib6_result() 545 int hash) in nexthop_path_fdb_result() 550 nhp = nexthop_select_path(nh, hash); in nexthop_path_fdb_result() 544 nexthop_path_fdb_result(struct nexthop *nh, int hash) nexthop_path_fdb_result() argument
|
/kernel/linux/linux-6.6/drivers/crypto/ |
H A D | padlock-sha.c | 10 #include <crypto/internal/hash.h> 194 static int padlock_init_tfm(struct crypto_shash *hash) in padlock_init_tfm() argument 196 const char *fallback_driver_name = crypto_shash_alg_name(hash); in padlock_init_tfm() 197 struct padlock_sha_ctx *ctx = crypto_shash_ctx(hash); in padlock_init_tfm() 210 hash->descsize += crypto_shash_descsize(fallback_tfm); in padlock_init_tfm() 214 static void padlock_exit_tfm(struct crypto_shash *hash) in padlock_exit_tfm() argument 216 struct padlock_sha_ctx *ctx = crypto_shash_ctx(hash); in padlock_exit_tfm() 268 * multiple-parts hash supported by VIA Nano Processor.*/
|