Home
last modified time | relevance | path

Searched refs:npoint (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/external/xserver/render/
H A Dmitri.c37 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds) in miPointFixedBounds() argument
44 npoint--; in miPointFixedBounds()
45 while (npoint-- > 0) { in miPointFixedBounds()
H A Dmipict.h108 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds);
H A Dpicturestr.h254 INT16 ySrc, int npoint, xPointFixed * points);
261 INT16 ySrc, int npoint, xPointFixed * points);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/common/
H A Dshapes.cpp134 void Triangle::Legalize(Point& opoint, Point& npoint) in Legalize() argument
139 points_[2] = &npoint; in Legalize()
143 points_[0] = &npoint; in Legalize()
147 points_[1] = &npoint; in Legalize()
H A Dshapes.h192 void Legalize(Point& opoint, Point& npoint);
/OK3568_Linux_fs/external/xserver/Xext/
H A DpanoramiXprocs.c1374 int result, npoint, j; in PanoramiXPolyPoint() local
1396 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq)); in PanoramiXPolyPoint()
1397 if (npoint > 0) { in PanoramiXPolyPoint()
1398 origPts = xallocarray(npoint, sizeof(xPoint)); in PanoramiXPolyPoint()
1399 memcpy((char *) origPts, (char *) &stuff[1], npoint * sizeof(xPoint)); in PanoramiXPolyPoint()
1403 memcpy(&stuff[1], origPts, npoint * sizeof(xPoint)); in PanoramiXPolyPoint()
1412 (stuff->coordMode == CoordModePrevious) ? 1 : npoint; in PanoramiXPolyPoint()
1439 int result, npoint, j; in PanoramiXPolyLine() local
1461 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq)); in PanoramiXPolyLine()
1462 if (npoint > 0) { in PanoramiXPolyLine()
[all …]
/OK3568_Linux_fs/external/xserver/dix/
H A Ddispatch.c1782 int npoint; in ProcPolyPoint() local
1795 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq)); in ProcPolyPoint()
1796 if (npoint) in ProcPolyPoint()
1797 (*pGC->ops->PolyPoint) (pDraw, pGC, stuff->coordMode, npoint, in ProcPolyPoint()
1805 int npoint; in ProcPolyLine() local
1818 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq)); in ProcPolyLine()
1819 if (npoint > 1) in ProcPolyLine()
1820 (*pGC->ops->Polylines) (pDraw, pGC, stuff->coordMode, npoint, in ProcPolyLine()