Home | History | Annotate | Download | only in util

Lines Matching refs:mValues

30     private long[] mValues;
45 mValues = EmptyArray.LONG;
47 mValues = ArrayUtils.newUnpaddedLongArray(initialCapacity);
72 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
75 mValues[index] = value;
86 System.arraycopy(values.mValues, 0, mValues, mSize, count);
96 if (minCapacity >= mValues.length) {
101 System.arraycopy(mValues, 0, newValues, 0, currentSize);
102 mValues = newValues;
118 clone.mValues = mValues.clone();
132 return mValues[index];
142 if (mValues[i] == value) {
156 System.arraycopy(mValues, index + 1, mValues, index, mSize - index - 1);