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

/frameworks/base/core/java/android/util/
H A DArraySet.java54 private static final int BASE_SIZE = 4; field in class:ArraySet
155 if (size == (BASE_SIZE * 2)) {
180 } else if (size == BASE_SIZE) {
212 if (hashes.length == (BASE_SIZE * 2)) {
228 } else if (hashes.length == BASE_SIZE) {
387 final int n = mSize >= (BASE_SIZE * 2) ? (mSize + (mSize >> 1))
388 : (mSize >= BASE_SIZE ? (BASE_SIZE * 2) : BASE_SIZE);
499 if (mHashes.length > (BASE_SIZE *
[all...]
H A DArrayMap.java68 private static final int BASE_SIZE = 4; field in class:ArrayMap
194 if (size == (BASE_SIZE*2)) {
208 } else if (size == BASE_SIZE) {
229 if (hashes.length == (BASE_SIZE*2)) {
243 } else if (hashes.length == BASE_SIZE) {
492 final int n = osize >= (BASE_SIZE*2) ? (osize+(osize>>1))
493 : (osize >= BASE_SIZE ? (BASE_SIZE*2) : BASE_SIZE);
653 if (mHashes.length > (BASE_SIZE*
[all...]
/frameworks/support/compat/java/android/support/v4/util/
H A DArraySet.java59 private static final int BASE_SIZE = 4; field in class:ArraySet
161 if (size == (BASE_SIZE * 2)) {
177 } else if (size == BASE_SIZE) {
201 if (hashes.length == (BASE_SIZE * 2)) {
217 } else if (hashes.length == BASE_SIZE) {
376 final int n = mSize >= (BASE_SIZE * 2) ? (mSize + (mSize >> 1))
377 : (mSize >= BASE_SIZE ? (BASE_SIZE * 2) : BASE_SIZE);
489 if (mHashes.length > (BASE_SIZE *
[all...]
H A DSimpleArrayMap.java52 private static final int BASE_SIZE = 4; field in class:SimpleArrayMap
164 if (size == (BASE_SIZE*2)) {
178 } else if (size == BASE_SIZE) {
200 if (hashes.length == (BASE_SIZE*2)) {
214 } else if (hashes.length == BASE_SIZE) {
430 final int n = osize >= (BASE_SIZE*2) ? (osize+(osize>>1))
431 : (osize >= BASE_SIZE ? (BASE_SIZE*2) : BASE_SIZE);
525 if (mHashes.length > (BASE_SIZE*
[all...]

Completed in 447 milliseconds