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

  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
bsearch.c 1 /* $NetBSD: bsearch.c,v 1.15 2012/03/04 20:01:45 christos Exp $ */
35 static char sccsid[] = "@(#)bsearch.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: bsearch.c,v 1.15 2012/03/04 20:01:45 christos Exp $");
62 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, function
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-private.hh 269 /* Type of bsearch() / qsort() compare function */
371 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
373 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
376 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
378 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 937 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. */
hb-private.hh 278 /* 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 1150 milliseconds