Lines Matching refs:npoint
1374 int result, npoint, j;
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;
1461 npoint = bytes_to_int32((client->req_len << 2) - sizeof(xPolyLineReq));
1462 if (npoint > 0) {
1463 origPts = xallocarray(npoint, sizeof(xPoint));
1464 memcpy((char *) origPts, (char *) &stuff[1], npoint * sizeof(xPoint));
1468 memcpy(&stuff[1], origPts, npoint * sizeof(xPoint));
1477 (stuff->coordMode == CoordModePrevious) ? 1 : npoint;