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

  /external/chromium_org/third_party/skia/src/core/
Sk64.cpp 281 uint32_t testDiv = (root << 1) + 1;
282 if (sqr >= testDiv)
284 sqr -= testDiv;
SkMath.cpp 335 uint32_t testDiv = (root << 1) + 1;
336 if (remHi >= testDiv) {
337 remHi -= testDiv;
  /external/skia/src/core/
Sk64.cpp 281 uint32_t testDiv = (root << 1) + 1;
282 if (sqr >= testDiv)
284 sqr -= testDiv;
SkMath.cpp 335 uint32_t testDiv = (root << 1) + 1;
336 if (remHi >= testDiv) {
337 remHi -= testDiv;
  /libcore/harmony-tests/src/test/java/tests/api/java/math/
BigIntegerTest.java 902 private void testDiv(BigInteger i1, BigInteger i2) {
949 testDiv(k, i);
983 testDiv(i1, i2);
984 testDiv(i1.negate(), i2);
985 testDiv(i1, i2.negate());
986 testDiv(i1.negate(), i2.negate());

Completed in 425 milliseconds