Lines Matching refs:len
44 size_t len; in __copy_grp() local
52 len = strlen (srcgrp.gr_name) + 1; in __copy_grp()
53 BUFCHECK (len); in __copy_grp()
54 memcpy (&destbuf[c], srcgrp.gr_name, len); in __copy_grp()
56 c += len; in __copy_grp()
59 len = strlen (srcgrp.gr_passwd) + 1; in __copy_grp()
60 BUFCHECK (len); in __copy_grp()
61 memcpy (&destbuf[c], srcgrp.gr_passwd, len); in __copy_grp()
63 c += len; in __copy_grp()
79 len = strlen (srcgrp.gr_mem[i]) + 1; in __copy_grp()
80 BUFCHECK (len); in __copy_grp()
81 memcpy (&destbuf[c], srcgrp.gr_mem[i], len); in __copy_grp()
83 c += len; in __copy_grp()
98 len = sizeof (char *) * (memcount + 1); in __copy_grp()
99 BUFCHECK (len); in __copy_grp()
100 memcpy (&destbuf[c], members, len); in __copy_grp()
101 c += len; in __copy_grp()
122 size_t c, i, len; in libc_hidden_def() local
168 len = strlen (mergegrp->gr_mem[i]) + 1; in libc_hidden_def()
169 BUFCHECK (len); in libc_hidden_def()
170 memcpy (&savedbuf[c], mergegrp->gr_mem[i], len); in libc_hidden_def()
172 c += len; in libc_hidden_def()
188 len = sizeof (char *) * membersize; in libc_hidden_def()
189 BUFCHECK (len); in libc_hidden_def()
190 memcpy (&savedbuf[c], members, len); in libc_hidden_def()
191 c += len; in libc_hidden_def()