Searched refs:ohashes (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/ |
D | ArrayMap.java | 328 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 …]
|
D | ArraySet.java | 337 final int[] ohashes = mHashes; in ensureCapacity() local 341 System.arraycopy(ohashes, 0, mHashes, 0, mSize); in ensureCapacity() 344 freeArrays(ohashes, oarray, mSize); in ensureCapacity() 441 final int[] ohashes = mHashes; in add() local 447 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in add() 451 freeArrays(ohashes, oarray, mSize); in add() 577 final int[] ohashes = mHashes; in removeAt() local 584 System.arraycopy(ohashes, 0, mHashes, 0, index); in removeAt() 592 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index); in removeAt() 669 final int[] ohashes = mHashes; in removeIf() local [all …]
|