OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lhash_cmp_func
(Results
1 - 4
of
4
) sorted by null
/external/boringssl/src/include/openssl/
lhash.h
117
/*
lhash_cmp_func
is a comparison function that returns a value equal, or not
121
typedef int (*
lhash_cmp_func
)(const void *a, const void *b);
typedef
142
lhash_cmp_func
comp;
149
OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash,
lhash_cmp_func
comp);
lhash_macros.h
23
CHECKED_CAST(
lhash_cmp_func
, \
62
CHECKED_CAST(
lhash_cmp_func
, \
99
CHECKED_CAST(
lhash_cmp_func
, \
/external/boringssl/src/crypto/lhash/
make_macros.sh
33
((LHASH_OF(${type})*) lh_new(CHECKED_CAST(lhash_hash_func, uint32_t (*) (const ${type} *), hash), CHECKED_CAST(
lhash_cmp_func
, int (*) (const ${type} *a, const ${type} *b), comp)))
lhash.c
73
_LHASH *lh_new(lhash_hash_func hash,
lhash_cmp_func
comp) {
92
ret->comp = (
lhash_cmp_func
) strcmp;
Completed in 508 milliseconds