OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EX_CLASS_ITEM
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/
ex_data_impl.c
135
}
EX_CLASS_ITEM
;
137
static LHASH_OF(
EX_CLASS_ITEM
) *global_classes = NULL;
150
/* class_hash is a hash function used by an LHASH of |
EX_CLASS_ITEM
|
152
static uint32_t class_hash(const
EX_CLASS_ITEM
*a) {
156
/* class_cmp is a comparision function for an LHASH of |
EX_CLASS_ITEM
|
158
static int class_cmp(const
EX_CLASS_ITEM
*a, const
EX_CLASS_ITEM
*b) {
168
/* class_free is a callback function from lh_doall to free the
EX_CLASS_ITEM
170
static void class_free(
EX_CLASS_ITEM
*item) {
174
static LHASH_OF(
EX_CLASS_ITEM
) *get_classes(void)
[
all
...]
/external/openssl/crypto/
ex_data.c
242
}
EX_CLASS_ITEM
;
247
/* The global hash table of
EX_CLASS_ITEM
items */
248
DECLARE_LHASH_OF(
EX_CLASS_ITEM
);
249
static LHASH_OF(
EX_CLASS_ITEM
) *ex_data = NULL;
252
static unsigned long ex_class_item_hash(const
EX_CLASS_ITEM
*a)
256
static IMPLEMENT_LHASH_HASH_FN(
ex_class_item
,
EX_CLASS_ITEM
)
258
static int ex_class_item_cmp(const
EX_CLASS_ITEM
*a, const
EX_CLASS_ITEM
*b)
262
static IMPLEMENT_LHASH_COMP_FN(
ex_class_item
, EX_CLASS_ITEM
[
all
...]
Completed in 60 milliseconds