/kernel/linux/linux-5.10/arch/mips/generic/ |
H A D | board-xilfpga.its.S | 9 hash {
|
H A D | board-ni169445.its.S | 9 hash {
|
H A D | board-boston.its.S | 9 hash {
|
/kernel/linux/linux-6.6/arch/mips/generic/ |
H A D | board-boston.its.S | 9 hash {
|
H A D | board-marduk.its.S | 9 hash {
|
H A D | board-ni169445.its.S | 9 hash {
|
H A D | board-serval.its.S | 10 hash {
|
H A D | board-xilfpga.its.S | 9 hash {
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | test_tcpnotify.h | 15 __u8 hash; member
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_tcpnotify.h | 15 __u8 hash; member
|
/third_party/gn/src/base/ |
H A D | sha1.h | 16 static const size_t kSHA1Length = 20; // Length in bytes of a SHA-1 hash. 18 // Computes the SHA-1 hash of the input string |str| and returns the full 19 // hash. 22 // Computes the SHA-1 hash of the |len| bytes in |data| and puts the hash 23 // in |hash|. |hash| must be kSHA1Length bytes long. 24 void SHA1HashBytes(const unsigned char* data, size_t len, unsigned char* hash);
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | raid5.c | 72 int hash = (sect >> RAID5_STRIPE_SHIFT(conf)) & HASH_MASK; in stripe_hash() local 73 return &conf->stripe_hashtbl[hash]; in stripe_hash() 81 static inline void lock_device_hash_lock(struct r5conf *conf, int hash) in lock_device_hash_lock() argument 83 spin_lock_irq(conf->hash_locks + hash); in lock_device_hash_lock() 87 static inline void unlock_device_hash_lock(struct r5conf *conf, int hash) in unlock_device_hash_lock() argument 90 spin_unlock_irq(conf->hash_locks + hash); in unlock_device_hash_lock() 305 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list 309 * only takes hash lock. 313 int hash) in release_inactive_stripe_list() 319 if (hash in release_inactive_stripe_list() 311 release_inactive_stripe_list(struct r5conf *conf, struct list_head *temp_inactive_list, int hash) release_inactive_stripe_list() argument 364 int hash; release_stripe_list() local 387 int hash; raid5_release_stripe() local 432 get_free_stripe(struct r5conf *conf, int hash) get_free_stripe() argument 707 int hash = stripe_hash_locks_hash(conf, sector); raid5_get_active_stripe() local 820 int hash; stripe_add_to_batch_list() local 2492 int hash, cnt; resize_stripes() local 2638 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK; drop_one_stripe() local 4020 int hash; handle_stripe_clean_event() local 5296 int hash; activate_bit_delay() local 5618 int hash; raid5_unplug() local 6372 int i, batch_size = 0, hash; global() variable [all...] |
/kernel/linux/linux-5.10/drivers/crypto/allwinner/sun8i-ss/ |
H A D | sun8i-ss.h | 16 #include <crypto/internal/hash.h> 125 * @pad: padding buffer for hash operations 126 * @result: buffer for storing the result of hash operations 277 struct ahash_alg hash; member
|
/kernel/linux/linux-5.10/arch/arm64/kernel/ |
H A D | vmlinux.lds.S | 115 *(.dynsym .dynstr .hash .gnu.hash)
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/ |
H A D | hash.h | 16 #include <asm/book3s/64/hash-64k.h> 18 #include <asm/book3s/64/hash-4k.h> 100 * hash table CPUs. 183 * function doesn't need to flush the hash entry 229 * cases, and 32-bit non-hash with 32-bit PTEs. in hash__set_pte_at()
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/book3s/64/ |
H A D | hash.h | 16 #include <asm/book3s/64/hash-64k.h> 18 #include <asm/book3s/64/hash-4k.h> 104 * hash table CPUs. 197 * function doesn't need to flush the hash entry 243 * cases, and 32-bit non-hash with 32-bit PTEs. in hash__set_pte_at()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | test_select_reuseport_kern.c | 83 data_check.hash = reuse_md->hash; in _select_by_skb_data()
|
/kernel/linux/linux-5.10/drivers/net/wireguard/ |
H A D | peerlookup.c | 17 const u64 hash = siphash(pubkey, NOISE_PUBLIC_KEY_LEN, &table->key); in pubkey_bucket() local 19 return &table->hashtable[hash & (HASH_SIZE(table->hashtable) - 1)]; in pubkey_bucket() 113 * constant time in either the random guessing or in the hash list lookup. We 115 * guessing. this would not, however, help with the growing hash lengths, which
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | ima.h | 42 bool hash, u8 *digest, size_t digest_len); 137 bool hash, u8 *digest, in ima_measure_critical_data() 134 ima_measure_critical_data(const char *event_label, const char *event_name, const void *buf, size_t buf_len, bool hash, u8 *digest, size_t digest_len) ima_measure_critical_data() argument
|
/kernel/linux/linux-6.6/drivers/net/wireguard/ |
H A D | peerlookup.c | 17 const u64 hash = siphash(pubkey, NOISE_PUBLIC_KEY_LEN, &table->key); in pubkey_bucket() local 19 return &table->hashtable[hash & (HASH_SIZE(table->hashtable) - 1)]; in pubkey_bucket() 113 * constant time in either the random guessing or in the hash list lookup. We 115 * guessing. this would not, however, help with the growing hash lengths, which
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | lsm.c | 26 } hash SEC(".maps"); 127 value = bpf_map_lookup_elem(&hash, &key); in BPF_PROG()
|
H A D | test_select_reuseport_kern.c | 81 data_check.hash = reuse_md->hash; in _select_by_skb_data()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-sigv4/ |
H A D | ss-s3-ss.c | 113 static void sigv4_sha256hash_payload(uint8_t *payload, size_t len, char *hash) in sigv4_sha256hash_payload() argument 120 * If there is no payload, you must provide the hash of an in sigv4_sha256hash_payload() 135 bin2hex(hash_bin, 32, hash); in sigv4_sha256hash_payload()
|
/third_party/node/tools/ |
H A D | mk-ca-bundle.pl | 285 foreach my $hash (@included_signature_algorithms) { 286 $pipe = "|$openssl x509 -" . $hash . " -fingerprint -noout -inform PEM";
|
/third_party/nghttp2/lib/ |
H A D | nghttp2_hd.h | 141 /* The next entry which shares same bucket in hash table. */ 146 /* The hash value for header name (nv.name). */ 147 uint32_t hash; member 156 uint32_t hash; member
|