Searched refs:preComp (Results 1 - 3 of 3) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafPreCompInfo.java15 private ECPoint.F2m[] preComp = null; field in class:WTauNafPreCompInfo
19 * @param preComp Array holding the precomputed <code>ECPoint.F2m</code>s
24 WTauNafPreCompInfo(ECPoint.F2m[] preComp) argument
26 this.preComp = preComp;
37 return preComp;
H A DWNafPreCompInfo.java15 private ECPoint[] preComp = null; field in class:WNafPreCompInfo
27 return preComp;
30 protected void setPreComp(ECPoint[] preComp) argument
32 this.preComp = preComp;
H A DWNafMultiplier.java169 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[
[all...]

Completed in 49 milliseconds