Searched refs:shiftUpBit (Results 1 – 9 of 9) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
D | Nat.java | 655 public static int shiftUpBit(int len, int[] z, int c) in shiftUpBit() method in Nat 666 public static int shiftUpBit(int len, int[] z, int zOff, int c) in shiftUpBit() method in Nat 677 public static int shiftUpBit(int len, int[] x, int c, int[] z) in shiftUpBit() method in Nat 688 public static int shiftUpBit(int len, int[] x, int xOff, int c, int[] z, int zOff) in shiftUpBit() method in Nat 803 shiftUpBit(extLen, zz, x[0] << 31); in square() 827 shiftUpBit(extLen, zz, zzOff, x[xOff] << 31); in square()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP521R1Field.java | 137 int c = Nat.shiftUpBit(16, x, x16 << 23, z) | (x16 << 1); in twice()
|
D | SecP256K1Field.java | 173 int c = Nat.shiftUpBit(8, x, 0, z); in twice()
|
D | SecP224K1Field.java | 172 int c = Nat.shiftUpBit(7, x, 0, z); in twice()
|
D | SecP192K1Field.java | 171 int c = Nat.shiftUpBit(6, x, 0, z); in twice()
|
D | SecP192R1Field.java | 240 int c = Nat.shiftUpBit(6, x, 0, z); in twice()
|
D | SecP224R1Field.java | 246 int c = Nat.shiftUpBit(7, x, 0, z); in twice()
|
D | SecP256R1Field.java | 239 int c = Nat.shiftUpBit(8, x, 0, z); in twice()
|
D | SecP384R1Field.java | 238 int c = Nat.shiftUpBit(12, x, 0, z); in twice()
|