Lines Matching defs:destp
1667 uintptr_t destp, ustringp;
1678 destp = PROC_PS_STRINGS(p);
1679 arginfo = imgp->ps_strings = (void *)destp;
1686 destp -= szsigcode;
1687 destp = rounddown2(destp, sizeof(void *));
1688 error = copyout(sysent->sv_sigcode, (void *)destp, szsigcode);
1698 destp -= execpath_len;
1699 destp = rounddown2(destp, sizeof(void *));
1700 imgp->execpathp = (void *)destp;
1710 destp -= sizeof(canary);
1711 imgp->canary = (void *)destp;
1721 destp -= imgp->pagesizeslen;
1722 destp = rounddown2(destp, sizeof(void *));
1723 imgp->pagesizes = (void *)destp;
1731 destp -= ARG_MAX - imgp->args->stringspace;
1732 destp = rounddown2(destp, sizeof(void *));
1733 ustringp = destp;
1740 destp -= AT_COUNT * sizeof(Elf_Auxinfo);
1741 destp = rounddown2(destp, sizeof(void *));
1744 vectp = (char **)destp;