Searched refs:BASE_SIZE (Results 1 – 4 of 4) sorted by relevance
63 private static final int BASE_SIZE = 4; field in ArraySet185 if (size == (BASE_SIZE * 2)) { in allocArrays()212 } else if (size == BASE_SIZE) { in allocArrays()251 if (hashes.length == (BASE_SIZE * 2)) { in freeArrays()267 } else if (hashes.length == BASE_SIZE) { in freeArrays()472 final int n = oSize >= (BASE_SIZE * 2) ? (oSize + (oSize >> 1)) in add()473 : (oSize >= BASE_SIZE ? (BASE_SIZE * 2) : BASE_SIZE); in add()588 return mHashes.length > (BASE_SIZE * 2) && mSize < mHashes.length / 3; in shouldShrink()598 return mSize > (BASE_SIZE * 2) ? (mSize + (mSize >> 1)) : (BASE_SIZE * 2); in getNewShrunkenSize()
77 private static final int BASE_SIZE = 4; field in ArrayMap222 if (size == (BASE_SIZE*2)) { in allocArrays()249 } else if (size == BASE_SIZE) { in allocArrays()288 if (hashes.length == (BASE_SIZE*2)) { in freeArrays()304 } else if (hashes.length == BASE_SIZE) { in freeArrays()596 final int n = osize >= (BASE_SIZE*2) ? (osize+(osize>>1)) in put()597 : (osize >= BASE_SIZE ? (BASE_SIZE*2) : BASE_SIZE); in put()772 if (mHashes.length > (BASE_SIZE*2) && mSize < mHashes.length/3) { in removeAt()776 final int n = osize > (BASE_SIZE*2) ? (osize + (osize>>1)) : (BASE_SIZE*2); in removeAt()
193 BASE_SIZE = sizeof(S) + sizeof(C2Param), ///< size of the base param197 inline static size_t CalcSize(size_t flexCount, size_t size = BASE_SIZE) {289 static_assert(sizeof(_Type) == _Type::BASE_SIZE, "incorrect BASE_SIZE"); \
56845 Landroid/util/ArrayMap;->BASE_SIZE:I56857 Landroid/util/ArraySet;->BASE_SIZE:I