HomeSort by relevance Sort by last modified time
    Searched refs:rounds (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /libcore/ojluni/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 35 * <p> The parameters consist of a version number, a rounds count, a word
51 private int rounds; field in class:RC5ParameterSpec
56 * rounds and word size (in bits).
59 * @param rounds the number of rounds.
62 public RC5ParameterSpec(int version, int rounds, int wordSize) {
64 this.rounds = rounds;
70 * rounds, word size (in bits), and IV.
77 * @param rounds the number of rounds
    [all...]
  /external/python/cpython3/Tools/pybench/
Numbers.py 7 rounds = 120000 variable in class:CompareIntegers
11 for i in range(self.rounds):
195 for i in range(self.rounds):
203 rounds = 80000 variable in class:CompareFloats
207 for i in range(self.rounds):
391 for i in range(self.rounds):
399 rounds = 60000 variable in class:CompareFloatsIntegers
403 for i in range(self.rounds):
587 for i in range(self.rounds):
595 rounds = 7000 variable in class:CompareLongs
    [all...]
Lists.py 7 rounds = 130000 variable in class:SimpleListManipulation
14 for i in range(self.rounds):
130 for i in range(self.rounds):
137 rounds = 800 variable in class:ListSlicing
144 for i in range(self.rounds):
163 for i in range(self.rounds):
171 rounds = 80000 variable in class:SmallLists
175 for i in range(self.rounds):
294 for i in range(self.rounds):
301 rounds = 2000 variable in class:SimpleListComprehensions
327 rounds = 20000 variable in class:NestedListComprehensions
    [all...]
Imports.py 11 rounds = 40000 variable in class:SecondImport
15 for i in range(self.rounds):
48 for i in range(self.rounds):
56 rounds = 40000 variable in class:SecondPackageImport
60 for i in range(self.rounds):
93 for i in range(self.rounds):
100 rounds = 40000 variable in class:SecondSubmoduleImport
104 for i in range(self.rounds):
137 for i in range(self.rounds):
Dict.py 7 rounds = 80000 variable in class:DictCreation
11 for i in range(self.rounds):
75 for i in range(self.rounds):
82 rounds = 200000 variable in class:DictWithStringKeys
88 for i in range(self.rounds):
164 for i in range(self.rounds):
171 rounds = 150000 variable in class:DictWithFloatKeys
177 for i in range(self.rounds):
253 for i in range(self.rounds):
260 rounds = 20000 variable in class:DictWithIntegerKeys
349 rounds = 100000 variable in class:SimpleDictManipulation
    [all...]
Instances.py 7 rounds = 80000 variable in class:CreateInstances
29 for i in range(self.rounds):
65 for i in range(self.rounds):
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
45 int rounds = 5; local
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; local
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
99 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset)
142 int rounds = 5; local
157 int rounds = 5; local
172 int rounds = 5; local
189 int rounds = 5; local
216 int rounds = 5; local
266 int rounds = 5; local
280 int rounds = 5; local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/aes/
cipher_amd64.go 29 rounds := 10
32 rounds = 10
34 rounds = 12
36 rounds = 14
38 expandKeyAsm(rounds, &key[0], &c.enc[0], &c.dec[0])
72 rounds := 10 // rounds needed for AES128
75 rounds = 12
77 rounds = 14
79 expandKeyAsm(rounds, &key[0], &enc[0], &dec[0]
    [all...]
  /prebuilts/go/linux-x86/src/crypto/aes/
cipher_amd64.go 29 rounds := 10
32 rounds = 10
34 rounds = 12
36 rounds = 14
38 expandKeyAsm(rounds, &key[0], &c.enc[0], &c.dec[0])
72 rounds := 10 // rounds needed for AES128
75 rounds = 12
77 rounds = 14
79 expandKeyAsm(rounds, &key[0], &enc[0], &dec[0]
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.h 19 int rijndaelKeySched(u_int8_t k[RIJNDAEL_MAXKC][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS);
21 int rijndaelKeyEncToDec(u_int8_t W[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS);
23 int rijndaelEncrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS);
26 int rijndaelEncryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int rounds);
29 int rijndaelDecrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS);
32 int rijndaelDecryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int rounds);
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
PasswordUtils.java 48 * @param rounds - number of rounds to run in key generation.
51 public static SecretKey buildPasswordKey(String algorithm, String pw, byte[] salt, int rounds) {
52 return buildCharArrayKey(algorithm, pw.toCharArray(), salt, rounds);
62 * @param rounds - number of rounds to run in key generation.
65 public static String buildPasswordHash(String algorithm, String pw, byte[] salt, int rounds) {
66 SecretKey key = buildPasswordKey(algorithm, pw, salt, rounds);
108 * @param rounds - number of rounds to run in key generation
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/asm/
aes-armv4.pl 70 $rounds="r12";
216 mov $rounds,r0 @ inp
219 ldrb $s0,[$rounds,#3] @ load input data in endian-neutral
220 ldrb $t1,[$rounds,#2] @ manner...
221 ldrb $t2,[$rounds,#1]
222 ldrb $t3,[$rounds,#0]
224 ldrb $s1,[$rounds,#7]
226 ldrb $t1,[$rounds,#6]
228 ldrb $t2,[$rounds,#5]
229 ldrb $t3,[$rounds,#4
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Lists.py 7 rounds = 130000 variable in class:SimpleListManipulation
14 for i in xrange(self.rounds):
130 for i in xrange(self.rounds):
137 rounds = 800 variable in class:ListSlicing
144 for i in xrange(self.rounds):
163 for i in xrange(self.rounds):
171 rounds = 80000 variable in class:SmallLists
175 for i in xrange(self.rounds):
294 for i in xrange(self.rounds):
301 rounds = 20000 variable in class:SimpleListComprehensions
327 rounds = 20000 variable in class:NestedListComprehensions
    [all...]
Imports.py 11 rounds = 40000 variable in class:SecondImport
15 for i in xrange(self.rounds):
48 for i in xrange(self.rounds):
56 rounds = 40000 variable in class:SecondPackageImport
60 for i in xrange(self.rounds):
93 for i in xrange(self.rounds):
100 rounds = 40000 variable in class:SecondSubmoduleImport
104 for i in xrange(self.rounds):
137 for i in xrange(self.rounds):
Numbers.py 7 rounds = 120000 variable in class:CompareIntegers
11 for i in xrange(self.rounds):
195 for i in xrange(self.rounds):
203 rounds = 80000 variable in class:CompareFloats
207 for i in xrange(self.rounds):
391 for i in xrange(self.rounds):
399 rounds = 60000 variable in class:CompareFloatsIntegers
403 for i in xrange(self.rounds):
587 for i in xrange(self.rounds):
595 rounds = 70000 variable in class:CompareLongs
    [all...]
Dict.py 7 rounds = 80000 variable in class:DictCreation
11 for i in xrange(self.rounds):
75 for i in xrange(self.rounds):
82 rounds = 200000 variable in class:DictWithStringKeys
88 for i in xrange(self.rounds):
164 for i in xrange(self.rounds):
171 rounds = 150000 variable in class:DictWithFloatKeys
177 for i in xrange(self.rounds):
253 for i in xrange(self.rounds):
260 rounds = 200000 variable in class:DictWithIntegerKeys
349 rounds = 100000 variable in class:SimpleDictManipulation
    [all...]
Instances.py 7 rounds = 80000 variable in class:CreateInstances
29 for i in xrange(self.rounds):
65 for i in xrange(self.rounds):
With.py 8 rounds = 80000 variable in class:WithFinally
20 for i in xrange(self.rounds):
46 for i in xrange(self.rounds):
54 rounds = 80000 variable in class:TryFinally
68 for i in xrange(self.rounds):
153 for i in xrange(self.rounds):
161 rounds = 100000 variable in class:WithRaiseExcept
174 for i in xrange(self.rounds):
189 for i in xrange(self.rounds):
  /external/python/cpython2/Tools/pybench/
Lists.py 7 rounds = 130000 variable in class:SimpleListManipulation
14 for i in xrange(self.rounds):
130 for i in xrange(self.rounds):
137 rounds = 800 variable in class:ListSlicing
144 for i in xrange(self.rounds):
163 for i in xrange(self.rounds):
171 rounds = 80000 variable in class:SmallLists
175 for i in xrange(self.rounds):
294 for i in xrange(self.rounds):
301 rounds = 2000 variable in class:SimpleListComprehensions
327 rounds = 20000 variable in class:NestedListComprehensions
    [all...]
Imports.py 11 rounds = 40000 variable in class:SecondImport
15 for i in xrange(self.rounds):
48 for i in xrange(self.rounds):
56 rounds = 40000 variable in class:SecondPackageImport
60 for i in xrange(self.rounds):
93 for i in xrange(self.rounds):
100 rounds = 40000 variable in class:SecondSubmoduleImport
104 for i in xrange(self.rounds):
137 for i in xrange(self.rounds):
Numbers.py 7 rounds = 120000 variable in class:CompareIntegers
11 for i in xrange(self.rounds):
195 for i in xrange(self.rounds):
203 rounds = 80000 variable in class:CompareFloats
207 for i in xrange(self.rounds):
391 for i in xrange(self.rounds):
399 rounds = 60000 variable in class:CompareFloatsIntegers
403 for i in xrange(self.rounds):
587 for i in xrange(self.rounds):
595 rounds = 7000 variable in class:CompareLongs
    [all...]
Dict.py 7 rounds = 80000 variable in class:DictCreation
11 for i in xrange(self.rounds):
75 for i in xrange(self.rounds):
82 rounds = 200000 variable in class:DictWithStringKeys
88 for i in xrange(self.rounds):
164 for i in xrange(self.rounds):
171 rounds = 150000 variable in class:DictWithFloatKeys
177 for i in xrange(self.rounds):
253 for i in xrange(self.rounds):
260 rounds = 20000 variable in class:DictWithIntegerKeys
349 rounds = 100000 variable in class:SimpleDictManipulation
    [all...]
Instances.py 7 rounds = 80000 variable in class:CreateInstances
29 for i in xrange(self.rounds):
65 for i in xrange(self.rounds):
  /system/extras/libfec/include/fec/
ecc.h 44 /* rounds up x to the nearest multiple of y */
51 inline uint64_t fec_ecc_interleave(uint64_t offset, int rsn, uint64_t rounds)
53 return (offset / rsn) + (offset % rsn) * rounds * FEC_BLOCKSIZE;
  /external/tensorflow/tensorflow/core/common_runtime/
graph_optimizer.cc 47 for (int rounds = 0; rounds < kMaxRounds; ++rounds) {

Completed in 315 milliseconds

1 2 3 4 5 6 7 8 9