Lines Matching refs:newanchp
200 ANCHOR *newanchp;
300 newanchp = (curAnchor == NULL) ? &firstAnchor :
303 if (newanchp == NULL) {
310 newanchp->monBuffer = hdrp; /* new, down. */
311 newanchp->next = NULL; /* new, forward to NULL. */
312 newanchp->prior = curAnchor; /* new, backward. */
314 curAnchor->next = newanchp; /* old, forward to new. */
315 newanchp->flags = HAS_HISTOGRAM; /* note it has a histgm area */
322 newanchp->histSize = (int)
348 curAnchor = newanchp; /* make latest addition, the cur anchor */
449 ANCHOR *newanchp;
459 newanchp = p;
468 newanchp->monBuffer = hdrp; /* new, down. */
469 newanchp->next = NULL; /* new, forward to NULL. */
470 newanchp->prior = curAnchor; /* new, backward. */
472 curAnchor->next = newanchp; /* old, forward to new. */
473 newanchp->flags = 0; /* note that it has NO histgm area */
479 newanchp->histSize = 0; /* (set size of region 3.. to 0) */
482 curAnchor = newanchp; /* make latest addition, cur anchor */