Lines Matching refs:destp
274 uintptr_t destp, ustringp; in linux_copyout_strings() local
287 destp = (uintptr_t)arginfo; in linux_copyout_strings()
290 destp -= linux_szplatform; in linux_copyout_strings()
291 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
292 error = copyout(linux_kplatform, (void *)destp, linux_szplatform); in linux_copyout_strings()
297 destp -= execpath_len; in linux_copyout_strings()
298 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
299 imgp->execpathp = (void *)destp; in linux_copyout_strings()
307 destp -= roundup(sizeof(canary), sizeof(void *)); in linux_copyout_strings()
308 imgp->canary = (void *)destp; in linux_copyout_strings()
314 destp -= ARG_MAX - imgp->args->stringspace; in linux_copyout_strings()
315 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
316 ustringp = destp; in linux_copyout_strings()
323 destp -= LINUX_AT_COUNT * sizeof(Elf32_Auxinfo); in linux_copyout_strings()
324 destp = rounddown2(destp, sizeof(void *)); in linux_copyout_strings()
327 vectp = (char **)destp; in linux_copyout_strings()