HomeSort by relevance Sort by last modified time
    Searched refs:rounded (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
roundup.c 26 unsigned rounded = ((unsigned) 0x80000000) >> lz; local
27 // 0x800000001 and higher are actually rounded _down_ to prevent overflow
28 if (v > rounded && lz > 0) {
29 rounded <<= 1;
31 return rounded;
  /system/media/audio_utils/
roundup.c 26 unsigned rounded = ((unsigned) 0x80000000) >> lz; local
27 // 0x800000001 and higher are actually rounded _down_ to prevent overflow
28 if (v > rounded && lz > 0) {
29 rounded <<= 1;
31 return rounded;
  /external/valgrind/none/tests/s390x/
rounding-4.stdout.exp 2 load rounded d = 12345678.250 f = 12345678.000
4 load rounded d = 12345678.250 f = 12345678.000
6 load rounded d = 12345678.250 f = 12345679.000
8 load rounded d = 12345678.250 f = 12345678.000
11 load rounded d = 12345678.750 f = 12345679.000
13 load rounded d = 12345678.750 f = 12345678.000
15 load rounded d = 12345678.750 f = 12345679.000
17 load rounded d = 12345678.750 f = 12345678.000
20 load rounded d = -12345678.250 f = -12345678.000
22 load rounded d = -12345678.250 f = -12345678.00
    [all...]
  /bionic/libc/bionic/
mremap.cpp 41 size_t rounded = BIONIC_ALIGN(new_size, PAGE_SIZE); local
42 if (rounded < new_size || rounded > PTRDIFF_MAX) {
mmap.cpp 51 size_t rounded = BIONIC_ALIGN(size, PAGE_SIZE); local
52 if (rounded < size || rounded > PTRDIFF_MAX) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 32 // maxBytes will be rounded up to a power of 2, and all slots are available. Must be >= 2.
132 int rounded = 0x80000000 >>> lz; local
133 // 0x800000001 and higher are actually rounded _down_ to prevent overflow
134 if (v > rounded && lz > 0) {
135 rounded <<= 1;
137 return rounded;
  /external/v8/test/mjsunit/regress/
regress-351624.js 13 var rounded = Math.round(prod);
15 return rounded;
  /external/v8/src/mips/
simulator-mips.cc 2596 double rounded; local
2606 double rounded = std::floor(fs + 0.5); local
2620 double rounded = trunc(fs); local
2629 double rounded = std::floor(fs); local
2638 double rounded = std::ceil(fs); local
2651 double rounded; local
2665 double rounded = trunc(fs); local
2679 double rounded = std::floor(fs + 0.5); local
2699 double rounded = std::floor(fs); local
2713 double rounded = std::ceil(fs); local
3117 float rounded = trunc(fs); local
3126 float rounded = trunc(fs); local
3140 float rounded = std::floor(fs); local
3149 float rounded = std::floor(fs); local
3162 float rounded = std::floor(fs + 0.5); local
3177 float rounded = std::floor(fs + 0.5); local
3197 float rounded = std::ceil(fs); local
3206 float rounded = std::ceil(fs); local
3237 float rounded; local
3249 float rounded; local
    [all...]
simulator-mips.h 174 void set_fpu_register_invalid_result64(float original, float rounded);
175 void set_fpu_register_invalid_result(float original, float rounded);
176 void set_fpu_register_word_invalid_result(float original, float rounded);
177 void set_fpu_register_invalid_result64(double original, double rounded);
178 void set_fpu_register_invalid_result(double original, double rounded);
179 void set_fpu_register_word_invalid_result(double original, double rounded);
190 bool set_fcsr_round_error(double original, double rounded);
191 bool set_fcsr_round_error(float original, float rounded);
192 bool set_fcsr_round64_error(double original, double rounded);
193 bool set_fcsr_round64_error(float original, float rounded);
    [all...]
  /external/v8/src/mips64/
simulator-mips64.cc 2608 float rounded; local
2618 float rounded; local
2628 float rounded = trunc(fs); local
2636 float rounded = trunc(fs); local
2645 float rounded = std::floor(fs + 0.5); local
2659 float rounded = std::floor(fs + 0.5); local
2674 float rounded = floor(fs); local
2684 float rounded = std::floor(fs); local
2693 float rounded = std::ceil(fs); local
2701 float rounded = ceil(fs); local
2940 double rounded; local
2951 double rounded = std::floor(fs + 0.5); local
2965 double rounded = trunc(fs); local
2974 double rounded = std::floor(fs); local
2983 double rounded = std::ceil(fs); local
2994 double rounded; local
3004 double rounded = std::floor(fs + 0.5); local
3019 double rounded = trunc(fs); local
3028 double rounded = floor(fs); local
3037 double rounded = ceil(fs); local
    [all...]
simulator-mips64.h 184 void set_fpu_register_invalid_result64(float original, float rounded);
185 void set_fpu_register_invalid_result(float original, float rounded);
186 void set_fpu_register_word_invalid_result(float original, float rounded);
187 void set_fpu_register_invalid_result64(double original, double rounded);
188 void set_fpu_register_invalid_result(double original, double rounded);
189 void set_fpu_register_word_invalid_result(double original, double rounded);
198 bool set_fcsr_round_error(double original, double rounded);
199 bool set_fcsr_round64_error(double original, double rounded);
200 bool set_fcsr_round_error(float original, float rounded);
201 bool set_fcsr_round64_error(float original, float rounded);
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
strtod.h 191 DiyFp rounded(v.f >> precisionSize, v.e + static_cast<int>(precisionSize));
195 rounded.f++;
196 if (rounded.f & (DiyFp::kDpHiddenBit << 1)) { // rounding overflows mantissa (issue #340)
197 rounded.f >>= 1;
198 rounded.e++;
202 *result = rounded.ToDouble();
  /libcore/luni/src/test/java/libcore/java/math/
BigDecimalTest.java 64 BigDecimal rounded = bigDecimal.round(new MathContext(2, RoundingMode.FLOOR)); local
65 assertEquals("0.99", rounded.toString());
  /external/eigen/bench/btl/data/
mk_new_gnuplot.sh 21 echo set term postscript color rounded enhanced >> $WHAT.gnuplot
24 # echo set term svg color rounded enhanced >> $WHAT.gnuplot
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Limit.java 168 final BigDecimal rounded = v.setScale(ref.scale(), mode); local
171 rounded.toPlainString(), minmax, ref.toPlainString());
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 145 int rounded = (int)(CHUNK * Math.ceil((float)amount / CHUNK)); local
146 bsize += read(in, b, bsize, rounded - bsize);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
common.py 85 The number of bytes is rounded up.
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2); local
82 DE_ASSERT(de::inRange<deUint32>(rounded, 0, 0xff));
83 return (deUint8)rounded;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
UserIconDrawable.java 370 Rect rounded = new Rect(); local
371 dstRect.round(rounded);
374 mUserDrawable.setBounds(rounded);
  /external/dng_sdk/source/
dng_matrix.cpp 278 real64 rounded = Round_int32 (fData [j] [k] * factor) * invFactor; local
280 error = fData [j] [k] - rounded;
282 fData [j] [k] = rounded;
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 1480 final int rounded = Math.round(result); local
    [all...]
  /external/v8/test/mjsunit/es6/
typedarray-of.js 31 // For typed arrays of floating point values, values are not rounded.
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
Dot.py 91 style = 'filled' | 'invisible' | 'diagonals' | 'rounded'
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
output.h 474 in bytes and ROUNDED is that size rounded up to the next
479 on the rounded size to align the decl. */
482 unsigned HOST_WIDE_INT rounded);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 914 * @return rounded value
922 * @return rounded value
930 * @return rounded value
1048 Dfp rounded; local
    [all...]

Completed in 3544 milliseconds

1 2 3 4 5