Lines Matching refs:test_impl
40 void RunCheckOutput(get_crc32c_value_func test_impl);
41 void RunSpeedTest(get_crc32c_value_func test_impl);
43 void RunZeroTest(get_crc32c_value_func test_impl);
69 void AV1Crc32cHashTest::RunCheckOutput(get_crc32c_value_func test_impl) { in RunCheckOutput() argument
72 uint32_t crc0 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
73 uint32_t crc1 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
79 uint32_t crc3 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
85 void AV1Crc32cHashTest::RunSpeedTest(get_crc32c_value_func test_impl) { in RunSpeedTest() argument
86 get_crc32c_value_func impls[] = { av1_get_crc32c_value_c, test_impl }; in RunSpeedTest()
103 void AV1Crc32cHashTest::RunZeroTest(get_crc32c_value_func test_impl) { in RunZeroTest() argument
106 const uint32_t crc0 = test_impl(&calc_, buffer0, 32); in RunZeroTest()
107 const uint32_t crc1 = test_impl(&calc_, buffer0, 128); in RunZeroTest()
108 const uint32_t crc2 = test_impl(&calc_, buffer0, 1024); in RunZeroTest()