HomeSort by relevance Sort by last modified time
    Searched full:math (Results 851 - 875 of 2517) sorted by null

<<31323334353637383940>>

  /dalvik/dx/src/com/android/dx/dex/cf/
CodeStatistics.java 157 / (runningTotalInsns + Math.abs(runningDeltaInsns)))),
166 + Math.abs(dexRunningDeltaInsns)))),
  /dalvik/libcore/security/src/test/java/tests/security/spec/
ECParameterSpecTest.java 26 import java.math.BigInteger;
70 args = {java.security.spec.EllipticCurve.class, java.security.spec.ECPoint.class, java.math.BigInteger.class, int.class}
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FingerPaint.java 102 float dx = Math.abs(x - mX);
103 float dy = Math.abs(y - mY);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LabelView.java 149 result = Math.min(result, specSize);
176 result = Math.min(result, specSize);
  /development/samples/Snake/src/com/example/android/snake/
TileView.java 101 mXTileCount = (int) Math.floor(w / mTileSize);
102 mYTileCount = (int) Math.floor(h / mTileSize);
  /external/bluetooth/glib/docs/reference/glib/
changes.sgml 35 url="http://www.math.keio.ac.jp/~matumoto/emt.html">http://www.math.keio.ac.jp/~matumoto/emt.html</ulink>.
  /external/bluetooth/glib/docs/reference/glib/tmpl/
random_numbers.sgml 13 url="http://www.math.keio.ac.jp/~matumoto/emt.html"
14 >www.math.keio.ac.jp/~matumoto/emt.html</ulink>.
  /external/opencore/doc/oscl_html/
oscl__math_8h.html 9 <hr><h1>oscl_math.h File Reference</h1>Provides math functions.
33 Provides math functions.
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_gamma.c 27 #include <math.h> /* Used for calculating gamma ramps */
29 /* Math routines from uClibc: http://www.uclibc.org */
  /external/v8/test/mjsunit/
debug-conditional-breakpoints.js 95 Debug.changeBreakPointCondition(bp, 'Math.sin(Math.PI/2) > 1');
fuzz-natives.js 86 var rand = Math.floor(Math.random() * (kArgObjects - i));
number-tostring.js 112 assertEquals("4294967296", Math.pow(2,32).toString());
113 assertEquals("ffffffff", (Math.pow(2,32)-1).toString(16));
114 assertEquals("11111111111111111111111111111111", (Math.pow(2,32)-1).toString(2));
121 assertEquals("100000000000000000000000000000000", Math.pow(2,32).toString(2));
122 assertEquals("100000000000000000000000000000001", (Math.pow(2,32) + 1).toString(2));
126 assertEquals("-11111111111111111111111111111111", (-(Math.pow(2,32)-1)).toString(2));
128 assertEquals("-100000000000000000000000000000000", (-Math.pow(2,32)).toString(2));
129 assertEquals("-100000000000000000000000000000001", (-(Math.pow(2,32) + 1)).toString(2));
substr.js 75 var w = Math.random() * 42; // Allocate something new in new-space.
93 var w = Math.random() * 42; // Allocate something new in new-space.
undeletable-functions.js 58 CheckJSCSemantics(Math, array, "Math1");
64 CheckDontDelete(Math, array, "Math2");
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.5-3.js 66 array[array.length] = new Date( TIME_2000 * Math.PI );
72 array[array.length] = new Date( TIME_1900 * Math.PI );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.2-1.js 58 "Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000",
60 Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000 );
15.9.5.2.js 58 "Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000",
60 Math.abs(Date.parse(now.toString()) - now.valueOf()) < 1000 );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.3.js 60 var mymath = Math;
88 "mymath = Math; mymath.valueOf = Object.prototype.valueOf; mymath.valueOf()",
  /external/webkit/JavaScriptCore/wtf/
DateMath.h 45 #include <math.h>
56 // Not really math related, but this is currently the only shared place to put these.
  /external/webkit/JavaScriptCore/wtf/wince/
mt19937ar.c 40 http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
41 email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
argument-types.js 43 test('navigator.geolocation.getCurrentPosition(Math.abs)', false);
55 test('navigator.geolocation.getCurrentPosition(emptyFunction, Math.abs)', false);
  /external/webkit/SunSpider/tests/sunspider-0.9/
access-nbody.js 107 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
147 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 107 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
147 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
  /external/webkit/WebCore/inspector/front-end/
Color.js 196 var max = Math.max(r, g, b);
197 var min = Math.min(r, g, b);
221 h = Math.round(h);
222 s = Math.round(s*100);
223 l = Math.round(l*100);
245 var r = Math.round(hueToRGB(p, q, tr) * 255);
246 var g = Math.round(hueToRGB(p, q, tg) * 255);
247 var b = Math.round(hueToRGB(p, q, tb) * 255);
TimelineGrid.js 60 var dividerCount = Math.round(this._dividersElement.offsetWidth / 64);
127 if (!isNaN(percentStyleLeft) && Math.abs(percentStyleLeft - percentLeft) < 0.1)

Completed in 803 milliseconds

<<31323334353637383940>>