OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:multiply
(Results
51 - 75
of
579
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
DHParametersGenerator.java
51
p = q.
multiply
(TWO).add(ONE);
/dalvik/vm/mterp/x86/
OP_MUL_LONG.S
3
* Signed 64-bit integer
multiply
.
OP_MUL_LONG_2ADDR.S
3
* Signed 64-bit integer
multiply
, 2-addr version
/external/dropbear/libtommath/
bn_mp_div_3.c
41
/*
multiply
w by [1/3] */
bn_mp_mul_d.c
18
/*
multiply
by a digit */
bn_mp_gcd.c
91
/*
multiply
by 2**k which we divided out at the beginning */
/external/jpeg/
jdct.h
148
/*
Multiply
an INT32 variable by an INT32 constant to yield an INT32 result.
150
* 16 bits wide, so that a 16x16->32 bit
multiply
can be used instead of a
151
* full 32x32
multiply
. This provides a useful speedup on many machines.
152
* Unfortunately there is no way to specify a 16x16->32
multiply
portably
/external/proguard/src/proguard/evaluation/value/
UnknownDoubleValue.java
75
public DoubleValue
multiply
(DoubleValue other)
method in class:UnknownDoubleValue
UnknownFloatValue.java
75
public FloatValue
multiply
(FloatValue other)
method in class:UnknownFloatValue
ParticularIntegerValue.java
122
public IntegerValue
multiply
(IntegerValue other)
method in class:ParticularIntegerValue
124
return other.
multiply
(this);
250
public IntegerValue
multiply
(ParticularIntegerValue other)
method in class:ParticularIntegerValue
ParticularLongValue.java
95
public LongValue
multiply
(LongValue other)
method in class:ParticularLongValue
97
return other.
multiply
(this);
183
public LongValue
multiply
(ParticularLongValue other)
method in class:ParticularLongValue
LongValue.java
103
public LongValue
multiply
(LongValue other)
method in class:LongValue
106
return other.
multiply
(this);
260
public LongValue
multiply
(SpecificLongValue other)
method in class:LongValue
416
public LongValue
multiply
(ParticularLongValue other)
method in class:LongValue
418
return
multiply
((SpecificLongValue)other);
CompositeDoubleValue.java
33
public static final byte
MULTIPLY
= '*';
CompositeFloatValue.java
33
public static final byte
MULTIPLY
= '*';
CompositeIntegerValue.java
33
public static final byte
MULTIPLY
= '*';
/external/skia/src/effects/
SkPorterDuff.cpp
30
MAKE_PAIR(
Multiply
),
/external/webkit/WebCore/manual-tests/
input-starved-by-timers.html
9
var targetLatency = 10000; //
Multiply
timers until it takes this much to fire all their callbacks.
/external/webkit/WebCore/svg/
SVGMatrix.idl
35
[Custom] SVGMatrix
multiply
(in SVGMatrix secondMatrix);
/frameworks/base/graphics/java/android/graphics/
PorterDuff.java
54
MULTIPLY
(14),
/external/openssl/crypto/bn/
bn_kron.c
140
* to compute the Jacobi symbol (A/B) and
multiply
it by 'ret' */
163
/*
multiply
'ret' by $(-1)^{(B^2-1)/8}$ */
168
/*
multiply
'ret' by $(-1)^{(A-1)(B-1)/4}$ */
/external/netperf/
netcpu_kstat10.c
313
/*
multiply
by 100 and divide by total and you get whole
314
percentages.
multiply
by 1000 and divide by total and you get
315
tenths of percentages.
multiply
by 10000 and divide by total and
504
/*
multiply
by 100 and divide by total and you get whole
505
percentages.
multiply
by 1000 and divide by total and you get
506
tenths of percentages.
multiply
by 10000 and divide by total
/bionic/libm/src/
s_fmaf.c
31
* Fused
multiply
-add: Compute x * y + z with a single rounding error.
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/agreement/
DHAgreement.java
84
return message.modPow(key.getX(), dhParams.getP()).
multiply
(pub.getY().modPow(privateValue, dhParams.getP())).mod(dhParams.getP());
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLVertex.java
83
transform.
multiply
(this, temp);
/external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_map.c
58
/*
multiply
against x/y */
Completed in 297 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>