OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:preComp
(Results
1 - 3
of
3
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
WTauNafPreCompInfo.java
15
private ECPoint.F2m[]
preComp
= null;
19
* @param
preComp
Array holding the precomputed <code>ECPoint.F2m</code>s
24
WTauNafPreCompInfo(ECPoint.F2m[]
preComp
)
26
this.
preComp
=
preComp
;
37
return
preComp
;
WNafPreCompInfo.java
15
private ECPoint[]
preComp
= null;
27
return
preComp
;
30
protected void setPreComp(ECPoint[]
preComp
)
32
this.
preComp
=
preComp
;
WNafMultiplier.java
169
ECPoint[]
preComp
= wnafPreCompInfo.getPreComp();
173
if (
preComp
== null)
177
preComp
= new ECPoint[]{ p };
182
preCompLen =
preComp
.length;
193
// Precomputation array must be made bigger, copy existing
preComp
194
// array into the larger new
preComp
array
195
ECPoint[] oldPreComp =
preComp
;
196
preComp
= new ECPoint[reqPreCompLen];
197
System.arraycopy(oldPreComp, 0,
preComp
, 0, preCompLen);
204
preComp
[i] = twiceP.add(preComp[i - 1])
[
all
...]
Completed in 49 milliseconds