Searched refs:copied (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-9.3-release/contrib/gcc/
H A Dvarray.c43 int copied; member in struct:varray_descriptor
171 desc->copied++;
234 d->created, d->allocated, d->resized, d->copied);
249 fprintf (stderr, "\nVARRAY Kind Count Bytes Resized copied\n");
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_crtc.c1112 int copied = 0, i; local
1162 copied = 0;
1165 if (copyout(&fb->base.id, fb_id + copied,
1170 copied++;
1177 copied = 0;
1188 copied, sizeof(uint32_t))) {
1192 copied++;
1197 crtc_id + copied, sizeof(uint32_t))) {
1201 copied++;
1209 copied
1377 int copied = 0; local
1551 int copied = 0, ret = 0; local
2801 int copied; local
[all...]
/freebsd-9.3-release/sys/netinet/
H A Daccf_http.c293 int ccleft, copied; local
301 * copied - how much we've copied so far
306 copied = 0;
319 tocopy = (NCHRS - ccleft) - copied;
323 switch (copied++) {
/freebsd-9.3-release/crypto/openssl/crypto/dso/
H A Ddso_lib.c345 char *copied; local
356 copied = OPENSSL_malloc(strlen(filename) + 1);
357 if (copied == NULL) {
361 BUF_strlcpy(copied, filename, strlen(filename) + 1);
364 dso->filename = copied;
/freebsd-9.3-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_zcopy.c285 int copied = rx_sa->used - rx_sa->reported; local
290 mb = sdp_alloc_mb_rdmardcompl(ssk->socket, copied, 0);
292 rx_sa->reported += copied;
555 int copied; local
597 copied = rx_sa->umem->length;
599 sdp_update_iov_used(sk, iov, copied);
600 rx_sa->used += copied;
601 atomic_add(copied, &ssk->rcv_nxt);
602 *used = copied;
719 int copied local
[all...]
/freebsd-9.3-release/sys/sys/
H A Duio.h95 size_t len, size_t * __restrict copied, int seg);
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c1015 char *copied = 0; local
1034 copied = strdup(get_termpath());
1035 for (cp = copied; *cp; cp++) {
1038 else if (cp == copied || cp[-1] == '\0') {
1115 if (copied != 0)
1116 free(copied);
/freebsd-9.3-release/contrib/telnet/telnetd/
H A Dstate.c1614 int remaining, copied; local
1625 copied = remaining > len ? len : remaining;
1626 memmove(nfrontp, buf, copied);
1627 nfrontp += copied;
1628 len -= copied;
1629 remaining -= copied;
1630 buf += copied;
/freebsd-9.3-release/sys/dev/hwpmc/
H A Dhwpmc_tsc.c123 size_t copied; local
135 PMC_NAME_MAX, &copied)) != 0)
H A Dhwpmc_soft.c161 size_t copied; local
174 PMC_NAME_MAX, &copied)) != 0)
H A Dhwpmc_amd.c709 size_t copied; local
722 PMC_NAME_MAX, &copied)) != 0)
H A Dhwpmc_ppro.c740 size_t copied; local
756 PMC_NAME_MAX, &copied)) != 0)
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu.c1151 int tocpy, copied, thiscpy; local
1169 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1171 thiscpy = MIN(PAGESIZE, tocpy - copied);
1209 int tocpy, copied, thiscpy; local
1227 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1229 thiscpy = MIN(PAGESIZE, tocpy - copied);
[all...]
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dip_log.c395 * Are we copied from the mblk or an aligned array ?
559 size_t dlen, copied; local
626 for (copied = 0; (ipl = iplt[unit]) != NULL; copied += dlen) {
/freebsd-9.3-release/sys/kern/
H A Dsubr_uio.c472 size_t * __restrict copied, int seg)
478 error = copyinstr(src, dst, len, copied);
481 error = copystr(src, dst, len, copied);
471 copyinstrfrom(const void * __restrict src, void * __restrict dst, size_t len, size_t * __restrict copied, int seg) argument
/freebsd-9.3-release/usr.sbin/cron/doc/
H A DINSTALL65 Notes on above examples: (1) the .src files are copied at the time the
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_prime.pl87 * copied and put under another distribution licence
/freebsd-9.3-release/crypto/openssl/util/
H A Dadd_cr.pl119 * copied and put under another distribution licence
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgnu-nat.c2287 pointer_t copied;
2291 err = vm_read (task, low_address, aligned_length, &copied, &copy_count);
2295 err = hurd_safe_copyin (myaddr, (void *) addr - low_address + copied, length);
2302 err = vm_deallocate (mach_task_self (), copied, copy_count);
2331 pointer_t copied;
2344 &copied,
2350 err = hurd_safe_copyout ((void *) addr - low_address + copied,
2441 copied,
2466 copied,
2252 pointer_t copied; local
2296 pointer_t copied; local
2431 copied, local
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DSignals.inc247 // made on insertion become invalid by being copied down an element.
/freebsd-9.3-release/crypto/openssl/crypto/conf/
H A Dkeysets.pl109 * copied and put under another distribution licence
/freebsd-9.3-release/sys/netinet6/
H A Dicmp6.c363 M_PREPEND(m, preplen, M_DONTWAIT); /* FIB is also copied over. */
587 M_MOVE_PKTHDR(n, n0); /* FIB copied. */
1566 int lenlim, copied; local
1572 copied = ni6_store_addrs(ni6, nni6, ifp, lenlim);
1575 sizeof(struct icmp6_nodeinfo) + copied;
1859 int copied = 0, allow_deprecated = 0; local
1934 return (copied);
1972 copied += (sizeof(struct in6_addr) + sizeof(u_int32_t));
1988 return (copied);
/freebsd-9.3-release/contrib/binutils/bfd/
H A Decofflink.c619 unsigned int copied;
683 copied = 0;
740 fh->val = output_symhdr->ifdMax + copied;
743 input_debug->ifdmap[i] = output_symhdr->ifdMax + copied;
745 ++copied;
774 sz = copied * external_fdr_size;
616 unsigned int copied; local
/freebsd-9.3-release/crypto/openssl/crypto/objects/
H A Dobj_dat.pl233 * copied and put under another distribution licence
H A Dobjects.pl179 * copied and put under another distribution licence

Completed in 156 milliseconds

12