HomeSort by relevance Sort by last modified time
    Searched refs:stack_cmp_func (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/include/openssl/
stack.h 89 /* stack_cmp_func is a comparison function that returns a value < 0, 0 or > 0
93 typedef int (*stack_cmp_func)(const void **a, const void **b); typedef
108 stack_cmp_func comp;
208 OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp);
287 OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp);
stack_macros.h 22 stack_cmp_func, \
95 CHECKED_CAST(stack_cmp_func, int (*)(const ACCESS_DESCRIPTION **a, \
110 stack_cmp_func, \
181 CHECKED_CAST(stack_cmp_func, int (*)(const ASN1_ADB_TABLE **a, \
195 stack_cmp_func, \
268 CHECKED_CAST(stack_cmp_func, int (*)(const ASN1_GENERALSTRING **a, \
283 stack_cmp_func, int (*)(const ASN1_INTEGER **a, const ASN1_INTEGER **b), \
352 CHECKED_CAST(stack_cmp_func, \
366 stack_cmp_func, int (*)(const ASN1_OBJECT **a, const ASN1_OBJECT **b), \
433 CHECKED_CAST(stack_cmp_func, \
    [all...]
  /external/boringssl/src/crypto/stack/
make_macros.sh 33 ((STACK_OF(${type})*) sk_new(CHECKED_CAST(stack_cmp_func, int (*) (const ${ptrtype} *a, const ${ptrtype} *b), comp)))
87 ((int (*) (const ${type} **a, const ${type} **b)) sk_set_cmp_func(CHECKED_CAST(_STACK*, STACK_OF(${type})*, sk), CHECKED_CAST(stack_cmp_func, int (*) (const ${type} **a, const ${type} **b), comp)))
stack.c 67 _STACK *sk_new(stack_cmp_func comp) {
349 stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp) {
350 stack_cmp_func old = sk->comp;

Completed in 51 milliseconds