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

  /external/skia/src/core/
SkMathPriv.h 36 static inline int32_t SkCopySign32(int32_t x, int32_t y) {
  /external/skia/tests/
MathTest.cpp 481 SkCopySign32(gTriples[i], gTriples[i+1]) == gTriples[i+2]);
491 REPORTER_ASSERT(reporter, SkCopySign32(ix, ix) == ix);
492 REPORTER_ASSERT(reporter, SkCopySign32(ix, -ix) == -ix);
493 REPORTER_ASSERT(reporter, SkCopySign32(-ix, ix) == ix);
494 REPORTER_ASSERT(reporter, SkCopySign32(-ix, -ix) == -ix);

Completed in 1899 milliseconds