Searched defs:zOff (Results 1 - 3 of 3) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
H A DOAEPEncoding.java324 int zOff,
339 mgf1Hash.update(Z, zOff, zLen);
352 mgf1Hash.update(Z, zOff, zLen);
322 maskGeneratorFunction1( byte[] Z, int zOff, int zLen, int length) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DIntArray.java583 // private static void deInterleave(int[] x, int xOff, int[] z, int zOff, int count, int rounds)
587 // z[zOff + i] = deInterleave(x[zOff + i], rounds);
704 private static void interleave(int[] x, int xOff, int[] z, int zOff, int count, int rounds) argument
708 z[zOff + i] = interleave(x[xOff + i], rounds);
H A DLongArray.java582 private static long shiftUp(long[] x, int xOff, long[] z, int zOff, int count, int shift) argument
589 z[zOff + i] = (next << shift) | prev;
707 private static void add(long[] x, int xOff, long[] y, int yOff, long[] z, int zOff, int count) argument
711 z[zOff + i] = x[xOff + i] ^ y[yOff + i];
1323 // private static void deInterleave(long[] x, int xOff, long[] z, int zOff, int count, int rounds)
1327 // z[zOff + i] = deInterleave(x[zOff + i], rounds);
1537 private static void interleave(long[] x, int xOff, long[] z, int zOff, int count, int width) argument
1542 interleave3(x, xOff, z, zOff, count);
1545 interleave5(x, xOff, z, zOff, coun
1556 interleave3(long[] x, int xOff, long[] z, int zOff, int count) argument
1596 interleave5(long[] x, int xOff, long[] z, int zOff, int count) argument
1635 interleave7(long[] x, int xOff, long[] z, int zOff, int count) argument
1670 interleave2_n(long[] x, int xOff, long[] z, int zOff, int count, int rounds) argument
[all...]

Completed in 86 milliseconds