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

1 2 3 4 5 6 7 8 91011>>

  /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/firmware/lib/libm/
sf_floor.c 71 double floor(double x) function
73 double floor(x)
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_floor.c 19 * floor(x)
24 * Inexact flag raised if x not equal to floor(x).
33 floor(double x) function
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.hpp 137 tcu::Vector<float, Size> floor (const tcu::Vector<float, Size>& v) function in namespace:vkt::texture::util
  /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);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFloatMath.java 27 public static float floor(float value) { method in class:ShadowFloatMath
28 return (float) Math.floor(value);
  /prebuilts/go/darwin-x86/src/math/
floor.go 7 // Floor returns the greatest integer value less than or equal to x.
10 // Floor(±0) = ±0
11 // Floor(±Inf) = ±Inf
12 // Floor(NaN) = NaN
13 func Floor(x float64) float64
15 func floor(x float64) float64 { func
39 return -Floor(-x)
  /prebuilts/go/linux-x86/src/math/
floor.go 7 // Floor returns the greatest integer value less than or equal to x.
10 // Floor(±0) = ±0
11 // Floor(±Inf) = ±Inf
12 // Floor(NaN) = NaN
13 func Floor(x float64) float64
15 func floor(x float64) float64 { func
39 return -Floor(-x)
  /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...]
  /external/tensorflow/tensorflow/core/lib/core/
bits.h 24 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
38 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
41 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
48 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
65 // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
80 int floor = Log2Floor(n); local
82 return floor;
84 return floor + 1;
88 int floor = Log2Floor64(n); local
90 return floor;
    [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.
45 * {@link #floor}, {@link #ceiling}, and {@link #higher} return elements
117 E floor(E e); method in interface:NavigableSet
  /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.
  /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/clang/lib/Headers/
__clang_cuda_cmath.h 60 __DEVICE__ float floor(float __x) { return ::floorf(__x); } function
  /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);

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 91011>>