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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/ppc32/
round.vgtest 1 prog: round
  /external/valgrind/main/none/tests/ppc64/
round.vgtest 1 prog: round
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.15.js 24 ECMA Section: 15.8.2.15 Math.round(x)
39 Math.round( 3.5 ) == 4
40 Math.round( -3.5 ) == 3
42 - Math.round(x) == Math.floor( x + 0.5 )
43 except if x = -0. in that case, Math.round(x) = -0
55 var TITLE = "Math.round(x)";
69 array[item++] = new TestCase( SECTION, "Math.round.length", 1, Math.round.length );
71 array[item++] = new TestCase( SECTION, "Math.round()", Number.NaN, Math.round() );
    [all...]
  /external/icu4c/test/intltest/
itrbnfrt.h 25 * Perform an exhaustive round-trip test on the English spellout rules
30 * Perform an exhaustive round-trip test on the duration-formatting rules
35 * Perform an exhaustive round-trip test on the Spanish spellout rules
40 * Perform an exhaustive round-trip test on the French spellout rules
45 * Perform an exhaustive round-trip test on the Swiss French spellout rules
50 * Perform an exhaustive round-trip test on the Italian spellout rules
55 * Perform an exhaustive round-trip test on the German spellout rules
60 * Perform an exhaustive round-trip test on the Swedish spellout rules
65 * Perform an exhaustive round-trip test on the Dutch spellout rules
70 * Perform an exhaustive round-trip test on the Japanese spellout rule
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 32 * and add initial round key:
39 #define ROUND(i,d,s) \
47 ROUND(1,t,s);
48 ROUND(2,s,t);
49 ROUND(3,t,s);
50 ROUND(4,s,t);
51 ROUND(5,t,s);
52 ROUND(6,s,t);
53 ROUND(7,t,s);
54 ROUND(8,s,t)
    [all...]
aes-internal-dec.c 37 /* invert the order of the round keys: */
44 /* apply the inverse MixColumn transform to all round keys but the
85 * and add initial round key:
92 #define ROUND(i,d,s) \
100 ROUND(1,t,s);
101 ROUND(2,s,t);
102 ROUND(3,t,s);
103 ROUND(4,s,t);
104 ROUND(5,t,s);
105 ROUND(6,s,t)
    [all...]
  /external/webkit/PerformanceTests/PageLoad/svg/files/
mtsthelens.svg 190 textY.data = Math.round(m_loc.y);
191 textX.data = Math.round(m_loc.x);
254 <path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-329,902v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-194,-614v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-60,900v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M74,-616v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,898v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,-619v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,895v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,-622v1515" />
    [all...]
  /external/chromium/crypto/third_party/nss/
sha512.cc 286 #define ROUND(n,a,b,c,d,e,f,g,h) \
295 ROUND(t+0,a,b,c,d,e,f,g,h)
296 ROUND(t+1,h,a,b,c,d,e,f,g)
297 ROUND(t+2,g,h,a,b,c,d,e,f)
298 ROUND(t+3,f,g,h,a,b,c,d,e)
299 ROUND(t+4,e,f,g,h,a,b,c,d)
300 ROUND(t+5,d,e,f,g,h,a,b,c)
301 ROUND(t+6,c,d,e,f,g,h,a,b)
302 ROUND(t+7,b,c,d,e,f,g,h,a)
306 ROUND( 0,a,b,c,d,e,f,g,h
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 56 * The generic round function. The application is so specific that
61 #define ROUND(f, a, b, c, d, x, s) \
74 /* Round 1 */
75 ROUND(F, a, b, c, d, in[0] + K1, 3);
76 ROUND(F, d, a, b, c, in[1] + K1, 7);
77 ROUND(F, c, d, a, b, in[2] + K1, 11);
78 ROUND(F, b, c, d, a, in[3] + K1, 19);
79 ROUND(F, a, b, c, d, in[4] + K1, 3);
80 ROUND(F, d, a, b, c, in[5] + K1, 7);
81 ROUND(F, c, d, a, b, in[6] + K1, 11)
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ThreadCheck.mm 65 void setDefaultThreadViolationBehavior(ThreadViolationBehavior behavior, ThreadViolationRound round)
67 ASSERT(round < MaximumThreadViolationRound);
68 if (round >= MaximumThreadViolationRound)
73 threadViolationBehavior[round] = behavior;
76 void reportThreadViolation(const char* function, ThreadViolationRound round)
78 ASSERT(round < MaximumThreadViolationRound);
79 if (round >= MaximumThreadViolationRound)
83 if (threadViolationBehavior[round] == NoThreadCheck)
87 WebCoreReportThreadViolation(function, round);
93 void WebCoreReportThreadViolation(const char* function, WebCore::ThreadViolationRound round)
    [all...]
  /bionic/libm/src/
s_llround.c 5 #define roundit round
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_CapTest.java 28 assertEquals(Cap.ROUND, Cap.valueOf("ROUND"));
38 assertEquals(Cap.ROUND, actual[1]);
47 assertEquals(Cap.ROUND, p.getStrokeCap());
Paint_JoinTest.java 28 assertEquals(Join.ROUND, Join.valueOf("ROUND"));
37 assertEquals(Join.ROUND, actual[1]);
46 assertEquals(Join.ROUND, p.getStrokeJoin());
  /external/mesa3d/src/glsl/builtins/ir/
round 1 ((function round
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/
transition-property-names.js 2 'This test checks that CSS property names work round trip in the transition property.'
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/
transition-property-names-expected.txt 1 This test checks that CSS property names work round trip in the transition property.
  /bionic/libm/man/
round.3 25 .\" $FreeBSD: src/lib/msun/man/round.3,v 1.6 2005/06/15 19:04:04 ru Exp $
28 .Dt ROUND 3
31 .Nm round ,
34 .Nd round to nearest integral value
40 .Fn round "double x"
47 .Fn round ,
57 absolute value (i.e., they round away from zero).
72 .Fn round
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include/
wmmintrin.h 40 /* Performs 1 round of AES decryption of the first m128i using
41 the second m128i as a round key. */
48 /* Performs the last round of AES decryption of the first m128i
49 using the second m128i as a round key. */
57 /* Performs 1 round of AES encryption of the first m128i using
58 the second m128i as a round key. */
65 /* Performs the last round of AES encryption of the first m128i
66 using the second m128i as a round key. */
81 /* Generates a m128i round key for the input m128i AES cipher key and
82 byte round constant. The second parameter must be a compile tim
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
wmmintrin.h 40 /* Performs 1 round of AES decryption of the first m128i using
41 the second m128i as a round key. */
48 /* Performs the last round of AES decryption of the first m128i
49 using the second m128i as a round key. */
57 /* Performs 1 round of AES encryption of the first m128i using
58 the second m128i as a round key. */
65 /* Performs the last round of AES encryption of the first m128i
66 using the second m128i as a round key. */
81 /* Generates a m128i round key for the input m128i AES cipher key and
82 byte round constant. The second parameter must be a compile tim
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/
wmmintrin.h 40 /* Performs 1 round of AES decryption of the first m128i using
41 the second m128i as a round key. */
48 /* Performs the last round of AES decryption of the first m128i
49 using the second m128i as a round key. */
57 /* Performs 1 round of AES encryption of the first m128i using
58 the second m128i as a round key. */
65 /* Performs the last round of AES encryption of the first m128i
66 using the second m128i as a round key. */
81 /* Generates a m128i round key for the input m128i AES cipher key and
82 byte round constant. The second parameter must be a compile tim
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/
wmmintrin.h 40 /* Performs 1 round of AES decryption of the first m128i using
41 the second m128i as a round key. */
48 /* Performs the last round of AES decryption of the first m128i
49 using the second m128i as a round key. */
57 /* Performs 1 round of AES encryption of the first m128i using
58 the second m128i as a round key. */
65 /* Performs the last round of AES encryption of the first m128i
66 using the second m128i as a round key. */
81 /* Generates a m128i round key for the input m128i AES cipher key and
82 byte round constant. The second parameter must be a compile tim
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include/
wmmintrin.h 40 /* Performs 1 round of AES decryption of the first m128i using
41 the second m128i as a round key. */
48 /* Performs the last round of AES decryption of the first m128i
49 using the second m128i as a round key. */
57 /* Performs 1 round of AES encryption of the first m128i using
58 the second m128i as a round key. */
65 /* Performs the last round of AES encryption of the first m128i
66 using the second m128i as a round key. */
81 /* Generates a m128i round key for the input m128i AES cipher key and
82 byte round constant. The second parameter must be a compile tim
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 121 Round RN 0
339 ;// constant 2 after the Multiplication. The value of Round would be 2
346 MOV Round, #2 ;// Round = 2
351 SMLABB temp1, colOp00, Scale, Round ;// Temp1 = B(c0w0) * Scale + Round
352 SMLABB temp3, colOp02, Scale, Round ;// Temp3 = B(c1w0) * Scale + Round
353 SMLATB temp2, colOp00, Scale, Round ;// Temp2 = T(c0w0) * Scale + Round
    [all...]
  /external/chromium/chrome/common/extensions/docs/images/intermediate/
overview-arch.svg 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="50 182 253 189" width="253pt" height="189pt"><metadata xmlns:dc="http://purl.org/dc/elements/1.1/"><dc:date>2010-01-29 21:50Z</dc:date><!-- Produced by OmniGraffle Professional 5.2.1 --></metadata><defs><font-face font-family="Arial" font-size="12" panose-1="2 11 7 4 2 2 2 2 2 4" units-per-em="1000" underline-position="-105.95703" underline-thickness="104.98047" slope="0" x-height="500" cap-height="750" ascent="905.27344" descent="-211.91406" font-weight="bold"><font-face-src><font-face-name name="Arial-BoldMT"/></font-face-src></font-face><font-face font-family="Arial Black" font-size="12" panose-1="2 11 10 4 2 1 2 2 2 4" units-per-em="1000" underline-position="-125" underline-thickness="60.058594" slope="0" x-height="500" cap-height="750" ascent="1100.58594" descent="-309.57031" font-weight="bold"><font-face-src><font-face-name name="Arial-Black"/></font-face-src></font-face></defs><g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1"><title>Canvas 1</title><g><title>browser</title><path d="M 61 263.77634 L 61 360 L 169 360 L 169 352.78146 L 169 268.32458 L 169 261.10593 L 130.804184 261.10593 L 108.29361 261.10593 C 105.357513 261.10593 102.64653 259.71793 101.18982 257.46881 L 99.355766 254.63712 C 97.899063 252.388 95.18805 251 92.25196 251 L 74.58132 251 C 72.192795 251 69.923607 251.92084 68.369164 253.52074 L 62.969704 259.07855 L 62.969704 259.07855 C 62.378513 259.68698 61.911198 260.37292 61.580395 261.10593 L 61 261.10593 Z" fill="#ccc"/><path d="M 61 263.77634 L 61 360 L 169 360 L 169 352.78146 L 169 268.32458 L 169 261.10593 L 130.804184 261.10593 L 108.29361 261.10593 C 105.357513 261.10593 102.64653 259.71793 101.18982 257.46881 L 99.355766 254.63712 C 97.899063 252.388 95.18805 251 92.25196 251 L 74.58132 251 C 72.192795 251 69.923607 251.92084 68.369164 253.52074 L 62.969704 259.07855 L 62.969704 259.07855 C 62.378513 259.68698 61.911198 260.37292 61.580395 261.10593 L 61 261.10593 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="72" y="266" width="77" height="9" fill="white"/><rect x="72" y="266" width="77" height="9" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="61" y="280" width="108" height="80" fill="white"/><rect x="61" y="280" width="108" height="80" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g><g><title>1ba</title><rect x="154" y="267" width="7.200012" height="7.200012" fill="#f8d22b"/><rect x="154" y="267" width="7.200012" height="7.200012" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g><g><title>bg</title><rect x="126" y="193" width="108" height="20" fill="#c8c8c8"/><rect x="126" y="193" width="108" height="20" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><text transform="translate(131 198)" fill="black"><tspan font-family="Arial" fo (…)
    [all...]
  /bionic/libm/i387/
s_ceilf.S 18 orw $0x0800,%dx /* round towards +oo */
23 flds 8(%ebp); /* round */

Completed in 1538 milliseconds

1 2 3 4 5 6 7 8 91011>>