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

123

/freebsd-10.1-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-10.1-release/sys/dev/hyperv/vmbus/
H A Dhv_vmbus_drv_freebsd.c85 hv_vmbus_message* copied; local
95 copied = malloc(sizeof(hv_vmbus_message),
97 KASSERT(copied != NULL,
100 if (copied == NULL)
102 memcpy(copied, msg, sizeof(hv_vmbus_message));
104 hv_vmbus_on_channel_message, copied);
/freebsd-10.1-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-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dpath.c916 apr_size_t i, copied = 0;
931 yet copied into our output buffer. */
932 if (i - copied)
933 svn_stringbuf_appendbytes(retstr, path + copied,
934 i - copied);
946 copied = i + 1;
954 if (i - copied)
955 svn_stringbuf_appendbytes(retstr, path + copied, i - copied);
1180 apr_size_t i, copied
911 apr_size_t i, copied = 0; local
1174 apr_size_t i, copied = 0; local
[all...]
/freebsd-10.1-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-10.1-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-10.1-release/contrib/subversion/subversion/svn/
H A Dstatus.c240 if these nodes were copied and have local property changes.
362 else if (status->copied
421 status->copied ? '+' : ' ',
440 status->copied ? '+' : ' ',
457 status->copied ? '+' : ' ',
508 if (status->copied)
509 svn_hash_sets(att_hash, "copied", "true");
514 if (status->versioned && ! status->copied)
/freebsd-10.1-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-10.1-release/sys/sys/
H A Duio.h95 size_t len, size_t * __restrict copied, int seg);
/freebsd-10.1-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-10.1-release/contrib/subversion/subversion/libsvn_wc/
H A Dnode.c789 svn_boolean_t *copied,
803 if (copied)
804 *copied = FALSE;
831 if (!copied)
835 *copied = TRUE;
847 *copied = TRUE; /* Working deletion */
855 if (copied)
856 *copied = TRUE;
864 if (copied)
865 *copied
786 svn_wc__internal_node_get_schedule(svn_wc_schedule_t *schedule, svn_boolean_t *copied, svn_wc__db_t *db, const char *local_abspath, apr_pool_t *scratch_pool) argument
898 svn_wc__node_get_schedule(svn_wc_schedule_t *schedule, svn_boolean_t *copied, svn_wc_context_t *wc_ctx, const char *local_abspath, apr_pool_t *scratch_pool) argument
[all...]
H A Dwc-metadata.sql276 1 is the data for foo/bar copied in from ^/moo/bar.
311 When op_depth != 0, they indicate where this node was copied/moved from.
338 copied node for which we have full information.
346 copied directly, but can be copied as a descendant.
351 etc. In the 'WORKING' tree this is a copied node for which we
368 node cannot be copied directly but can be copied as a
380 copied). This is set on all the nodes in the moved tree. The source of
416 moved here or copied her
[all...]
H A Dstatus.c376 svn_boolean_t copied = FALSE;
414 if (!info->have_base || info->have_more_work || info->copied)
415 copied = TRUE;
417 copied = FALSE;
428 copied = TRUE; /* Working deletion */
551 copied = info->copied;
655 stat->copied = copied;
374 svn_boolean_t copied = FALSE; local
H A Dentries.c518 entry->copied = TRUE;
520 entry->copied = FALSE;
530 entry->copied = TRUE;
642 entry->copied = TRUE;
644 /* If this is a child of a copied subtree, then it should be
669 ancestor node, then it must be a copied child. */
674 a mixed-revision copied tree. So if we don't already know
675 this is a copied child, then we need to look for this
701 copyfrom_rev in order to (re)create the mixed-rev copied
706 Note that the parent could be added/copied/move
[all...]
/freebsd-10.1-release/contrib/telnet/telnetd/
H A Dstate.c1616 int remaining, copied; local
1627 copied = remaining > len ? len : remaining;
1628 memmove(nfrontp, buf, copied);
1629 nfrontp += copied;
1630 len -= copied;
1631 remaining -= copied;
1632 buf += copied;
/freebsd-10.1-release/sys/kern/
H A Dsubr_uio.c306 size_t * __restrict copied, int seg)
312 error = copyinstr(src, dst, len, copied);
315 error = copystr(src, dst, len, copied);
305 copyinstrfrom(const void * __restrict src, void * __restrict dst, size_t len, size_t * __restrict copied, int seg) argument
/freebsd-10.1-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)
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu.c1194 int tocpy, copied, thiscpy; local
1212 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1214 thiscpy = MIN(PAGESIZE, tocpy - copied);
1252 int tocpy, copied, thiscpy; local
1270 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1272 thiscpy = MIN(PAGESIZE, tocpy - copied);
[all...]
/freebsd-10.1-release/usr.sbin/cron/doc/
H A DINSTALL65 Notes on above examples: (1) the .src files are copied at the time the
/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_prime.pl87 * copied and put under another distribution licence
/freebsd-10.1-release/crypto/openssl/util/
H A Dadd_cr.pl119 * copied and put under another distribution licence
/freebsd-10.1-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-10.1-release/contrib/llvm/lib/Support/Unix/
H A DSignals.inc247 // made on insertion become invalid by being copied down an element.
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_client/
H A Dstatus.c704 (*cst)->copied = status->copied;

Completed in 263 milliseconds

123