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

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRefSortedMap.java115 bsearch(SubMap.this.firstKey()) - 1 :
153 int lastIdx = bsearch(SubMap.this.lastKey());
154 int firstIdx = bsearch(SubMap.this.firstKey());
178 int idx = bsearch(start);
203 int idx = bsearch(end);
307 return bsearch(arg0) >= 0;
321 int idx = bsearch(arg0);
331 int idx = bsearch(arg0);
348 int idx = bsearch(arg0);
368 private int bsearch(Objec method in class:RefSortedMap
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-private.hh269 /* 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/
H A Dhb-private.hh266 /* 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 569 milliseconds