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

/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh985 inline int bsearch (const SearchType &x) const function in struct:OT::SortedArrayOf
987 /* Hand-coded bsearch here since this is in the hot inner loop. */
H A Dhb-private.hh317 /* Type of bsearch() / qsort() compare function */
419 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
421 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
424 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
426 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);

Completed in 86 milliseconds