Searched refs:pushIterations (Results 1 - 10 of 10) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DIntSet.java45 private int pushIterations; field in class:IntSet
76 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
210 int i = 0, pushIterations = this.pushIterations;
253 if (++i == pushIterations) break;
401 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DObjectSet.java44 private int pushIterations; field in class:ObjectSet
75 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
198 int i = 0, pushIterations = this.pushIterations;
242 if (++i == pushIterations) break;
381 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DIdentityMap.java46 private int pushIterations; field in class:IdentityMap
79 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
201 int i = 0, pushIterations = this.pushIterations;
254 if (++i == pushIterations) break;
475 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DIntFloatMap.java49 private int pushIterations; field in class:IntFloatMap
82 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
218 int i = 0, pushIterations = this.pushIterations;
270 if (++i == pushIterations) break;
514 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DIntIntMap.java47 private int pushIterations; field in class:IntIntMap
80 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
216 int i = 0, pushIterations = this.pushIterations;
268 if (++i == pushIterations) break;
500 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DIntMap.java48 private int pushIterations; field in class:IntMap
81 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
224 int i = 0, pushIterations = this.pushIterations;
276 if (++i == pushIterations) break;
521 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DLongMap.java48 private int pushIterations; field in class:LongMap
81 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
223 int i = 0, pushIterations = this.pushIterations;
275 if (++i == pushIterations) break;
518 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DObjectFloatMap.java45 private int pushIterations; field in class:ObjectFloatMap
78 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
200 int i = 0, pushIterations = this.pushIterations;
253 if (++i == pushIterations) break;
463 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DObjectIntMap.java45 private int pushIterations; field in class:ObjectIntMap
78 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
200 int i = 0, pushIterations = this.pushIterations;
253 if (++i == pushIterations) break;
464 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);
H A DObjectMap.java45 private int pushIterations; field in class:ObjectMap
78 pushIterations = Math.max(Math.min(capacity, 8), (int)Math.sqrt(capacity) / 8);
211 int i = 0, pushIterations = this.pushIterations;
264 if (++i == pushIterations) break;
493 pushIterations = Math.max(Math.min(newSize, 8), (int)Math.sqrt(newSize) / 8);

Completed in 133 milliseconds