/frameworks/support/collection/src/main/java/androidx/collection/ |
D | SimpleArrayMap.java | 267 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 …]
|
D | ArraySet.java | 296 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/ |
D | ArrayMap.java | 310 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 …]
|
D | ArraySet.java | 311 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()
|