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

1 2 3 4 5 6 7 8 91011>>

  /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
  /device/google/contexthub/firmware/lib/libm/
sf_round.c 65 double round(double x) function
67 double round(x)
  /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;
  /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
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
writebarrier.go 309 off = round(off, taddr.Type.Alignment())
315 off = round(off, ptr.Type.Alignment())
321 off = round(off, val.Type.Alignment())
326 off = round(off, config.PtrSize)
339 // round to a multiple of r, r is a power of 2
340 func round(o int64, r int64) int64 { func
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
writebarrier.go 309 off = round(off, taddr.Type.Alignment())
315 off = round(off, ptr.Type.Alignment())
321 off = round(off, val.Type.Alignment())
326 off = round(off, config.PtrSize)
339 // round to a multiple of r, r is a power of 2
340 func round(o int64, r int64) int64 { func
  /prebuilts/go/darwin-x86/src/math/big/
bits_test.go 105 // round returns the Float value corresponding to x after rounding x
107 func (x Bits) round(prec uint, mode RoundingMode) *Float { func
145 // round
151 // round away from zero
decimal.go 201 // exactly halfway - round to even
208 // round sets x to (at most) n mantissa digits by rounding it
211 func (x *decimal) round(n int) { func
235 // all digits are '9's => round up to '1' and update exponent
  /prebuilts/go/linux-x86/src/math/big/
bits_test.go 105 // round returns the Float value corresponding to x after rounding x
107 func (x Bits) round(prec uint, mode RoundingMode) *Float { func
145 // round
151 // round away from zero
decimal.go 201 // exactly halfway - round to even
208 // round sets x to (at most) n mantissa digits by rounding it
211 func (x *decimal) round(n int) { func
235 // all digits are '9's => round up to '1' and update exponent
  /bionic/libm/
builtins.cpp 59 double round(double x) { return __builtin_round(x); } function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pymath.c 70 round(double x) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pymath.c 70 round(double x) function
  /external/icu/icu4c/source/i18n/
valueformatter.cpp 106 ValueFormatter::round(DigitList &value, UErrorCode &status) const { function in class:ValueFormatter
112 return fFixedPrecision->round(value, 0, status);
114 return fScientificPrecision->round(value, status);
  /external/jemalloc/test/src/
timer.c 53 uint64_t round = (i+1 == buflen-1 && ((t0 * mult * 10 / t1) % 10 local
56 "%"FMTu64, (t0 * mult / t1) % 10 + round);
  /external/python/cpython2/Python/
pymath.c 70 round(double x) function
  /external/python/cpython3/Python/
pymath.c 70 round(double x) function
  /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)
  /external/skqp/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
  /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...]
  /external/libvpx/libvpx/vpx_dsp/x86/
quantize_avx.c 33 __m128i zbin, round, quant, dequant, shift; local
46 load_b_values(zbin_ptr, &zbin, round_ptr, &round, quant_ptr, &quant,
71 round = _mm_unpackhi_epi64(round, round);
76 calculate_qcoeff(&qcoeff0, round, quant, shift);
77 round = _mm_unpackhi_epi64(round, round);
80 calculate_qcoeff(&qcoeff1, round, quant, shift)
163 __m128i zbin, round, quant, dequant, shift; local
    [all...]

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>