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

1 2 3 4 5 6 7 8 9

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_round.c 33 round(double x) function
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
aes.h 58 v128_t round[15]; member in struct:__anon16450
  /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
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 40 int round(T x);
63 inline int round(const T x) { function in namespace:Ti
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_systemdependent.h 36 // round is not defined in MSVC before VS2013.
37 static INLINE int round(double x) { function
  /external/chromium_org/third_party/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/libvpx/libvpx/vp9/common/
vp9_systemdependent.h 36 // round is not defined in MSVC before VS2013.
37 static INLINE int 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)
  /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/chromium_org/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 443 public void round(Rect dst) { method in class:RectF
444 dst.set(FastMath.round(left), FastMath.round(top),
445 FastMath.round(right), FastMath.round(bottom));
  /development/ndk/sources/android/libportable/arch-x86/
fenv.c 151 int round = REAL(fegetround)(); local
152 return x86_get_rounding(round);
156 WRAP(fesetround)(int round)
158 return REAL(fesetround)(x86_change_rounding(round));
  /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/srec/audio/AudioIn/UNIX/include/
filter.h 45 typeAccum round; // used for roundoff member in struct:fir_struct
  /development/ndk/sources/android/libportable/arch-mips64/
fenv.c 132 int round = REAL(fegetround)(); local
133 return mips64_get_rounding(round);
136 int WRAP(fesetround)(int round) {
137 return REAL(fesetround)(mips64_change_rounding(round));
  /development/ndk/sources/android/libportable/arch-x86_64/
fenv.c 152 int round = REAL(fegetround)(); local
153 return x86_64_get_rounding(round);
156 int WRAP(fesetround)(int round) {
157 return REAL(fesetround)(x86_64_change_rounding(round));
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
dct32x32_test.cc 30 static int round(double x) { function in namespace:__anon16628
133 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
136 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
231 coeff[j] = round(out_r[j]);
idct8x8_test.cc 27 static int round(double x) { function in namespace:__anon16634
105 output[i] = round(out2[i]/32);
126 coeff[j] = round(output_r[j]);
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
omxSP_FFTFwd_CToC_FC32_Sfs_s.S 69 #define round r3 define
omxSP_FFTInv_CToC_FC32_Sfs_s.S 70 #define round r3 define
152 movw round, #0
153 movt round, #0x3f80 @// round = 1.0
154 vmov.f32 fone, round
  /external/chromium_org/third_party/re2/util/
benchmark.cc 83 static int round(int n) { function
113 n = round(n);

Completed in 1094 milliseconds

1 2 3 4 5 6 7 8 9