Home
last modified time | relevance | path

Searched refs:ohashes (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/util/
DArrayMap.java328 final int[] ohashes = mHashes; in clear() local
334 freeArrays(ohashes, oarray, osize); in clear()
363 final int[] ohashes = mHashes; in ensureCapacity() local
367 System.arraycopy(ohashes, 0, mHashes, 0, osize); in ensureCapacity()
370 freeArrays(ohashes, oarray, osize); in ensureCapacity()
556 final int[] ohashes = mHashes; in put() local
566 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in put()
570 freeArrays(ohashes, oarray, osize); in put()
719 final int[] ohashes = mHashes; in removeAt() local
723 freeArrays(ohashes, oarray, osize); in removeAt()
[all …]
DArraySet.java324 final int[] ohashes = mHashes; in ensureCapacity() local
328 System.arraycopy(ohashes, 0, mHashes, 0, mSize); in ensureCapacity()
331 freeArrays(ohashes, oarray, mSize); in ensureCapacity()
428 final int[] ohashes = mHashes; in add() local
434 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in add()
438 freeArrays(ohashes, oarray, mSize); in add()
564 final int[] ohashes = mHashes; in removeAt() local
571 System.arraycopy(ohashes, 0, mHashes, 0, index); in removeAt()
579 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index); in removeAt()
656 final int[] ohashes = mHashes; in removeIf() local
[all …]