Lines Matching defs:vlistp
711 * reallocate *vlistp and append another element.
715 vlist_append(int **vlistp, int *vcntp, int value)
718 if ((*vlistp = realloc(*vlistp, *vcntp * sizeof (**vlistp))) != NULL)
719 *(*vlistp + *vcntp - 1) = value;
722 return (*vlistp == NULL);
729 * *vlistp; the caller will need to free that space. On return:
737 get_thresh(int **vlistp, int *vcntp)
745 if ((nerr = vlist_append(vlistp, vcntp, 0)) != 0)
753 *(*vlistp + gci) = grp_cnt;
763 if (nerr || (nerr = vlist_append(vlistp, vcntp, value)))
768 nerr = vlist_append(vlistp, vcntp, 0);