Home
last modified time | relevance | path

Searched refs:TEST_SIZE (Results 1 – 8 of 8) sorted by relevance

/third_party/openssl/test/
Digetest.c23 # define TEST_SIZE 128 macro
26 # if BIG_TEST_SIZE < TEST_SIZE
27 # error BIG_TEST_SIZE is smaller than TEST_SIZE
232 AES_ige_encrypt(plaintext, ciphertext, TEST_SIZE, &key, iv, AES_ENCRYPT); in test_ige_enc_dec()
236 AES_ige_encrypt(ciphertext, checktext, TEST_SIZE, &key, iv, AES_DECRYPT); in test_ige_enc_dec()
238 return TEST_mem_eq(checktext, TEST_SIZE, plaintext, TEST_SIZE); in test_ige_enc_dec()
250 AES_ige_encrypt(plaintext, ciphertext, TEST_SIZE / 2, &key, iv, in test_ige_enc_chaining()
252 AES_ige_encrypt(plaintext + TEST_SIZE / 2, in test_ige_enc_chaining()
253 ciphertext + TEST_SIZE / 2, TEST_SIZE / 2, in test_ige_enc_chaining()
258 AES_ige_encrypt(ciphertext, checktext, TEST_SIZE, &key, iv, AES_DECRYPT); in test_ige_enc_chaining()
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/mman/
Dmincore.c24 #define TEST_SIZE 4096 macro
56 unsigned char vec[TEST_SIZE]; in mincore_0100()
58 ret = mincore(start, TEST_SIZE, vec); in mincore_0100()
71 char *memory = (char *)malloc(TEST_SIZE); in mincore_0200()
77 unsigned char vec[TEST_SIZE]; in mincore_0200()
79 int ret = mincore(memory, TEST_SIZE, vec); in mincore_0200()
82 ret = mincore(memory, TEST_SIZE, NULL); in mincore_0200()
Dmunlock.c20 #define TEST_SIZE 4096 macro
29 char *memory = (char *)malloc(TEST_SIZE); in munlock_0100()
35 memset(memory, 0x0, TEST_SIZE); in munlock_0100()
36 int ret = mlock(memory, TEST_SIZE); in munlock_0100()
39 ret = munlock(memory, TEST_SIZE); in munlock_0100()
/third_party/python/Modules/_decimal/tests/
Drandfloat.py8 TEST_SIZE = 2 variable
20 for i in range(10 * TEST_SIZE):
57 for j in range(TEST_SIZE):
93 for i in range(TEST_SIZE):
108 for j in range(TEST_SIZE):
116 for i in range(100 * TEST_SIZE):
130 for j in range(TEST_SIZE):
/third_party/musl/libc-test/src/functionalext/supplement/fortify/fortify_gtest/
Dfortify_strcat_chk_test.cpp4 constexpr size_t TEST_SIZE = 10; variable
25 char src[TEST_SIZE] = { 0 };
41 char src[TEST_SIZE] = { 0 };
56 char src[TEST_SIZE] = { 0 };
/third_party/musl/libc-test/src/functionalext/supplement/legacy/
Dlutimes.c22 #define TEST_SIZE 2 macro
35 static struct timeval tv[TEST_SIZE] = {{0L, 0L}, {0L, 0L}}; in lutimes_0100()
63 static struct timeval tv[TEST_SIZE] = {{0L, 0L}, {0L, 0L}}; in lutimes_0200()
77 static struct timeval tv[TEST_SIZE] = {{0L, 0L}, {0L, 0L}}; in lutimes_time64_0100()
/third_party/python/Lib/test/
Dtest_strtod.py84 TEST_SIZE = 10 variable
115 for i in range(TEST_SIZE):
151 for i in range(100 * TEST_SIZE):
201 for j in range(TEST_SIZE):
209 for i in range(10 * TEST_SIZE):
223 for j in range(TEST_SIZE):
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
Dthread_mutex_test.cpp6 constexpr size_t TEST_SIZE = 65536; variable
163 std::vector<pthread_mutex_t> mutexes(TEST_SIZE);