Searched refs:IFFTTestArg (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/test/ |
D | fft_test.cc | 161 struct IFFTTestArg { struct 164 IFFTTestArg(int n_in, tform_fun_t ifft_in) : n(n_in), ifft(ifft_in) {} in IFFTTestArg() function 167 std::ostream &operator<<(std::ostream &os, const IFFTTestArg &test_arg) { in operator <<() 172 class IFFT2DTest : public ::testing::TestWithParam<IFFTTestArg> { 232 ::testing::Values(IFFTTestArg(2, aom_ifft2x2_float_c), 233 IFFTTestArg(4, aom_ifft4x4_float_c), 234 IFFTTestArg(8, aom_ifft8x8_float_c), 235 IFFTTestArg(16, aom_ifft16x16_float_c), 236 IFFTTestArg(32, aom_ifft32x32_float_c))); 241 ::testing::Values(IFFTTestArg(4, aom_ifft4x4_float_sse2), [all …]
|