Home
last modified time | relevance | path

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

/external/boringssl/src/include/openssl/
Dlhash.h111 typedef int (*lhash_cmp_func)(const void *a, const void *b); typedef
112 typedef int (*lhash_cmp_func_helper)(lhash_cmp_func func, const void *a,
127 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
182 OPENSSL_INLINE int lh_##type##_call_cmp_func(lhash_cmp_func func, \
196 (lhash_cmp_func)comp); \
/external/boringssl/src/crypto/lhash/
Dlhash.c91 lhash_cmp_func comp;
95 _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp) { in lh_new()