Searched refs:test_inputs (Results 1 – 4 of 4) sorted by relevance
/external/vboot_reference/tests/ |
D | vb2_sha_tests.c | 39 uint8_t *test_inputs[3]; in sha1_tests() local 42 test_inputs[0] = (uint8_t *) oneblock_msg; in sha1_tests() 43 test_inputs[1] = (uint8_t *) multiblock_msg1; in sha1_tests() 44 test_inputs[2] = (uint8_t *) long_msg; in sha1_tests() 47 TEST_SUCC(vb2_digest(test_inputs[i], in sha1_tests() 48 strlen((char *)test_inputs[i]), in sha1_tests() 55 TEST_EQ(vb2_digest(test_inputs[0], strlen((char *)test_inputs[0]), in sha1_tests() 63 uint8_t *test_inputs[3]; in sha256_tests() local 66 test_inputs[0] = (uint8_t *) oneblock_msg; in sha256_tests() 67 test_inputs[1] = (uint8_t *) multiblock_msg1; in sha256_tests() [all …]
|
D | sha_tests.c | 19 uint8_t* test_inputs[3]; in SHA1_tests() local 20 test_inputs[0] = (uint8_t *) oneblock_msg; in SHA1_tests() 21 test_inputs[1] = (uint8_t *) multiblock_msg1; in SHA1_tests() 22 test_inputs[2] = (uint8_t *) long_msg; in SHA1_tests() 25 internal_SHA1(test_inputs[i], strlen((char *)test_inputs[i]), in SHA1_tests() 41 uint8_t* test_inputs[3]; in SHA256_tests() local 42 test_inputs[0] = (uint8_t *) oneblock_msg; in SHA256_tests() 43 test_inputs[1] = (uint8_t *) multiblock_msg1; in SHA256_tests() 44 test_inputs[2] = (uint8_t *) long_msg; in SHA256_tests() 47 internal_SHA256(test_inputs[i], strlen((char *)test_inputs[i]), in SHA256_tests() [all …]
|
/external/v8/test/mjsunit/ |
D | sin-cos.js | 116 var test_inputs = []; variable 117 for (var i = -10000; i < 10000; i += 177) test_inputs.push(i/1257); 120 test_inputs.push(0); 121 test_inputs.push(0 + epsilon); 122 test_inputs.push(0 - epsilon); 123 test_inputs.push(Math.PI/2); 124 test_inputs.push(Math.PI/2 + epsilon); 125 test_inputs.push(Math.PI/2 - epsilon); 126 test_inputs.push(Math.PI); 127 test_inputs.push(Math.PI + epsilon); [all …]
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
D | runner.py | 478 def _run_list(self, stats, result_set, test_inputs, jobs): argument 482 jobs = min(len(test_inputs), jobs) 490 while test_inputs or running_jobs: 491 while test_inputs and (len(running_jobs) < self.args.jobs): 492 test_input = test_inputs.pop(0)
|