Lines Matching refs:destp
223 uintptr_t destp, ustringp; in linux_copyout_strings() local
238 destp = (uintptr_t)arginfo; in linux_copyout_strings()
241 destp -= execpath_len; in linux_copyout_strings()
242 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
243 imgp->execpathp = (void *)destp; in linux_copyout_strings()
251 destp -= roundup(sizeof(canary), sizeof(void *)); in linux_copyout_strings()
252 imgp->canary = (void *)destp; in linux_copyout_strings()
258 destp -= ARG_MAX - imgp->args->stringspace; in linux_copyout_strings()
259 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
260 ustringp = destp; in linux_copyout_strings()
267 destp -= LINUX_AT_COUNT * sizeof(Elf64_Auxinfo); in linux_copyout_strings()
268 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
271 vectp = (char **)destp; in linux_copyout_strings()