Home
last modified time | relevance | path

Searched refs:hash (Results 976 - 1000 of 4194) sorted by relevance

1...<<31323334353637383940>>...168

/kernel/linux/linux-6.6/drivers/net/wireguard/
H A Dqueueing.h80 u32 hash = skb->hash; in wg_reset_packet() local
86 skb->hash = hash; in wg_reset_packet()
/third_party/ffmpeg/libavcodec/
H A Dlzwenc.c42 /** 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 DDataDrivenTestHelper.java125 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 DDataDrivenTestHelper.java124 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 Dpsa_crypto_core.h28 * 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 DQuery.pm51 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 Dos_str.rs331 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 DQuery.pm51 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 DFieldMask.cs313 int hash = 1; in GetHashCode()
314 hash ^= paths_.GetHashCode(); in GetHashCode()
316 hash ^= _unknownFields.GetHashCode(); in GetHashCode()
318 return hash; in GetHashCode()
H A DSourceContext.cs119 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 DUnittestImport.cs145 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 DUnittestImportProto3.cs121 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 DUnittestImportPublic.cs123 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 DUnittestIssue6936C.cs110 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 Dtranslator_fuzzer.cpp83 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 DJsonSerializer.cpp51 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 DLRUCacheBenchmarks.cpp57 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 Dftccmap.c50 /* 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 Daddr.rs245 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 Dcheck_bench_regressions.py48 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 Dpadlock-sha.c10 #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 Dnexthop.h172 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 Dip_vs_proto_udp.c364 __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 Dnexthop.h286 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 Dpadlock-sha.c10 #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.*/

Completed in 15 milliseconds

1...<<31323334353637383940>>...168