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