Searched defs:baseLimit (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java3356 int baseLimit; // index bound for initial table field in class:ConcurrentHashMap.Traverser
3363 this.baseLimit = limit;
3378 if (baseIndex >= baseLimit || (t = tab) == null ||
3579 return (h = ((i = baseIndex) + (f = baseLimit)) >>> 1) <= i ? null :
3580 new KeySpliterator<K,V>(tab, baseSize, baseLimit = h,
3618 return (h = ((i = baseIndex) + (f = baseLimit)) >>> 1) <= i ? null :
3619 new ValueSpliterator<K,V>(tab, baseSize, baseLimit = h,
3658 return (h = ((i = baseIndex) + (f = baseLimit)) >>> 1) <= i ? null :
3659 new EntrySpliterator<K,V>(tab, baseSize, baseLimit = h,
4881 int baseLimit; field in class:ConcurrentHashMap.BulkTask
[all...]

Completed in 158 milliseconds