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

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DOpenIntToDoubleHashMap.java258 private int findInsertionIndex(final int key) { method in class:OpenIntToDoubleHashMap
259 return findInsertionIndex(keys, states, key, mask);
270 private static int findInsertionIndex(final int[] keys, final byte[] states, method in class:OpenIntToDoubleHashMap
410 int index = findInsertionIndex(key);
450 final int index = findInsertionIndex(newKeys, newStates, key, newMask);
H A DOpenIntToFieldHashMap.java270 private int findInsertionIndex(final int key) { method in class:OpenIntToFieldHashMap
271 return findInsertionIndex(keys, states, key, mask);
282 private static int findInsertionIndex(final int[] keys, final byte[] states, method in class:OpenIntToFieldHashMap
422 int index = findInsertionIndex(key);
462 final int index = findInsertionIndex(newKeys, newStates, key, newMask);

Completed in 91 milliseconds