Symbol: ncopy
bin/ksh/shf.c
514
int ncopy;
bin/ksh/shf.c
526
ncopy = shf->rnleft;
bin/ksh/shf.c
527
if (ncopy > bsize)
bin/ksh/shf.c
528
ncopy = bsize;
bin/ksh/shf.c
529
memcpy(buf, shf->rp, ncopy);
bin/ksh/shf.c
530
buf += ncopy;
bin/ksh/shf.c
531
bsize -= ncopy;
bin/ksh/shf.c
532
shf->rp += ncopy;
bin/ksh/shf.c
533
shf->rnleft -= ncopy;
bin/ksh/shf.c
551
int ncopy;
bin/ksh/shf.c
572
ncopy = end ? end - shf->rp + 1 : shf->rnleft;
bin/ksh/shf.c
573
if (ncopy > bsize)
bin/ksh/shf.c
574
ncopy = bsize;
bin/ksh/shf.c
575
memcpy(buf, (char *) shf->rp, ncopy);
bin/ksh/shf.c
576
shf->rp += ncopy;
bin/ksh/shf.c
577
shf->rnleft -= ncopy;
bin/ksh/shf.c
578
buf += ncopy;
bin/ksh/shf.c
579
bsize -= ncopy;
bin/ksh/shf.c
704
int ncopy;
bin/ksh/shf.c
713
if ((ncopy = shf->wnleft)
bin/ksh/shf.c
716
if (ncopy > nbytes)
bin/ksh/shf.c
717
ncopy = nbytes;
bin/ksh/shf.c
718
memcpy(shf->wp, buf, ncopy);
bin/ksh/shf.c
719
nbytes -= ncopy;
bin/ksh/shf.c
720
buf += ncopy;
bin/ksh/shf.c
721
shf->wp += ncopy;
bin/ksh/shf.c
722
shf->wnleft -= ncopy;
bin/ksh/shf.c
729
ncopy = nbytes;
bin/ksh/shf.c
731
ncopy -= nbytes % shf->wbsize;
bin/ksh/shf.c
732
nbytes -= ncopy;
bin/ksh/shf.c
733
while (ncopy > 0) {
bin/ksh/shf.c
734
n = write(shf->fd, buf, ncopy);
bin/ksh/shf.c
747
ncopy -= n;
lib/libpuffs/creds.c
84
size_t ncopy;
lib/libpuffs/creds.c
92
ncopy = MIN(*ngids, pkcr->pkcr_uuc.cr_ngroups);
lib/libpuffs/creds.c
93
(void)memcpy(rgids, pkcr->pkcr_uuc.cr_groups, sizeof(gid_t) * ncopy);
lib/libpuffs/creds.c
94
*ngids = (short)ncopy;
usr.bin/mail/send.c
697
hp->h_extra = ncopy(extra_headers);