Lines Matching defs:mHashes

78     int[] mHashes;
91 int index = ContainerHelpers.binarySearch(mHashes, N, hash);
105 for (end = index + 1; end < N && mHashes[end] == hash; end++) {
110 for (int i = index - 1; i >= 0 && mHashes[i] == hash; i--) {
129 int index = ContainerHelpers.binarySearch(mHashes, N, 0);
143 for (end = index + 1; end < N && mHashes[end] == 0; end++) {
148 for (int i = index - 1; i >= 0 && mHashes[i] == 0; i--) {
167 mHashes = (int[]) array[1];
171 Log.d(TAG, "Retrieving 2x cache " + mHashes + " now have "
183 mHashes = (int[]) array[1];
187 Log.d(TAG, "Retrieving 1x cache " + mHashes + " now have " + sBaseCacheSize
195 mHashes = new int[size];
255 mHashes = INT;
287 freeArrays(mHashes, mArray, mSize);
288 mHashes = INT;
299 if (mHashes.length < minimumCapacity) {
300 final int[] ohashes = mHashes;
304 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
375 if (mSize >= mHashes.length) {
379 if (DEBUG) Log.d(TAG, "add: grow from " + mHashes.length + " to " + n);
381 final int[] ohashes = mHashes;
385 if (mHashes.length > 0) {
387 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
398 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
402 mHashes[index] = hash;
418 if (index >= mHashes.length) {
421 if (index > 0 && mHashes[index - 1] > hash) {
427 + " is before end of array hash " + mHashes[index - 1]
434 mHashes[index] = hash;
447 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
483 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to 0");
484 freeArrays(mHashes, mArray, mSize);
485 mHashes = INT;
489 if (mHashes.length > (BASE_SIZE * 2) && mSize < mHashes.length / 3) {
495 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to " + n);
497 final int[] ohashes = mHashes;
504 System.arraycopy(ohashes, 0, mHashes, 0, index);
512 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index);
521 System.arraycopy(mHashes, index + 1, mHashes, index, mSize - index);
621 final int[] hashes = mHashes;