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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestRound.rs 24 return round(in);
28 return round(in);
32 return round(in);
36 return round(in);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_llround.c 5 #define roundit round
s_round.c 33 round(double x) function
s_lround.c 35 #define roundit round
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HasCoverage.java 28 int diff = Math.round(entity.getCoveragePercentage())
29 - Math.round(otherEntity.getCoveragePercentage());
  /external/libcxx/test/language.support/support.limits/limits/round.style/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.limits/limits/round.style/Android.mk
19 test_name := language.support/support.limits/limits/round.style/check_values
  /external/chromium_org/third_party/skia/src/core/
SkTDynamicHash.h 92 for (int round = 0; round < fCapacity; round++) {
101 index = this->nextIndex(index, round);
146 for (int round = 0; round < fCapacity; round++) {
150 return round;
152 index = this->nextIndex(index, round);
210 for (int round = 0; round < fCapacity; round++)
    [all...]
  /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;
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
aes.h 58 v128_t round[15]; member in struct:__anon17431
  /external/chromium_org/third_party/WebKit/Source/platform/
LayoutUnitTest.cpp 84 ASSERT_EQ(LayoutUnit(-1.9f).round(), -2);
85 ASSERT_EQ(LayoutUnit(-1.6f).round(), -2);
86 ASSERT_EQ(LayoutUnit::fromFloatRound(-1.51f).round(), -2);
87 ASSERT_EQ(LayoutUnit::fromFloatRound(-1.5f).round(), -1);
88 ASSERT_EQ(LayoutUnit::fromFloatRound(-1.49f).round(), -1);
89 ASSERT_EQ(LayoutUnit(-1.0f).round(), -1);
90 ASSERT_EQ(LayoutUnit::fromFloatRound(-0.99f).round(), -1);
91 ASSERT_EQ(LayoutUnit::fromFloatRound(-0.51f).round(), -1);
92 ASSERT_EQ(LayoutUnit::fromFloatRound(-0.50f).round(), 0);
93 ASSERT_EQ(LayoutUnit::fromFloatRound(-0.49f).round(), 0)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
math.js 57 shouldBe("Math.round(0)", "0");
58 shouldBeFalse("isNegativeZero(Math.round(0))");
59 shouldBeTrue("isNegativeZero(Math.round(negativeZero))");
60 shouldBe("Math.round(0.2)", "0");
61 shouldBeTrue("isNegativeZero(Math.round(-0.2))");
62 shouldBeTrue("isNegativeZero(Math.round(-0.5))");
63 shouldBe("Math.round(1.1)", "1");
64 shouldBe("Math.round(1.6)", "2");
65 shouldBe("Math.round(-3.5)", "-3");
66 shouldBe("Math.round(-3.6)", "-4")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioUtilities.cpp 61 return static_cast<size_t>(round(time * sampleRate));
  /external/chromium_org/v8/test/webkit/
math.js 207 shouldBe("Math.round(NaN)", "NaN");
208 shouldBe("Math.round(0)", "0");
209 shouldBe("Math.round(-0)", "-0");
210 shouldBe("Math.round(0.4)", "0");
211 shouldBe("Math.round(-0.4)", "-0");
212 shouldBe("Math.round(0.5)", "1");
213 shouldBe("Math.round(-0.5)", "-0");
214 shouldBe("Math.round(0.6)", "1");
215 shouldBe("Math.round(-0.6)", "-1");
216 shouldBe("Math.round(1)", "1")
    [all...]
  /art/test/082-inline-execute/src/
Main.java 483 Assert.assertEquals(Math.round(+0.0d), (long)+0.0);
484 Assert.assertEquals(Math.round(-0.0d), (long)+0.0);
485 Assert.assertEquals(Math.round(2.0d), 2l);
486 Assert.assertEquals(Math.round(2.1d), 2l);
487 Assert.assertEquals(Math.round(2.5d), 3l);
488 Assert.assertEquals(Math.round(2.9d), 3l);
489 Assert.assertEquals(Math.round(3.0d), 3l);
490 Assert.assertEquals(Math.round(-2.0d), -2l);
491 Assert.assertEquals(Math.round(-2.1d), -2l);
492 Assert.assertEquals(Math.round(-2.5d), -2l)
    [all...]
  /external/chromium_org/android_webview/browser/
global_tile_manager_unittest.cc 122 for (int round = 0; round < 5; round++) {
148 for (int round = 0; round < 5; round++) {
  /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/
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/chromium_org/third_party/icu/source/test/intltest/
dcfmtest.h 53 const UnicodeString &round,
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
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/icu/icu4c/source/test/intltest/
dcfmtest.h 53 const UnicodeString &round,
  /external/chromium_org/third_party/boringssl/src/crypto/aes/asm/
vpaes-x86.pl 57 my ($round, $base, $magic, $key, $const, $inp, $out)=
135 ## Round function constants
182 &mov ($round,&DWP(240,$key));
200 # middle of middle round
223 &sub ($round,1); # nr--
227 # top of round
250 # middle of last round
269 &mov ($round,&DWP(240,$key));
273 &mov ($magic,$round);
323 &add ($key,16); # next round ke
    [all...]
  /external/openssl/crypto/aes/asm/
vpaes-x86.pl 57 my ($round, $base, $magic, $key, $const, $inp, $out)=
135 ## Round function constants
182 &mov ($round,&DWP(240,$key));
200 # middle of middle round
224 &sub ($round,1); # nr--
227 # top of round
250 # middle of last round
268 &mov ($round,&DWP(240,$key));
273 &mov ($magic,$round);
300 &add ($key,16); # next round ke
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/
DisplayInfoActivity.java 43 int width = Math.round(dm.widthPixels / dm.density);
44 int height = Math.round(dm.heightPixels / dm.density);
  /developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
MainActivity.java 41 // less crowded on a round display.
42 final boolean round = insets.isRound();
44 int colMargin = res.getDimensionPixelOffset(round ?
49 // layout for round displays. They must be explicitly

Completed in 4355 milliseconds

1 2 3 4 5 6 7 8 91011>>