Home
last modified time | relevance | path

Searched refs:cLen (Results 1 – 2 of 2) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java887 int cLen = (aDeg + bDeg + 62) >>> 6; in modMultiplyLD() local
900 long[] c0 = new long[cLen]; in modMultiplyLD()
906 return reduceResult(c0, 0, cLen, m, ks); in modMultiplyLD()
947 long[] c = new long[cLen]; in modMultiplyLD()
964 shiftUp(c, 0, cLen, 8); in modMultiplyLD()
978 shiftUp(c, 0, cLen, 8); in modMultiplyLD()
985 return reduceResult(c, 0, cLen, m, ks); in modMultiplyLD()
1019 int cLen = (aDeg + bDeg + 62) >>> 6; in modMultiply() local
1032 long[] c0 = new long[cLen]; in modMultiply()
1038 return reduceResult(c0, 0, cLen, m, ks); in modMultiply()
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/
DB64Code.java112 int cLen=((bLen+2)/3)*4; in encode() local
113 char c[]=new char[cLen]; in encode()
175 int cLen=((bLen+2)/3)*4; in encode() local
176 cLen+=2+2*(cLen/76); in encode()
177 char c[]=new char[cLen]; in encode()