Searched defs:binarySearch (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java61 int i = binarySearch(mKeys, 0, mSize, key);
74 int i = binarySearch(mKeys, 0, mSize, key);
89 int i = binarySearch(mKeys, 0, mSize, key);
154 return binarySearch(mKeys, 0, mSize, key);
210 private static int binarySearch(int[] a, int start, int len, int key) { method in class:SparseBooleanArray
H A DSparseIntArray.java60 int i = binarySearch(mKeys, 0, mSize, key);
73 int i = binarySearch(mKeys, 0, mSize, key);
95 int i = binarySearch(mKeys, 0, mSize, key);
160 return binarySearch(mKeys, 0, mSize, key);
216 private static int binarySearch(int[] a, int start, int len, int key) { method in class:SparseIntArray
H A DLongSparseArray.java87 int i = binarySearch(mKeys, 0, mSize, key);
100 int i = binarySearch(mKeys, 0, mSize, key);
150 int i = binarySearch(mKeys, 0, mSize, key);
167 i = ~binarySearch(mKeys, 0, mSize, key);
257 return binarySearch(mKeys, 0, mSize, key);
329 private static int binarySearch(long[] a, int start, int len, long key) { method in class:LongSparseArray
H A DSparseArray.java63 int i = binarySearch(mKeys, 0, mSize, key);
76 int i = binarySearch(mKeys, 0, mSize, key);
126 int i = binarySearch(mKeys, 0, mSize, key);
143 i = ~binarySearch(mKeys, 0, mSize, key);
233 return binarySearch(mKeys, 0, mSize, key);
305 private static int binarySearch(int[] a, int start, int len, int key) { method in class:SparseArray
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp352 int binarySearch( function in namespace:android
905 int index = binarySearch<EGLConfig>(
/frameworks/base/opengl/libagl/
H A Degl.cpp1172 static int binarySearch(T const sortedArray[], int first, int last, EGLint key) function in namespace:android
1191 int index = binarySearch<config_pair_t>(
1197 index = binarySearch<config_pair_t>(
1204 int cfgMgtIndex = binarySearch<config_management_t>(
1268 attrIndex = binarySearch<config_pair_t>(
1277 attrIndex = binarySearch<config_pair_t>(
1552 if (binarySearch<config_pair_t>(

Completed in 84 milliseconds