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

  /src/usr.sbin/timed/timed/
networkdelta.c 163 int npts; /* # of points above & below guess */ local
182 npts = 0;
192 npts++;
196 npts--;
211 (long)a, pass, npts);
216 if (npts >= 2) { /* guess was too low */
222 } else if (npts <= -2) { /* guess was two high */
236 (long)a, pass, npts);
245 if (npts == 0) /* yes, return an average */
247 else if (npts > 0
    [all...]
  /src/external/gpl2/groff/dist/src/preproc/grn/
hgraph.cpp 64 void picurve(int *x, int *y, int npts);
552 int npts; /* point list index */ local
555 for (npts = 1; !Nullpoint(ptr); ptr = PTNextPoint(ptr), npts++) {
556 x[npts] = (int) (ptr->x * troffscale);
557 y[npts] = (int) (ptr->y * troffscale);
559 if (--npts) {
561 HGCurve(&x[0], &y[0], npts);
563 picurve(&x[0], &y[0], npts);
640 int npts)
    [all...]

Completed in 17 milliseconds