Searched defs:bsearch (Results 1 - 2 of 2) sorted by relevance

/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh1047 inline int bsearch (const SearchType &x) const function in struct:OT::SortedArrayOf
1049 /* Hand-coded bsearch here since this is in the hot inner loop. */
H A Dhb-private.hh360 /* Type of bsearch() / qsort() compare function */
462 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
464 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
467 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
469 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);

Completed in 231 milliseconds