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

/libcore/luni/src/main/java/javax/crypto/spec/
H A DRC5ParameterSpec.java30 private final int rounds; field in class:RC5ParameterSpec
40 * @param rounds
45 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument
47 this.rounds = rounds;
63 * @param rounds
73 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) { argument
81 this.rounds = rounds;
98 * @param rounds
112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC5ParameterSpecTest.java38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
45 int rounds = 5;
50 new RC5ParameterSpec(version, rounds, wordSize, null);
57 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
86 int rounds = 5;
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
99 new RC5ParameterSpec(version, rounds, wordSiz
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DSemaphoreTest.java559 final int rounds = 4;
563 for (int i = 0; i < rounds; i++) {
571 for (int i = 0; i < rounds; i++) {

Completed in 45 milliseconds