HomeSort by relevance Sort by last modified time
    Searched refs:OD_DIVU_SMALL (Results 1 - 2 of 2) sorted by null

  /external/libaom/libaom/test/
divu_small_test.cc 24 GTEST_ASSERT_EQ(x / d, OD_DIVU_SMALL(x, d))
26 << " != " << OD_DIVU_SMALL(x, d);
36 GTEST_ASSERT_EQ(x / d, OD_DIVU_SMALL(x, d))
38 << " != " << OD_DIVU_SMALL(x, d);
  /external/libaom/libaom/av1/common/
odintrin.h 36 #define OD_DIVU_SMALL(_x, _d) \
43 (((_d) < OD_DIVU_DMAX) ? (OD_DIVU_SMALL((_x), (_d))) : ((_x) / (_d)))

Completed in 911 milliseconds