Home
last modified time | relevance | path

Searched refs:comp_func (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/stack/
Dstack.c230 int (*comp_func)(const void *,const void *); in sk_find() local
260 comp_func=(int (*)(const void *,const void *))(sk->comp); in sk_find()
261 r = bsearch(&p, sk->data, sk->num, sizeof(void *), comp_func); in sk_find()
330 int (*comp_func)(const void *,const void *); in sk_sort() local
337 comp_func = (int (*)(const void *, const void *))(sk->comp); in sk_sort()
338 qsort(sk->data, sk->num, sizeof(void *), comp_func); in sk_sort()
/external/curl/lib/
Dhash.c64 h->comp_func = comparator; in Curl_hash_init()
132 if(h->comp_func(he->key, he->key_len, key, key_len)) { in Curl_hash_add()
167 if(h->comp_func(he->key, he->key_len, key, key_len)) { in Curl_hash_delete()
187 if(h->comp_func(he->key, he->key_len, key, key_len)) { in Curl_hash_pick()
Dhash.h53 comp_function comp_func; member
/external/clang/tools/scan-build/share/scan-build/
Dsorttable.js302 shaker_sort: function(list, comp_func) { argument
313 if ( comp_func(list[i], list[i+1]) > 0 ) {
323 if ( comp_func(list[i], list[i-1]) < 0 ) {