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

  /external/webkit/Source/WebCore/platform/graphics/wince/
WinCEGraphicsExtras.h 29 static inline int stableRound(double d)
GraphicsContextWinCE.cpp 51 // stableRound rounds -0.5 to 0, where lround rounds -0.5 to -1.
52 static inline int stableRound(double d)
64 return IntRect(stableRound(r.x()), stableRound(r.y()), stableRound(r.maxX()) - stableRound(r.x()), stableRound(r.maxY()) - stableRound(r.y()));
101 *x2 = stableRound(x1 * m_cosA + y1 * m_sinA) + m_postShiftX;
102 *y2 = stableRound(y1 * m_cosA - x1 * m_sinA) + m_postShiftY
    [all...]

Completed in 62 milliseconds