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

/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh937 inline int bsearch (const SearchType &x) const function in struct:OT::SortedArrayOf
939 /* 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);
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh937 inline int bsearch (const SearchType &x) const function in struct:OT::SortedArrayOf
939 /* Hand-coded bsearch here since this is in the hot inner loop. */
H A Dhb-private.hh278 /* Type of bsearch() / qsort() compare function */
380 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
382 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
385 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
387 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);

Completed in 550 milliseconds