HomeSort by relevance Sort by last modified time
    Searched defs:floor (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /bionic/libm/arm/
floor.S 35 ENTRY(floor) /* x in r0, r1 */ function
137 END(floor)
139 ALIAS_SYMBOL(floorl, floor);
  /bionic/libm/x86/
floor.S 33 ENTRY(floor) function
41 END(floor)
43 ALIAS_SYMBOL(floorl, floor);
  /bionic/libm/arm64/
floor.S 19 ENTRY(floor) function
22 END(floor)
  /bionic/libm/x86_64/
floor.S 33 ENTRY(floor) function
36 END(floor)
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_floor.c 17 * floor(x)
22 * Inexact flag raised if x not equal to floor(x).
33 floor(double x) function
77 __weak_reference(floor, floorl);
  /device/google/contexthub/lib/libm/
sf_floor.c 71 double floor(double x) function
73 double floor(x)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFloatMath.java 27 public static float floor(float value) { method in class:ShadowFloatMath
28 return (float) Math.floor(value);
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 37 int floor(T x);
58 inline int floor(const T x) { function in namespace:Ti
65 return floor(x + T(0.5));
67 return floor(x - floor(x - T(1)) + T(0.5)) + floor(x - T(1));
  /external/jemalloc/test/unit/
run_quantize.c 60 size_t lrun_size, run_size, floor, ceil; local
67 floor = run_quantize_floor(run_size);
70 assert_zu_eq(run_size, floor,
79 - PAGE), "Floor should be a precise size");
88 run_size_prev = floor;
101 * run_quantize_{floor,ceil}() are monotonic.
115 size_t run_size, floor, ceil; local
118 floor = run_quantize_floor(run_size);
121 assert_zu_le(floor, run_size,
122 "Floor should be <= (floor=%zu, run_size=%zu, ceil=%zu)"
    [all...]
  /frameworks/base/core/java/android/util/
FloatMath.java 43 * @return the floor of value
46 public static float floor(float value) { method in class:FloatMath
47 return (float) Math.floor(value);
  /libcore/ojluni/src/main/java/java/util/
NavigableSet.java 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
44 * {@link #floor}, {@link #ceiling}, and {@link #higher} return elements
116 E floor(E e); method in interface:NavigableSet
  /external/libvorbis/doc/
01-introduction.tex 179 floor and residue vectors within a mapping. The submap functions as a
180 last layer of indirection such that specific special floor or residue
183 the proper floor and residue instance number to use for decoding that
184 submap's spectral floor and spectral residue vectors.
192 apply a full range floor and residue encoding to channels 0 through 4,
195 of a full-range floor) and channel 5 belongs to submap 1, which uses a
199 \subsubsection{Floor}
201 Vorbis encodes a spectral 'floor' vector for each PCM channel. This
204 whitening filter. It is named a 'floor' because the Xiph.Org
208 A floor encoding may be of two types. Floor 0 uses a packed LS
    [all...]
  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedSet.java 86 public E floor(E element) { method in class:DescendingImmutableSortedSet
92 return forward.floor(element);
SortedMultisets.java 100 public E floor(E e) { method in class:SortedMultisets.NavigableElementSet
ForwardingNavigableSet.java 71 public E floor(E e) { method in class:ForwardingNavigableSet
72 return delegate().floor(e);
76 * A sensible definition of {@link #floor} in terms of the {@code descendingIterator} method of
78 * wish to override {@link #floor} to forward to this implementation.
RegularImmutableSortedSet.java 201 public E floor(E element) { method in class:RegularImmutableSortedSet
  /external/opencv3/3rdparty/openexr/Imath/
ImathFun.h 148 floor (T x) function in namespace:Imath
158 return -floor (-x);
197 // divp(x,y) == floor (double(x) / double (y))
ImathMath.h 117 static T floor (T x) {return ::floor (double(x));} function in struct:Imath::Math
144 static float floor (float x) {return ::floorf (x);} function in struct:Imath::Math
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 56 #define floor(x) ml_floor(x) macro
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 56 #define floor(x) ml_floor(x) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathinline.h 215 __NTH (floor (double __x)) function
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 148 public BigInteger floor() method in class:SimpleBigDecimal
156 return add(oneHalf.adjustScale(scale)).floor();
161 return floor().intValue();
166 return floor().longValue();
191 BigInteger floorBigInt = floor();
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedNavigableSetTest.java 80 @Override public E floor(E e) { method in class:SynchronizedNavigableSetTest.TestSet
82 return delegate().floor(e);
FilteredCollectionsTest.java 361 assertEquals(unfiltered.floor(i), filtered.floor(i));
  /external/autotest/client/site_tests/video_VDAPerf/
video_VDAPerf.py 17 from math import ceil, floor namespace
55 c, f = int(ceil(i)), int(floor(i))

Completed in 685 milliseconds

1 2 3 4 5 6 7 8