Lines Matching refs:destp
324 uintptr_t destp, ustringp; in linux_copyout_strings() local
338 destp = (uintptr_t)arginfo; in linux_copyout_strings()
341 destp -= execpath_len; in linux_copyout_strings()
342 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
343 imgp->execpathp = (void *)destp; in linux_copyout_strings()
351 destp -= roundup(sizeof(canary), sizeof(void *)); in linux_copyout_strings()
352 imgp->canary = (void *)destp; in linux_copyout_strings()
358 destp -= ARG_MAX - imgp->args->stringspace; in linux_copyout_strings()
359 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
360 ustringp = destp; in linux_copyout_strings()
367 destp -= LINUX_AT_COUNT * sizeof(Elf64_Auxinfo); in linux_copyout_strings()
368 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
371 vectp = (char **)destp; in linux_copyout_strings()