Lines Matching refs:destbuf
40 struct group *destgrp, char *destbuf, char **endptr) in __copy_grp() argument
54 memcpy (&destbuf[c], srcgrp.gr_name, len); in __copy_grp()
55 destgrp->gr_name = &destbuf[c]; in __copy_grp()
61 memcpy (&destbuf[c], srcgrp.gr_passwd, len); in __copy_grp()
62 destgrp->gr_passwd = &destbuf[c]; in __copy_grp()
81 memcpy (&destbuf[c], srcgrp.gr_mem[i], len); in __copy_grp()
82 members[i] = &destbuf[c]; in __copy_grp()
89 if ((((uintptr_t)destbuf + c) & (__alignof__(char **) - 1)) != 0) in __copy_grp()
91 uintptr_t mis_align = ((uintptr_t)destbuf + c) & (__alignof__(char **) - 1); in __copy_grp()
97 destgrp->gr_mem = (char **) &destbuf[c]; in __copy_grp()
100 memcpy (&destbuf[c], members, len); in __copy_grp()
107 memcpy (&destbuf[c], &memcount, sizeof (size_t)); in __copy_grp()
111 *endptr = destbuf + c; in __copy_grp()