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

1 2 3 4 5 6 7 8 910

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_round.c 36 round(double x) function
59 __weak_reference(round, roundl);
  /external/libvpx/libvpx/vpx_ports/
msvc.h 21 #if _MSC_VER < 1800 // VS2013 provides round
23 static INLINE double round(double x) { function
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
number-handler.js 43 return Math.round(clamp(1, Infinity, x));
55 function round(left, right) { function
56 return [left, right, Math.round];
66 scope.addPropertiesHandler(parseNumber, round, ['z-index']);
  /external/compiler-rt/lib/builtins/
floatsisf.c 11 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
50 rep_t round = (rep_t)a << (typeWidth - shift); local
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
floatunsisf.c 11 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
42 rep_t round = (rep_t)a << (typeWidth - shift); local
43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
divsf3.c 154 // code to round them correctly.
159 const bool round = (residual << 1) > bSignificand; local
164 // Round
165 absResult += round;
divdf3.c 169 // code to round them correctly.
174 const bool round = (residual << 1) > bSignificand; local
179 // Round
180 absResult += round;
  /frameworks/base/core/java/com/android/internal/util/
FastMath.java 25 * Fast round from float to int. This is faster than Math.round()
29 public static int round(float value) { method in class:FastMath
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 40 int round(T x);
63 inline int round(const T x) { function in namespace:Ti
  /external/icu/icu4c/source/i18n/
valueformatter.cpp 104 ValueFormatter::round(DigitList &value, UErrorCode &status) const { function in class:ValueFormatter
110 return fFixedPrecision->round(value, 0, status);
112 return fScientificPrecision->round(value, status);
  /external/jemalloc/test/src/
timer.c 54 uint64_t round = (i+1 == buflen-1 && ((t0 * mult * 10 / t1) % 10 local
57 "%"FMTu64, (t0 * mult / t1) % 10 + round);
  /external/skia/tools/lua/
glyph-usage.lua 50 function round(x, mul) function
123 local fontID = round(k / 1000)
136 local ave = round(totalCount / strikeCount)
  /frameworks/av/media/libeffects/loudness/common/core/
math.h 77 // Round to the nearest integer: We need this implementation
78 // since std::round is missing on android.
81 inline T round(const T &x) { function in namespace:std
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_systemdependent.h 36 // round is not defined in MSVC before VS2013.
37 static INLINE int round(double x) { function
  /external/v8/tools/
generate-ten-powers.scm 56 (define (round-n-cut n e nb-bits)
58 (define (round n)
59 (case *round*
63 ;; with the -1 it will only round up if the cut off part is
68 ((round)
73 (cut (bit-rshbx (round n) shift))
77 (round-n-cut n (+fx e 1) nb-bits))))
80 (case *round*
83 ((round) (let ((tmp (/bx (*bx #z2 x) y)))
126 (round-n-cut n e nb-bits
    [all...]
  /frameworks/base/graphics/java/android/graphics/
RectF.java 442 public void round(Rect dst) { method in class:RectF
443 dst.set(FastMath.round(left), FastMath.round(top),
444 FastMath.round(right), FastMath.round(bottom));
  /external/ceres-solver/internal/ceres/
parameter_block_ordering.cc 97 int round = 0; local
104 ordering->AddElementToGroup(parameter_block->mutable_user_state(), round);
108 ++round;
  /external/libvpx/libvpx/test/
idct8x8_test.cc 26 static int round(double x) { function in namespace:__anon17046
89 coeff[j] = round(output_r[j]);
  /frameworks/base/core/java/com/android/internal/view/menu/
ContextMenuBuilder.java 115 helper.show(Math.round(x), Math.round(y));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 66 round(0);
74 round(0);
83 round(0);
165 protected int round(int in) { method in class:DfpDec
193 return super.round(in);
222 inc = (n != 0) || (discarded != 0); // round up if n!=0
226 inc = n >= 5; // round half up
230 inc = n > 5; // round half down
236 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 1); // round half-even
242 (n == 5 && discarded == 0 && ((lsb / lsbthreshold) & 1) == 0); // round half-od
    [all...]
  /external/deqp/framework/common/
tcuFloatFormat.cpp 139 //! significand bits and minimum exponent of the floatformat. Round up if
141 double FloatFormat::round (double d, bool upward) const function in class:tcu::FloatFormat
190 // Round both bounds _inwards_ to closest representable values.
192 ret |= clampValue(round(tmp.lo(), true)) | clampValue(round(tmp.hi(), false));
210 return round(d, upward);
213 //! Round output of an operation.
343 oss << "round(" << arg << ", false)";
344 check(oss.str(), m_fmt->round(arg, false), refDown);
348 oss << "round(" << arg << ", true)"
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_quantize_sse2.c 41 __m128i round, quant, dequant; local
47 round = _mm_load_si128((const __m128i*)round_ptr);
68 qcoeff0 = _mm_adds_epi16(qcoeff0, round);
69 round = _mm_unpackhi_epi64(round, round);
70 qcoeff1 = _mm_adds_epi16(qcoeff1, round);
139 qcoeff0 = _mm_adds_epi16(qcoeff0, round);
140 qcoeff1 = _mm_adds_epi16(qcoeff1, round);
  /external/opencv3/apps/traincascade/
imagestorage.h 45 size_t last, round; member in class:CvCascadeImageReader::NegReader
  /external/regex-re2/util/
benchmark.cc 83 static int round(int n) { function
113 n = round(n);
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
RendererCommonTest.java 95 private static double[] round(float[] array) { method in class:RendererCommonTest
99 doubleArray[i] = Math.round(100 * array[i]) / 100.0;
120 0, 0, 0, 1}, round(layoutMatrix));
133 1, 0, 0, 1}, round(layoutMatrix));
148 0.25, 0, 0, 1}, round(layoutMatrix));
161 MoreAsserts.assertEquals(round(matrix), round(rotatedMatrix)); method
174 1, 0, 0, 1}, round(samplingMatrix));
187 1, 1, 0, 1}, round(samplingMatrix));

Completed in 1134 milliseconds

1 2 3 4 5 6 7 8 910