OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
467
SkCopySign32
(gTriples[i], gTriples[i+1]) == gTriples[i+2]);
477
REPORTER_ASSERT(reporter,
SkCopySign32
(ix, ix) == ix);
478
REPORTER_ASSERT(reporter,
SkCopySign32
(ix, -ix) == -ix);
479
REPORTER_ASSERT(reporter,
SkCopySign32
(-ix, ix) == ix);
480
REPORTER_ASSERT(reporter,
SkCopySign32
(-ix, -ix) == -ix);
Completed in 60 milliseconds