Searched refs:copy (Results 26 - 50 of 503) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c27 * - Unroll direct copy to three copies per loop in inffast.c
44 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
53 * - Unroll last copy for window match in inflate_fast()
335 unsigned copy, dist; local
354 /* copy state->wsize or less output bytes into the circular window */
355 copy = out - strm->avail_out;
356 if (copy >= state->wsize) {
363 if (dist > copy) dist = copy;
364 zmemcpy(state->window + state->write, strm->next_out - copy, dis
572 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/freebsd-10.0-release/usr.bin/rctl/
H A Drctl.c149 char *copy, *expanded; local
151 copy = strdup(rule);
152 if (copy == NULL)
155 subject = strsep(&copy, ":");
156 subject_id = strsep(&copy, ":");
157 resource = strsep(&copy, ":");
158 action = strsep(&copy, "=/");
159 amount = strsep(&copy, "/");
160 per = copy;
163 free(copy);
247 char *copy, *humanized, buf[6]; local
358 char *copy, *humanized, buf[6]; local
[all...]
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dargv.c16 You should have received a copy of the GNU Library General Public
68 char **copy; local
75 copy = (char **) malloc ((argc + 1) * sizeof (char *));
76 if (copy == NULL)
83 copy[argc] = (char *) malloc (len + 1);
84 if (copy[argc] == NULL)
86 freeargv (copy);
89 strcpy (copy[argc], argv[argc]);
91 copy[argc] = NULL;
92 return copy;
[all...]
/freebsd-10.0-release/crypto/openssh/regress/
H A Ddynamic-forward.sh44 somehost cat $DATA > $OBJ/ls.copy
45 test -f $OBJ/ls.copy || fail "failed copy $DATA"
46 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
H A Dscp.sh29 verbose "$tid: simple copy local file to local file"
31 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
32 cmp ${DATA} ${COPY} || fail "corrupted copy"
34 verbose "$tid: simple copy local file to remote file"
36 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
37 cmp ${DATA} ${COPY} || fail "corrupted copy"
39 verbose "$tid: simple copy remote file to local file"
41 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
42 cmp ${DATA} ${COPY} || fail "corrupted copy"
44 verbose "$tid: simple copy loca
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Drtl.c17 You should have received a copy of the GNU General Public License
212 /* Create a new copy of an rtx.
219 rtx copy;
255 then reloading one copy of this mem will cause all copies to appear
266 copy = shallow_copy_rtx (orig);
268 /* We do not copy the USED flag, which is used as a mark bit during
270 RTX_FLAG (copy, used) = 0;
272 /* We do not copy FRAME_RELATED for INSNs. */
274 RTX_FLAG (copy, frame_related) = 0;
275 RTX_FLAG (copy, jum
216 rtx copy; local
319 rtx copy; local
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dgenlink.h17 You should have received a copy of the GNU General Public License
59 #define _bfd_generic_link_hash_lookup(table, string, create, copy, follow) \
61 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow)))
H A Dcoff-aux.c17 You should have received a copy of the GNU General Public License
61 string, copy, collect, hashp)
69 bfd_boolean copy;
89 h = bfd_link_hash_lookup (info->hash, name, TRUE, copy, FALSE);
133 value, string, copy, collect,
/freebsd-10.0-release/contrib/ncurses/
H A Dtar-copy.sh2 # $Id: tar-copy.sh,v 1.5 2003/10/25 14:40:07 tom Exp $
7 # copy of this software and associated documentation files (the "Software"), #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute #
37 # $1 = files to copy
57 TMP=$WD/copy$$
/freebsd-10.0-release/crypto/heimdal/base/
H A Dheimbasepriv.h66 heim_type_copy copy; member in struct:heim_type_data
77 heim_type_copy copy,
/freebsd-10.0-release/sys/boot/common/
H A Dinterp_parse.c56 free(copy); \
82 char *val, *p, *q, *copy = NULL; local
89 if (!str || (p = copy = backslash(str)) == NULL)
170 free(copy);
/freebsd-10.0-release/sys/netgraph/
H A Dng_message.h415 * Make a copy of message. Sets "copy" to NULL if fails.
417 #define NG_COPYMESSAGE(copy, msg, how) \
419 (copy) = malloc(sizeof(struct ng_mesg) \
421 if ((copy) == NULL) \
423 (copy)->header.version = NG_VERSION; \
424 (copy)->header.arglen = (msg)->header.arglen; \
425 (copy)->header.token = (msg)->header.token; \
426 (copy)->header.typecookie = (msg)->header.typecookie; \
427 (copy)
[all...]
/freebsd-10.0-release/contrib/binutils/gas/
H A Dsb.c19 You should have received a copy of the GNU General Public License
117 int copy; local
118 copy = sb_to_scrub->len - (scrub_position - sb_to_scrub->ptr);
119 if (copy > buflen)
120 copy = buflen;
121 memcpy (buf, scrub_position, copy);
122 scrub_position += copy;
123 return copy;
/freebsd-10.0-release/lib/libz/
H A Dinfback.c263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy
[all...]
/freebsd-10.0-release/contrib/groff/src/roff/troff/
H A Dnode.h18 You should have received a copy of the GNU General Public License along
63 virtual node *copy() = 0;
155 node *copy() { return new line_start_node; } function in class:line_start_node
183 node *copy();
221 node *copy();
237 node *copy();
259 node *copy();
273 node *copy();
287 node *copy();
301 node *copy();
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dtest_cert.in59 echo "copy dance"
60 ${hxtool} certificate-copy \
63 ${hxtool} certificate-copy PEM-FILE:cert-pem.tmp DER-FILE:cert-der.tmp || exit 1
64 ${hxtool} certificate-copy DER-FILE:cert-der.tmp PEM-FILE:cert-pem2.tmp || exit 1
/freebsd-10.0-release/usr.bin/dc/
H A Dstack.c6 * Permission to use, copy, modify, and distribute this software for any
79 stack_dup_value(const struct value *a, struct value *copy) argument
82 copy->type = a->type;
88 copy->u.num = dup_number(a->u.num);
91 copy->u.string = strdup(a->u.string);
92 if (copy->u.string == NULL)
97 copy->array = a->array == NULL ? NULL : array_dup(a->array);
99 return (copy);
113 struct value copy; local
120 stack_push(stack, stack_dup_value(value, &copy));
126 struct value copy; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
161 unsigned char *dof, *copy; local
188 if ((copy = malloc(len)) == NULL)
189 fatal("could not allocate copy of %d bytes", len);
192 bcopy(dof, copy, len);
201 corrupt(fd, copy, len);
/freebsd-10.0-release/usr.bin/units/
H A Dunits.c14 * I would appreciate (though I do not require) receiving a copy of any
466 char *copy; local
474 copy = dupstr(unit);
475 copy[strlen(copy) - 1] = 0;
477 if (!strcmp(unittable[i].uname, copy)) {
478 strlcpy(buffer, copy, sizeof(buffer));
479 free(copy);
483 free(copy);
486 copy
[all...]
/freebsd-10.0-release/crypto/openssh/contrib/cygwin/
H A DMakefile65 install-copy-id: $(copyidsrcdir)/ssh-copy-id $(copyidsrcdir)/ssh-copy-id.1
66 $(INSTALL) -m 755 $(copyidsrcdir)/ssh-copy-id $(DESTDIR)$(bindir)/ssh-copy-id
67 $(INSTALL) -m 644 $(copyidsrcdir)/ssh-copy-id.1 $(DESTDIR)$(mandir)/man1/ssh-copy-id.1
76 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
/freebsd-10.0-release/lib/libc/i386/string/
H A Dswab.S37 * copy len bytes from src to dst, swapping adjacent bytes
57 testl $7,%ecx # copy first group of 1 to 7 words
67 L2: shrl $3,%ecx # copy remainder 8 words at a time
/freebsd-10.0-release/usr.bin/printf/
H A Dprintf.c339 static char *copy; local
347 if ((newcopy = realloc(copy, newlen)) == NULL)
352 copy = newcopy;
356 memmove(copy, str, len - 3);
357 copy[len - 3] = 'j';
358 copy[len - 2] = ch;
359 copy[len - 1] = '\0';
360 return (copy);
/freebsd-10.0-release/contrib/compiler-rt/BlocksRuntime/
H A Druntime.c5 * to any person obtaining a copy of this software and associated documentation
7 * including without limitation the rights to use, copy, modify, merge, publish,
284 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
312 // Its a stack block. Make a copy.
322 //printf("calling block copy helper %p(%p, %p)...\n", aBlock->descriptor->copy, result, aBlock);
323 (*aBlock->descriptor->copy)(result, aBlock); // do fixup
329 // This allows the copy helper routines to make non-refcounted block copies under GC
336 // if we copy a malloc block to a GC block then we need to clear NEEDS_FREE.
344 //printf("calling block copy helpe
382 struct Block_byref *copy = (struct Block_byref *)_Block_allocator(src->size, false, isWeak); local
[all...]
/freebsd-10.0-release/lib/libstand/
H A Denvironment.c61 * If the EV_VOLATILE flag is set, a copy of the variable is made.
164 char *value, *copy; local
167 copy = strdup(string);
168 if ((value = strchr(copy, '=')) != NULL)
170 result = setenv(copy, value, 1);
171 free(copy);
/freebsd-10.0-release/contrib/flex/
H A Dnfa.c83 int copy, i; local
85 copy = mkstate (SYM_EPSILON);
88 copy = link_machines (copy, dupmachine (singl));
90 return copy;
138 * copy = dupmachine( mach );
140 * copy - holds duplicate of mach
143 * note that the copy of mach is NOT an exact duplicate; rather, all the
144 * transition states values are adjusted so that the copy is self-contained,
548 int base_mach, tail, copy, local
[all...]

Completed in 199 milliseconds

1234567891011>>