Home | History | Annotate | Download | only in collection

Lines Matching defs:osize

269             final int osize = mSize;
273 freeArrays(ohashes, oarray, osize);
285 final int osize = mSize;
291 System.arraycopy(ohashes, 0, mHashes, 0, osize);
292 System.arraycopy(oarray, 0, mArray, 0, osize<<1);
294 freeArrays(ohashes, oarray, osize);
296 if (CONCURRENT_MODIFICATION_EXCEPTIONS && mSize != osize) {
409 final int osize = mSize;
427 if (osize >= mHashes.length) {
428 final int n = osize >= (BASE_SIZE*2) ? (osize+(osize>>1))
429 : (osize >= BASE_SIZE ? (BASE_SIZE*2) : BASE_SIZE);
437 if (CONCURRENT_MODIFICATION_EXCEPTIONS && osize != mSize) {
442 if (DEBUG) System.out.println(TAG + " put: copy 0-" + osize + " to 0");
447 freeArrays(ohashes, oarray, osize);
450 if (index < osize) {
451 if (DEBUG) System.out.println(TAG + " put: move " + index + "-" + (osize-index)
453 System.arraycopy(mHashes, index, mHashes, index + 1, osize - index);
458 if (osize != mSize || index >= mHashes.length) {
512 final int osize = mSize;
514 if (osize <= 1) {
517 freeArrays(mHashes, mArray, osize);
522 nsize = osize - 1;
527 final int n = osize > (BASE_SIZE*2) ? (osize + (osize>>1)) : (BASE_SIZE*2);
535 if (CONCURRENT_MODIFICATION_EXCEPTIONS && osize != mSize) {
563 if (CONCURRENT_MODIFICATION_EXCEPTIONS && osize != mSize) {