HomeSort by: relevance | last modified time | path
    Searched refs:test_random_state (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/test/testutil/
random.c 17 static uint32_t test_random_state[31]; variable
25 test_random_state[pos] += test_random_state[(pos + 28) % 31];
26 return test_random_state[pos++] / 2;
35 test_random_state[0] = sd;
37 s = (int32_t)test_random_state[i - 1];
38 test_random_state[i] = (uint32_t)((16807 * (int64_t)s) % mod);
  /src/crypto/external/bsd/openssl/dist/test/testutil/
random.c 17 static uint32_t test_random_state[31]; variable
24 test_random_state[pos] += test_random_state[(pos + 28) % 31];
25 return test_random_state[pos++] / 2;
33 test_random_state[0] = sd;
35 s = (int32_t)test_random_state[i - 1];
36 test_random_state[i] = (uint32_t)((16807 * (int64_t)s) % mod);
  /src/crypto/external/bsd/openssl.old/dist/test/testutil/
random.c 17 static uint32_t test_random_state[31]; variable
24 test_random_state[pos] += test_random_state[(pos + 28) % 31];
25 return test_random_state[pos++] / 2;
33 test_random_state[0] = sd;
35 s = (int32_t)test_random_state[i - 1];
36 test_random_state[i] = (uint32_t)((16807 * (int64_t)s) % mod);

Completed in 26 milliseconds