Searched refs:floor (Results 1 - 25 of 480) sorted by relevance

1234567891011>>

/external/libvorbis/lib/books/
H A DMakefile.am3 SUBDIRS = coupled uncoupled floor
/external/libcxx/test/std/utilities/time/time.duration/time.duration.cast/
H A Dfloor.fail.cpp13 // floor
17 // floor(const duration<Rep, Period>& d);
25 std::chrono::floor<int>(std::chrono::milliseconds(3));
H A Dfloor.pass.cpp13 // floor
18 // floor(const duration<Rep, Period>& d);
29 typedef decltype(std::chrono::floor<ToDuration>(f)) R;
31 assert(std::chrono::floor<ToDuration>(f) == d);
45 constexpr std::chrono::hours h1 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(9000000));
47 constexpr std::chrono::hours h2 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(-9000000));
/external/libcxx/test/std/utilities/time/time.point/time.point.cast/
H A Dfloor.fail.cpp13 // floor
17 // floor(const time_point<Clock, Duration>& t);
25 std::chrono::floor<int>(std::chrono::system_clock::now());
H A Dfloor.pass.cpp13 // floor
17 // floor(const time_point<Clock, Duration>& t);
33 typedef decltype(std::chrono::floor<ToDuration>(f)) R;
35 assert(std::chrono::floor<ToDuration>(f) == t);
48 static_assert(std::chrono::floor<ToDuration>(f) == t, "");
/external/valgrind/none/tests/
H A Dfloored.c16 return (int)floor(2.90) + 1;
/external/eigen/doc/snippets/
H A DCwise_floor.cpp3 cout << floor(v) << endl;
/external/v8/tools/turbolizer/
H A Dmonkey.js9 var middle = Math.floor(this.length / 2);
25 return Math.floor((raw + multiple - 1) / multiple) * multiple;
H A Dutil.js9 var margin = Math.floor(height / 4);
28 let step = Math.floor(count / 2);
47 let step = Math.floor(count / 2);
/external/jemalloc/test/unit/
H A Drun_quantize.c60 size_t lrun_size, run_size, floor, ceil; local
67 floor = run_quantize_floor(run_size);
70 assert_zu_eq(run_size, floor,
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)",
123 floor, run_siz
[all...]
/external/libvpx/libvpx/vpx_ports/
H A Dmsvc.h27 return floor(x + 0.5);
/external/ltp/testcases/misc/math/float/
H A Dfloat_power.c33 {FUNC_NORMAL, 50, floor, "floor", "floor_inp.ref", "floor_out.ref",
/external/valgrind/none/tests/x86-darwin/
H A Dbug350062.c10 double i = floor(x);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFloatMath.java27 public static float floor(float value) { method in class:ShadowFloatMath
28 return (float) Math.floor(value);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dos_specific_inline.h35 x_int = (long int)floor(x_dbl + 0.499999999999);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DAbstractIntegerDistribution.java70 return cumulativeProbability((int) FastMath.floor(x));
93 if (FastMath.floor(x0) < x0) {
94 return cumulativeProbability(((int) FastMath.floor(x0)) + 1,
95 (int) FastMath.floor(x1)); // don't want to count mass below x0
97 return cumulativeProbability((int) FastMath.floor(x0),
98 (int) FastMath.floor(x1));
126 double fl = FastMath.floor(x);
/external/protobuf/js/binary/
H A Dencoder.js84 goog.asserts.assert(lowBits == Math.floor(lowBits));
85 goog.asserts.assert(highBits == Math.floor(highBits));
108 goog.asserts.assert(value == Math.floor(value));
127 goog.asserts.assert(value == Math.floor(value));
156 goog.asserts.assert(value == Math.floor(value));
172 goog.asserts.assert(value == Math.floor(value));
187 goog.asserts.assert(value == Math.floor(value));
201 goog.asserts.assert(value == Math.floor(value));
216 goog.asserts.assert(value == Math.floor(value));
228 goog.asserts.assert(value == Math.floor(valu
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncFloor.java45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
H A DFuncRound.java49 return new XNumber(java.lang.Math.floor(val
/external/skia/experimental/SkV8Example/js/
H A Dsnow.js26 x: Math.floor(Math.random()*W),
27 y: Math.floor(Math.random()*H),
28 r: Math.floor(Math.random()*7+1),
41 p.x += Math.floor(Math.sin(angle)*5.0);
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
H A DLinear.java11 int segment = (int) Math.floor((pointsCnt-1) * t);
/external/ImageMagick/coders/
H A Dlabel.c141 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
142 image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5);
163 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
164 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5);
184 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
185 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5);
210 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
212 image->columns=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+
215 image->rows=(size_t) floor(metrics.ascent-metrics.descent+
218 image->rows=(size_t) floor(draw_inf
[all...]
/external/valgrind/none/tests/mips32/
H A Dround_fpu64.stdout.exp1179 floor.l.s 0 0.000000
1181 floor.l.s 456 456.250000
1183 floor.l.s 3 3.000000
1185 floor.l.s -1 -1.000000
1187 floor.l.s 1384 1384.500000
1189 floor.l.s -8 -7.250000
1191 floor.l.s 1000000000 1000000000.000000
1193 floor.l.s -5787 -5786.250000
1195 floor.l.s 1752 1752.000000
1197 floor
[all...]
/external/libvorbis/lib/
H A Dos.h41 # define rint(x) (floor((x)+0.5f))
50 # define rint(x) (floor((x)+0.5f))
175 the floor() call is required to ensure correct roudning of
177 return (int)floor(f+.5);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_rgb9e5.h121 maxm = (int) floor(maxrgb / denom + 0.5);
130 rm = (int) floor(rc / denom + 0.5);
131 gm = (int) floor(gc / denom + 0.5);
132 bm = (int) floor(bc / denom + 0.5);

Completed in 1293 milliseconds

1234567891011>>