Home
last modified time | relevance | path

Searched refs:lhash_hash_func (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/include/openssl/
Dlhash.h121 typedef uint32_t (*lhash_hash_func)(const void *a); typedef
122 typedef uint32_t (*lhash_hash_func_helper)(lhash_hash_func func, const void *a);
127 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
187 OPENSSL_INLINE uint32_t lh_##type##_call_hash_func(lhash_hash_func func, \
195 return (LHASH_OF(type) *)lh_new((lhash_hash_func)hash, \
/external/boringssl/src/crypto/lhash/
Dlhash.c92 lhash_hash_func hash;
95 _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp) { in lh_new()