Searched refs:destbuf (Results 1 – 2 of 2) sorted by relevance
/glibc-2.36/grp/ |
D | grp-merge.c | 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() [all …]
|
D | grp-merge.h | 28 struct group *destgrp, char *destbuf, char **endptr);
|