Lines Matching refs:mSize

59     int mSize;
62 final int N = mSize;
100 final int N = mSize;
211 mSize = 0;
224 mSize = 0;
241 if (mSize != 0) {
242 freeArrays(mHashes, mArray, mSize);
245 mSize = 0;
258 if (mSize > 0) {
259 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
260 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
262 freeArrays(ohashes, oarray, mSize);
287 final int N = mSize*2;
362 return mSize <= 0;
391 if (mSize >= mHashes.length) {
392 final int n = mSize >= (BASE_SIZE*2) ? (mSize+(mSize>>1))
393 : (mSize >= BASE_SIZE ? (BASE_SIZE*2) : BASE_SIZE);
402 if (DEBUG) Log.d(TAG, "put: copy 0-" + mSize + " to 0");
407 freeArrays(ohashes, oarray, mSize);
410 if (index < mSize) {
411 if (DEBUG) Log.d(TAG, "put: move " + index + "-" + (mSize-index)
413 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
414 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
420 mSize++;
429 final int N = array.mSize;
430 ensureCapacity(mSize + N);
431 if (mSize == 0) {
435 mSize = N;
466 if (mSize <= 1) {
469 freeArrays(mHashes, mArray, mSize);
472 mSize = 0;
474 if (mHashes.length > (BASE_SIZE*2) && mSize < mHashes.length/3) {
478 final int n = mSize > (BASE_SIZE*2) ? (mSize + (mSize>>1)) : (BASE_SIZE*2);
486 mSize--;
492 if (index < mSize) {
493 if (DEBUG) Log.d(TAG, "remove: copy from " + (index+1) + "-" + mSize
495 System.arraycopy(ohashes, index + 1, mHashes, index, mSize - index);
497 (mSize - index) << 1);
500 mSize--;
501 if (index < mSize) {
502 if (DEBUG) Log.d(TAG, "remove: move " + (index+1) + "-" + mSize
504 System.arraycopy(mHashes, index + 1, mHashes, index, mSize - index);
506 (mSize - index) << 1);
508 mArray[mSize << 1] = null;
509 mArray[(mSize << 1) + 1] = null;
519 return mSize;
542 for (int i=0; i<mSize; i++) {
567 for (int i=0; i<mSize; i++) {
597 for (int i = 0, v = 1, s = mSize; i < s; i++, v+=2) {
617 StringBuilder buffer = new StringBuilder(mSize * 28);
619 for (int i=0; i<mSize; i++) {