Lines Matching refs:destp
1684 uintptr_t destp, ustringp; in exec_copyout_strings() local
1695 destp = PROC_PS_STRINGS(p); in exec_copyout_strings()
1696 arginfo = imgp->ps_strings = (void *)destp; in exec_copyout_strings()
1703 destp -= szsigcode; in exec_copyout_strings()
1704 destp = rounddown2(destp, sizeof(void *)); in exec_copyout_strings()
1705 error = copyout(sysent->sv_sigcode, (void *)destp, szsigcode); in exec_copyout_strings()
1715 destp -= execpath_len; in exec_copyout_strings()
1716 destp = rounddown2(destp, sizeof(void *)); in exec_copyout_strings()
1717 imgp->execpathp = (void *)destp; in exec_copyout_strings()
1727 destp -= sizeof(canary); in exec_copyout_strings()
1728 imgp->canary = (void *)destp; in exec_copyout_strings()
1738 destp -= imgp->pagesizeslen; in exec_copyout_strings()
1739 destp = rounddown2(destp, sizeof(void *)); in exec_copyout_strings()
1740 imgp->pagesizes = (void *)destp; in exec_copyout_strings()
1748 destp -= ARG_MAX - imgp->args->stringspace; in exec_copyout_strings()
1749 destp = rounddown2(destp, sizeof(void *)); in exec_copyout_strings()
1750 ustringp = destp; in exec_copyout_strings()
1757 destp -= AT_COUNT * sizeof(Elf_Auxinfo); in exec_copyout_strings()
1758 destp = rounddown2(destp, sizeof(void *)); in exec_copyout_strings()
1761 vectp = (char **)destp; in exec_copyout_strings()