Searched refs:r_hash (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dckh.h96 void ckh_string_hash(const void *key, size_t r_hash[2]);
98 void ckh_pointer_hash(const void *key, size_t r_hash[2]);
H A Dhash.h304 hash(const void *key, size_t len, const uint32_t seed, size_t r_hash[2]) { argument
308 hash_x64_128(key, (int)len, seed, (uint64_t *)r_hash);
313 r_hash[0] = (size_t)hashes[0];
314 r_hash[1] = (size_t)hashes[1];
/freebsd-13-stable/contrib/jemalloc/src/
H A Dckh.c543 ckh_string_hash(const void *key, size_t r_hash[2]) { argument
544 hash(key, strlen((const char *)key), 0x94122f33U, r_hash);
556 ckh_pointer_hash(const void *key, size_t r_hash[2]) { argument
564 hash(&u.i, sizeof(u.i), 0xd983396eU, r_hash);
H A Dprof.c245 static void prof_thr_node_hash(const void *key, size_t r_hash[2]);
247 static void prof_bt_node_hash(const void *key, size_t r_hash[2]);
2140 prof_bt_hash(const void *key, size_t r_hash[2]) { argument
2145 hash(bt->vec, bt->len * sizeof(void *), 0x94122f33U, r_hash);
2162 prof_bt_node_hash(const void *key, size_t r_hash[2]) { argument
2164 prof_bt_hash((void *)(&bt_node->bt), r_hash);
2176 prof_thr_node_hash(const void *key, size_t r_hash[2]) { argument
2178 hash(&thr_node->thr_uid, sizeof(uint64_t), 0x94122f35U, r_hash);
/freebsd-13-stable/contrib/subversion/subversion/libsvn_client/
H A Ddiff.c920 const char *r_hash = NULL;
927 SVN_ERR(transform_link_to_git(&tmpfile2, &r_hash, tmpfile2,
930 if (l_hash && r_hash)
937 r_hash = apr_pstrndup(scratch_pool, r_hash, 8);
940 l_hash, r_hash);
917 const char *r_hash = NULL; local
/freebsd-13-stable/contrib/wpa/src/common/
H A Ddpp.c5481 static int dpp_check_pubkey_match(EVP_PKEY *pub, struct wpabuf *r_hash) argument
5489 if (wpabuf_len(r_hash) != SHA256_MAC_LEN)
5502 if (os_memcmp(hash, wpabuf_head(r_hash), SHA256_MAC_LEN) != 0) {

Completed in 208 milliseconds