Searched
full:math (Results
301 -
325 of
2517) sorted by null
<<11121314151617181920>>
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
ResolutionChooserDialog.java | 67 double d = Math.sqrt(rect.width * rect.width + rect.height * rect.height) / size; 68 return (int)Math.round(d); 92 if (Math.round(size) == size) {
|
/dalvik/libcore/security/src/test/java/tests/security/spec/ |
ECFieldFpTest.java | 32 import java.math.BigInteger; 56 args = {java.math.BigInteger.class} 72 args = {java.math.BigInteger.class} 87 args = {java.math.BigInteger.class} 107 args = {java.math.BigInteger.class} 127 args = {java.math.BigInteger.class}
|
/external/dropbear/libtomcrypt/ |
Android.mk | 41 src/math/fp/ltc_ecc_fp_mulmod.c src/math/gmp_desc.c src/math/ltm_desc.c src/math/multi.c \ 42 src/math/rand_prime.c src/math/tfm_desc.c src/misc/base64/base64_decode.c \
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.4.js | 153 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) { 158 hex[index] = Math.floor( n / Math.pow(16,mag) ); 159 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
|
15.1.2.5-1.js | 153 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) { 158 hex[index] = Math.floor( n / Math.pow(16,mag) ); 159 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
|
/frameworks/base/awt/java/awt/geom/ |
RectangularShape.java | 246 double width = Math.abs(cornerX - centerX); 247 double height = Math.abs(cornerY - centerY); 277 int x1 = (int)Math.floor(getMinX()); 278 int y1 = (int)Math.floor(getMinY()); 279 int x2 = (int)Math.ceil(getMaxX()); 280 int y2 = (int)Math.ceil(getMaxY());
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Matrix.java | 246 double rad = Math.toRadians(degrees); 247 float cos = (float)Math.cos(rad); 248 float sin = (float)Math.sin(rad); 259 double rad = Math.toRadians(degrees); 260 float cos = (float)Math.cos(rad); 261 float sin = (float)Math.sin(rad); 540 double rad = Math.toRadians(degrees); 541 float cos = (float)Math.cos(rad); 542 float sin = (float)Math.sin(rad); 556 double rad = Math.toRadians(degrees) [all...] |
/packages/apps/Camera/src/com/android/camera/ |
Util.java | 114 (int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels)); 116 (int) Math.min(Math.floor(w / minSideLength), 117 Math.floor(h / minSideLength)); 273 return (float) Math.sqrt(dx * dx + dy * dy);
|
/bionic/libm/bsdsrc/ |
mathimpl.h | 41 #include <math.h> 69 * Functions internal to the math package, yet not static.
|
/bionic/libm/man/ |
acosh.3 | 45 .In math.h 60 .Xr math 3 . 77 .Xr math 3
|
asinh.3 | 45 .In math.h 60 .Xr math 3 . 73 .Xr math 3
|
atan.3 | 45 .In math.h 58 .Xr math 3 . 75 .Xr math 3 ,
|
atanh.3 | 45 .In math.h 60 .Xr math 3 . 80 .Xr math 3
|
cos.3 | 45 .In math.h 61 .Xr math 3 . 74 .Xr math 3 ,
|
tan.3 | 45 .In math.h 61 .Xr math 3 . 73 .Xr math 3 ,
|
tanh.3 | 45 .In math.h 58 .Xr math 3 . 72 .Xr math 3 ,
|
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
ArcShapeTest.java | 74 final int SQUARE = Math.min(TEST_WIDTH, TEST_HEIGHT); 86 assertEquals((double)SQUARE / 2 / Math.sqrt(2), count, TOLERANCE);
|
OvalShapeTest.java | 69 final int SQUARE = Math.min(TEST_WIDTH, TEST_HEIGHT); 80 assertEquals((double)SQUARE / Math.sqrt(2), count, TOLERANCE);
|
/cts/tests/tests/text/src/android/text/format/cts/ |
FormatterTest.java | 19 import java.math.BigDecimal; 20 import java.math.MathContext;
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
Java6Arrays.java | 50 int copyLength = Math.min(length, original.length - start); 66 int copyLength = Math.min(length, original.length - start);
|
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/ |
BigIntegerNotTest.java | 22 package org.apache.harmony.math.tests.java.math; 29 import java.math.BigInteger; 34 * Class: java.math.BigInteger 45 args = {java.math.BigInteger.class} 71 args = {java.math.BigInteger.class} 97 args = {java.math.BigInteger.class} 123 args = {java.math.BigInteger.class}
|
/external/opencore/oscl/oscl/config/shared/ |
osclconfig_util_check.h | 41 the target platform supports the ANSI C math functions (math.h)
|
/external/skia/include/core/ |
SkFloatingPoint.h | 24 #include <math.h> 28 // If math.h had powf(float, float), I could remove this wrapper
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.2.1-2.js | 65 var TEST_LENGTH = Math.pow(2,10); //Math.pow(2,32);
|
/frameworks/base/awt/java/awt/font/ |
GlyphVector.java | 103 int minX = (int)Math.floor(visualRect.getMinX() + x); 104 int minY = (int)Math.floor(visualRect.getMinY() + y); 105 int width = (int)Math.ceil(visualRect.getMaxX() + x) - minX; 106 int height = (int)Math.ceil(visualRect.getMaxY() + y) - minY; 129 int minX = (int)Math.floor(visualRect.getMinX() + x); 130 int minY = (int)Math.floor(visualRect.getMinY() + y); 131 int width = (int)Math.ceil(visualRect.getMaxX() + x) - minX; 132 int height = (int)Math.ceil(visualRect.getMaxY() + y) - minY;
|
Completed in 81 milliseconds
<<11121314151617181920>>