Lines Matching refs:toTest
22 ALGORITHM_VECTOR *toTest // IN: the vector of the algorithms to test
30 if(TEST_BIT(alg, *toTest))
32 TPM_RC result = CryptTestAlgorithm(alg, toTest);
77 // This function is used to perform an incremental self-test. This implementation will perform the toTest
86 // TPM_RC_TESTING if toTest list is not empty
87 // TPM_RC_VALUE an algorithm in the toTest list is not implemented
91 TPML_ALG *toTest, // IN: list of algorithms to be tested
98 pAssert(toTest != NULL && toDoList != NULL);
99 if(toTest->count > 0)
101 // Transcribe the toTest list into the toTestVector
102 for(i = 0; i < toTest->count; i++)
104 TPM_ALG_ID alg = toTest->algorithms[i];
153 // run, the corresponding bit in toTest and in g_toTest is CLEAR. If toTest is NULL, then only the bit in
155 // TPM_ALG_ERROR, TestAlgorithm() will CLEAR any bit in toTest for which it has no test. This allows the
167 ALGORITHM_VECTOR *toTest
175 TPM_RC TestAlgorithm(TPM_ALG_ID alg, ALGORITHM_VECTOR *toTest);
176 result = TestAlgorithm(alg, toTest);
182 // algorithms have tests, 'toTest' can be cleared.
186 if(toTest != NULL)
187 CLEAR_BIT(alg, *toTest);