Home
last modified time | relevance | path

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

/frameworks/support/collection/src/main/java/androidx/collection/
DSimpleArrayMap.java267 final int[] ohashes = mHashes; in clear() local
273 freeArrays(ohashes, oarray, osize); in clear()
287 final int[] ohashes = mHashes; in ensureCapacity() local
291 System.arraycopy(ohashes, 0, mHashes, 0, osize); in ensureCapacity()
294 freeArrays(ohashes, oarray, osize); in ensureCapacity()
433 final int[] ohashes = mHashes; in put() local
443 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in put()
447 freeArrays(ohashes, oarray, osize); in put()
531 final int[] ohashes = mHashes; in removeAt() local
541 System.arraycopy(ohashes, 0, mHashes, 0, index); in removeAt()
[all …]
DArraySet.java296 final int[] ohashes = mHashes; in ensureCapacity() local
300 System.arraycopy(ohashes, 0, mHashes, 0, mSize); in ensureCapacity()
303 freeArrays(ohashes, oarray, mSize); in ensureCapacity()
377 final int[] ohashes = mHashes; in add() local
383 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in add()
387 freeArrays(ohashes, oarray, mSize); in add()
493 final int[] ohashes = mHashes; in removeAt() local
500 System.arraycopy(ohashes, 0, mHashes, 0, index); in removeAt()
508 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index); in removeAt()
/frameworks/base/core/java/android/util/
DArrayMap.java310 final int[] ohashes = mHashes; in clear() local
316 freeArrays(ohashes, oarray, osize); in clear()
345 final int[] ohashes = mHashes; in ensureCapacity() local
349 System.arraycopy(ohashes, 0, mHashes, 0, osize); in ensureCapacity()
352 freeArrays(ohashes, oarray, osize); in ensureCapacity()
497 final int[] ohashes = mHashes; in put() local
507 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in put()
511 freeArrays(ohashes, oarray, osize); in put()
647 final int[] ohashes = mHashes; in removeAt() local
651 freeArrays(ohashes, oarray, osize); in removeAt()
[all …]
DArraySet.java311 final int[] ohashes = mHashes; in ensureCapacity() local
315 System.arraycopy(ohashes, 0, mHashes, 0, mSize); in ensureCapacity()
318 freeArrays(ohashes, oarray, mSize); in ensureCapacity()
392 final int[] ohashes = mHashes; in add() local
398 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); in add()
402 freeArrays(ohashes, oarray, mSize); in add()
507 final int[] ohashes = mHashes; in removeAt() local
514 System.arraycopy(ohashes, 0, mHashes, 0, index); in removeAt()
522 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index); in removeAt()