Home
last modified time | relevance | path

Searched refs:zzOff (Results 1 – 4 of 4) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat192.java402 public static void mul(int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff) in mul() argument
414 zz[zzOff + 0] = (int)c; in mul()
417 zz[zzOff + 1] = (int)c; in mul()
420 zz[zzOff + 2] = (int)c; in mul()
423 zz[zzOff + 3] = (int)c; in mul()
426 zz[zzOff + 4] = (int)c; in mul()
429 zz[zzOff + 5] = (int)c; in mul()
431 zz[zzOff + 6] = (int)c; in mul()
436 ++zzOff; in mul()
438 c += x_i * y_0 + (zz[zzOff + 0] & M); in mul()
[all …]
DNat256.java511 public static void mul(int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff) in mul() argument
525 zz[zzOff + 0] = (int)c; in mul()
528 zz[zzOff + 1] = (int)c; in mul()
531 zz[zzOff + 2] = (int)c; in mul()
534 zz[zzOff + 3] = (int)c; in mul()
537 zz[zzOff + 4] = (int)c; in mul()
540 zz[zzOff + 5] = (int)c; in mul()
543 zz[zzOff + 6] = (int)c; in mul()
546 zz[zzOff + 7] = (int)c; in mul()
548 zz[zzOff + 8] = (int)c; in mul()
[all …]
DNat224.java406 public static void mul(int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff) in mul() argument
419 zz[zzOff + 0] = (int)c; in mul()
422 zz[zzOff + 1] = (int)c; in mul()
425 zz[zzOff + 2] = (int)c; in mul()
428 zz[zzOff + 3] = (int)c; in mul()
431 zz[zzOff + 4] = (int)c; in mul()
434 zz[zzOff + 5] = (int)c; in mul()
437 zz[zzOff + 6] = (int)c; in mul()
439 zz[zzOff + 7] = (int)c; in mul()
444 ++zzOff; in mul()
[all …]
DNat.java434 public static void mul(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff) in mul() argument
436 zz[zzOff + len] = mulWord(len, x[xOff], y, yOff, zz, zzOff); in mul()
440 zz[zzOff + i + len] = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff + i); in mul()
457 public static int mulAddTo(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff) in mulAddTo() argument
462 long c = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff) & M; in mulAddTo()
463 c += zc + (zz[zzOff + len] & M); in mulAddTo()
464 zz[zzOff + len] = (int)c; in mulAddTo()
466 ++zzOff; in mulAddTo()
806 public static void square(int len, int[] x, int xOff, int[] zz, int zzOff) in square() argument
815 zz[zzOff + --k] = (c << 31) | (int)(p >>> 33); in square()
[all …]