HomeSort by relevance Sort by last modified time
    Searched defs:multiply (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECMultiplier.java 18 ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo); method in interface:ECMultiplier
FpNafMultiplier.java 12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
14 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo) method in class:FpNafMultiplier
19 BigInteger h = e.multiply(BigInteger.valueOf(3));
WTauNafMultiplier.java 15 * @param p The ECPoint.F2m to multiply.
16 * @param k The integer by which to multiply <code>k</code>.
19 public ECPoint multiply(ECPoint point, BigInteger k, PreCompInfo preCompInfo) method in class:WTauNafMultiplier
44 * @param p The ECPoint.F2m to multiply.
77 * @param p The ECPoint.F2m to multiply.
WNafMultiplier.java 90 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo) method in class:WNafMultiplier
  /frameworks/rs/
rsMatrix2x2.h 44 void multiply(const rs_matrix2x2 *rhs) { function in struct:android::renderscript::Matrix2x2
rsMatrix3x3.h 44 void multiply(const rs_matrix3x3 *rhs) { function in struct:android::renderscript::Matrix3x3
rsMatrix4x4.h 60 void multiply(const rs_matrix4x4 *rhs) { function in struct:android::renderscript::Matrix4x4
68 multiply(&tmp);
73 multiply(&tmp);
78 multiply(&tmp);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
M4.java 38 public void multiply(GLVertex src, GLVertex dest) { method in class:M4
44 public M4 multiply(M4 other) { method in class:M4
GLVertex.java 83 transform.multiply(this, temp);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSMatrix.cpp 92 PassRefPtr<CSSMatrix> CSSMatrix::multiply(CSSMatrix* secondMatrix) const function in class:WebCore::CSSMatrix
97 return CSSMatrix::create(TransformationMatrix(m_matrix).multiply(secondMatrix->m_matrix));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGMatrix.h 99 SVGMatrix multiply(const SVGMatrix& other) function in class:WebCore::SVGMatrix
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrameStub.cpp 67 void FFTFrame::multiply(const FFTFrame& frame) function in class:WebCore::FFTFrame
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables1kGCMExponentiator.java 33 GCMUtil.multiply(y, (byte[])lookupPowX2.elementAt(bit));
51 GCMUtil.multiply(tmp, tmp);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2.js 172 mat2.multiply = function (out, a, b) {
183 * Alias for {@link mat2.multiply}
186 mat2.mul = mat2.multiply;
mat2d.js 154 mat2d.multiply = function (out, a, b) {
170 * Alias for {@link mat2d.multiply}
173 mat2d.mul = mat2d.multiply;
quat.js 139 quat.multiply = function(out, a, b) {
151 * Alias for {@link quat.multiply}
154 quat.mul = quat.multiply;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp 101 void FFTFrame::multiply(const FFTFrame& frame) function in class:WebCore::FFTFrame
115 // Complex multiply
118 // Multiply the packed DC/nyquist component
  /external/chromium_org/third_party/WebKit/Source/wtf/
FunctionalTest.cpp 68 static int multiply(int x, int y) function in namespace:__anon13689
80 Function<int ()> multiplyFourByTwoFunction = bind(multiply, 4, 2);
  /external/chromium_org/third_party/libwebp/dsp/
upsampling.c 286 static WEBP_INLINE uint8_t multiply(uint8_t x, uint32_t m) { function
297 const uint8_t r = multiply(dither_hi(rgba4444[2 * i + 0]), mult);
298 const uint8_t g = multiply(dither_lo(rgba4444[2 * i + 0]), mult);
299 const uint8_t b = multiply(dither_hi(rgba4444[2 * i + 1]), mult);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 129 public UnsignedInteger multiply(UnsignedInteger val) { method in class:UnsignedInteger
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 91 public abstract DoubleValue multiply(DoubleValue other); method in class:DoubleValue
171 public DoubleValue multiply(SpecificDoubleValue other) method in class:DoubleValue
173 return multiply((DoubleValue)other);
274 public DoubleValue multiply(ParticularDoubleValue other) method in class:DoubleValue
276 return multiply((SpecificDoubleValue)other);
FloatValue.java 91 public abstract FloatValue multiply(FloatValue other); method in class:FloatValue
171 public FloatValue multiply(SpecificFloatValue other) method in class:FloatValue
173 return multiply((FloatValue)other);
274 public FloatValue multiply(ParticularFloatValue other) method in class:FloatValue
276 return multiply((SpecificFloatValue)other);
ParticularDoubleValue.java 95 public DoubleValue multiply(DoubleValue other) method in class:ParticularDoubleValue
97 return other.multiply(this);
149 public DoubleValue multiply(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 95 public FloatValue multiply(FloatValue other) method in class:ParticularFloatValue
97 return other.multiply(this);
149 public FloatValue multiply(ParticularFloatValue other) method in class:ParticularFloatValue
SpecificDoubleValue.java 75 public DoubleValue multiply(DoubleValue other) method in class:SpecificDoubleValue
77 return other.multiply(this);
129 public DoubleValue multiply(SpecificDoubleValue other) method in class:SpecificDoubleValue
131 return new CompositeDoubleValue(this, CompositeDoubleValue.MULTIPLY, other);

Completed in 1893 milliseconds

1 2 3 4 5 6