Searched defs:newX (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.cpp60 double newX, newY; local
61 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
62 return narrowPrecision(newX, newY);
67 double newX, newY; local
68 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); local
69 return narrowPrecision(newX, newY);
/external/skia/src/core/
H A DSkScan_Path.cpp159 SkFixed newX; local
166 newX = currE->fX;
171 newX = currE->fX;
178 newX = currE->fX + currE->fDX;
179 currE->fX = newX;
181 if (newX < prevX) { // ripple currE backwards until it is x-sorted
184 prevX = newX;
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-aix5.c1811 Bool newR, newW, newX, needDiscard; local
1818 newX = toBool(prot & VKI_PROT_EXEC);
1834 asegs_pri.seg[i].hasX = newX;
H A Daspacemgr-linux.c2087 Bool newR, newW, newX, needDiscard; local
2097 newX = toBool(prot & VKI_PROT_EXEC);
2100 needDiscard = any_Ts_in_range( start, len ) && !newX;
2113 nsegments[i].hasX = newX;
/external/webkit/Source/WebCore/rendering/
H A DRenderBox.cpp1504 int newX = x(); local
1508 if (rect.x() != newX || rect.y() != newY) {
1514 m_frameRect = IntRect(newX, newY, newWidth, newHeight);
3184 int newX = xPos; local
3187 newX += x();
3207 return renderer->positionForCoordinates(xPos + newX - renderer->x(), yPos + newY - renderer->y());
3246 return closestRenderer->positionForCoordinates(newX - closestRenderer->x(), newY - closestRenderer->y());
H A DRenderLayer.cpp2192 int newX = max(0, min(scrollXOffset(), scrollWidth() - box->clientWidth())); local
2194 if (newX != scrollXOffset() || newY != scrollYOffset()) {
2202 scrollToOffset(newX, newY);

Completed in 180 milliseconds