Lines Matching defs:vectp
1665 char **vectp;
1744 vectp = (char **)destp;
1750 vectp -= imgp->args->argc + 1 + imgp->args->envc + 1;
1753 * vectp also becomes our initial stack base
1755 *stack_base = (uintptr_t)vectp;
1772 imgp->argv = vectp;
1773 if (suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp) != 0 ||
1781 if (suword(vectp++, ustringp) != 0)
1789 if (suword(vectp++, 0) != 0)
1792 imgp->envv = vectp;
1793 if (suword(&arginfo->ps_envstr, (long)(intptr_t)vectp) != 0 ||
1801 if (suword(vectp++, ustringp) != 0)
1809 if (suword(vectp, 0) != 0)
1813 vectp++;
1815 (uintptr_t)vectp);