HomeSort by: relevance | last modified time | path
    Searched defs:npoint (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/xorg-server/dist/Xext/
panoramiXprocs.c 1374 int result, npoint, j; local
1396 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq));
1397 if (npoint > 0) {
1398 origPts = xallocarray(npoint, sizeof(xPoint));
1399 memcpy((char *) origPts, (char *) &stuff[1], npoint * sizeof(xPoint));
1403 memcpy(&stuff[1], origPts, npoint * sizeof(xPoint));
1412 (stuff->coordMode == CoordModePrevious) ? 1 : npoint;
1439 int result, npoint, j; local
1461 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq));
1462 if (npoint > 0)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/Xext/
panoramiXprocs.c 1257 int result, npoint, j; local
1278 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq));
1279 if (npoint > 0) {
1280 origPts = malloc(npoint * sizeof(xPoint));
1281 memcpy((char *) origPts, (char *) &stuff[1], npoint * sizeof(xPoint));
1284 if(j) memcpy(&stuff[1], origPts, npoint * sizeof(xPoint));
1292 int i = (stuff->coordMode==CoordModePrevious) ? 1 : npoint;
1317 int result, npoint, j; local
1338 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq));
1339 if (npoint > 0)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/dix/
dispatch.c 1709 int npoint; local
1722 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq));
1723 if (npoint)
1724 (*pGC->ops->PolyPoint)(pDraw, pGC, stuff->coordMode, npoint, local
1732 int npoint; local
1745 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq));
1746 if (npoint > 1)
1747 (*pGC->ops->Polylines)(pDraw, pGC, stuff->coordMode, npoint, local
  /xsrc/external/mit/xorg-server/dist/dix/
dispatch.c 1851 int npoint; local
1864 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyPointReq));
1865 if (npoint)
1866 (*pGC->ops->PolyPoint) (pDraw, pGC, stuff->coordMode, npoint, local
1874 int npoint; local
1887 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq));
1888 if (npoint > 1)
1889 (*pGC->ops->Polylines) (pDraw, pGC, stuff->coordMode, npoint, local

Completed in 10 milliseconds