Searched defs:math (Results 1 - 25 of 102) sorted by relevance

12345

/external/guava/guava/src/com/google/common/math/
H A Dpackage-info.java18 * Arithmetic functions operating on primitive values and {@link java.math.BigInteger} instances.
24 package com.google.common.math;
H A DMathPreconditions.java17 package com.google.common.math;
23 import java.math.BigInteger;
26 * A collection of preconditions for math functions.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DPreCompInfo.java1 package org.bouncycastle.math.ec;
H A DWTauNafPreCompInfo.java1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
21 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
32 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
H A DZTauElement.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
H A DECConstants.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
H A DECMultiplier.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
H A DFpNafMultiplier.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
H A DECAlgorithms.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
H A DWNafMultiplier.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
H A DWNafPreCompInfo.java1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
20 * {@link org.bouncycastle.math.ec.multiplier.WNafMultiplier.multiply()
H A DWTauNafMultiplier.java1 package org.bouncycastle.math.ec;
3 import java.math.BigInteger;
12 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
41 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
73 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_srgb.py42 import math namespace
49 return math.pow((x + 0.055) / 1.055, 2.4)
54 return 1.055 * math.pow(x, 0.41666) - 0.055
/external/jmonkeyengine/engine/src/test/jme3test/math/
H A DTestHalfFloat.java33 package jme3test.math;
35 import com.jme3.math.FastMath;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_srgb.py42 import math namespace
49 return math.pow((x + 0.055) / 1.055, 2.4)
54 return 1.055 * math.pow(x, 0.41666) - 0.055
/external/guava/guava-gwt/test/com/google/common/math/
H A DTestModuleEntryPoint.java17 package com.google.common.math;
/external/guava/guava-tests/test/com/google/common/math/
H A DDoubleUtilsTest.java1 package com.google.common.math;
3 import static com.google.common.math.MathTesting.ALL_BIGINTEGER_CANDIDATES;
4 import static com.google.common.math.MathTesting.ALL_DOUBLE_CANDIDATES;
5 import static com.google.common.math.MathTesting.EXPONENTS;
6 import static com.google.common.math.MathTesting.FINITE_DOUBLE_CANDIDATES;
8 import java.math.BigInteger;
/external/mdnsresponder/mDNSPosix/
H A Dparselog.py58 import math # for pi namespace
190 #c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,5,0,2*math.pi,1)
191 c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,typesize/4,0,2*math.pi,1)
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DAbstractTriangle.java33 package com.jme3.math;
H A DRectangle.java33 package com.jme3.math;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_tapify.py11 import sys,string,os,re,math,numpy namespace
18 return 1/ math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))
22 return int(math.floor(b))
24 return int(math.ceil(b))
39 affine = [[math.cos(theta),-math.sin(theta)],
40 [math.sin(theta),math.cos(theta)]]
/external/llvm/utils/lit/lit/
H A DUtil.py96 import itertools, math namespace
103 power = int(math.ceil(math.log(maxValue, 10)))
106 N = int(math.ceil(maxValue / barH))
125 pDigits = int(math.ceil(math.log(maxValue, 10)))
129 cDigits = int(math.ceil(math.log(len(items), 10)))
/external/llvm/utils/release/
H A DfindRegressions-simple.py2 import re, string, sys, os, time, math namespace
106 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
109 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
112 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
/external/skia/tools/
H A Dgenerate_fir_coeff.py10 import math namespace
15 return math.erf(n / math.sqrt(2))
42 sample_offsets = [math.modf((float(subpxl_index)/subpxls_per_pixel + 1.0/(2.0*subpxls_per_pixel))*samples_per_pixel) for subpxl_index in range(subpxls_per_pixel)]
64 current_sample_right = math.floor(current_sample_left + 1)
106 # * our math was wildy wrong
/external/chromium_org/tools/perf/benchmarks/
H A Ddom_perf.py6 import math namespace
27 log_sum = sum(map(math.log, new_values))
29 mean = math.pow(math.e, (log_sum / len(new_values)))

Completed in 610 milliseconds

12345