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

  /bionic/libc/upstream-netbsd/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 266 /* Type of bsearch() / qsort() compare function */
360 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
362 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
365 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
367 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
  /external/harfbuzz_ng/src/
hb-private.hh 266 /* Type of bsearch() / qsort() compare function */
360 inline Type *bsearch (T *key) function in struct:hb_prealloced_array_t
362 return (Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);
365 inline const Type *bsearch (T *key) const function in struct:hb_prealloced_array_t
367 return (const Type *) ::bsearch (key, array, len, sizeof (Type), (hb_compare_func_t) Type::cmp);

Completed in 198 milliseconds