Lines Matching refs:nom
231 #define DX(x, nom, denom) static_cast<int>((Abs(x) / nom) * nom) argument
232 #define SX(x, nom, denom) static_cast<int>((x / nom) * denom) argument
234 #define TEST_FACTOR1(name, filter, nom, denom, max_diff) \ argument
237 SX(benchmark_width_, nom, denom), SX(benchmark_height_, nom, denom), \
238 DX(benchmark_width_, nom, denom), DX(benchmark_height_, nom, denom), \
245 SX(benchmark_width_, nom, denom), SX(benchmark_height_, nom, denom), \
246 DX(benchmark_width_, nom, denom), DX(benchmark_height_, nom, denom), \
253 #define TEST_FACTOR(name, nom, denom) \ argument
254 TEST_FACTOR1(name, None, nom, denom, 0) \
255 TEST_FACTOR1(name, Linear, nom, denom, 3) \
256 TEST_FACTOR1(name, Bilinear, nom, denom, 3) \
257 TEST_FACTOR1(name, Box, nom, denom, 3)