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

/libcore/ojluni/src/main/java/java/util/
H A DNavigableSet.java44 * {@link #floor}, {@link #ceiling}, and {@link #higher} return elements
116 E floor(E e); method in interface:NavigableSet
H A DTreeSet.java424 public E floor(E e) { method in class:TreeSet
H A DTreeMap.java1161 public E floor(E e) { return m.floorKey(e); } method in class:TreeMap.KeySet
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java328 public E floor(E e) { method in class:ConcurrentSkipListSet
H A DConcurrentSkipListMap.java1191 * Utility for ceiling, floor, lower, higher methods.
2340 public K floor(K e) { return m.floorKey(e); } method in class:ConcurrentSkipListMap.KeySet
/libcore/ojluni/src/main/native/
H A Djfdlibm.h51 #define floor jfloor macro
/libcore/ojluni/src/main/java/java/lang/
H A DMath.java370 * value of {@code -Math.floor(-x)}.
395 public static native double floor(double a); method in class:Math
579 * equivalently, a fixed point of the method {@link #floor
580 * floor}. A value is a fixed point of a one-argument
629 // (r >> shift) evaluates to floor(a * 2)
630 // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2)
631 // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2)
678 // (r >> shift) evaluates to floor(a * 2)
679 // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2)
680 // (((r >> shift) + 1) >> 1) evaluates to floor(
[all...]
H A DStrictMath.java313 * value of {@code -StrictMath.floor(-x)}.
339 public static double floor(double a) { method in class:StrictMath
344 * Internal method to share logic between floor and ceil.
604 * equivalently, a fixed point of the method {@link #floor
605 * floor}. A value is a fixed point of a one-argument
819 * @see Math#floor(double)
843 * @see Math#floor(double)
851 * Returns the floor modulus of the {@code int} arguments.
853 * The floor modulus is {@code x - (floorDiv(x, y) * y)},
867 * @return the floor modulu
[all...]

Completed in 122 milliseconds