HomeSort by: relevance | last modified time | path
    Searched refs:copy (Results 1 - 25 of 278) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/compat/stdlib/
compat_putenv.c 64 char *copy; local in function:__weak_alias
75 if ((copy = strdup(name)) == NULL)
77 copy[l_name++] = '\0';
79 rv = setenv(copy, copy + l_name, 1);
81 free(copy);
  /src/lib/libc/string/
strdup.c 56 char *copy; local in function:__weak_alias
61 if (!(copy = malloc(len)))
63 memcpy(copy, str, len);
64 return (copy);
strndup.c 61 char *copy; local in function:__weak_alias
68 if (!(copy = malloc(len + 1)))
70 memcpy(copy, str, len);
71 copy[len] = '\0';
72 return (copy);
wcsdup.c 9 * Permission to use or copy this software for any purpose is hereby granted
31 wchar_t *copy; local in function:__weak_alias
38 copy = NULL;
39 errno = reallocarr(&copy, len, sizeof(*copy));
43 return wmemcpy(copy, str, len);
  /src/sys/arch/ia64/stand/common/
strdup.c 53 char *copy = NULL; local in function:strdup
57 if ((copy = alloc(len)) == NULL)
59 memcpy(copy, str, len);
61 return (copy);
  /src/lib/csu/arch/hppa/
crt0.S 54 copy %r27, %r19
60 copy %arg0, %arg2 ; ps_strings -> tmp
61 copy %arg1, %arg0 ; cleanup -> arg0
63 copy %arg2, %arg1 ; ps_strings -> arg1
crti.S 46 copy %r3, %r1 ! \
47 copy %sp, %r3 ! \
  /src/tests/kernel/arch/hppa/
threadspfunc.S 42 copy %sp, %ret0 /* return sp */
  /src/lib/libc/arch/hppa/sys/
__vfork14.S 55 copy %rp, %t4
62 copy %t4, %rp // delay slot of branch to __cerror
__clone.S 62 copy %arg2, %arg0
80 copy %r31, %rp
84 copy %ret0, %arg0
pipe.S 57 copy %r0, %ret0
  /src/sys/kern/
vfs_cwd.c 52 struct cwdinfo *copy; local in function:cwdinit
57 copy = curproc->p_cwdi;
59 rw_enter(&copy->cwdi_lock, RW_READER);
60 cwdi->cwdi_cdir = copy->cwdi_cdir;
63 cwdi->cwdi_rdir = copy->cwdi_rdir;
66 cwdi->cwdi_edir = copy->cwdi_edir;
69 rw_exit(&copy->cwdi_lock);
71 cwdi->cwdi_cmask = copy->cwdi_cmask;
  /src/common/dist/zlib/
inflate.c 22 * - Unroll direct copy to three copies per loop in inffast.c
39 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
48 * - Unroll last copy for window match in inflate_fast()
370 local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
391 /* copy state->wsize or less output bytes into the circular window */
392 if (copy >= state->wsize) {
399 if (dist > copy) dist = copy;
400 zmemcpy(state->window + state->wnext, end - copy, dist);
401 copy -= dist
600 unsigned copy; \/* number of stored or match bytes to copy *\/ local in function:inflate
1450 struct inflate_state FAR *copy; local in function:inflateCopy
    [all...]
infback.c 252 unsigned copy; /* number of stored or match bytes to copy */ local in function:inflateBack
253 unsigned char FAR *from; /* where to copy match bytes from */
256 unsigned len; /* length to copy for repeats, bits to drop */
329 /* copy stored block from input to output */
331 copy = state->length;
334 if (copy > have) copy = have;
335 if (copy > left) copy = left
    [all...]
  /src/sys/lib/libkern/arch/hppa/
milli_extra.S 41 copy %arg0, %ret0
  /src/common/dist/zlib/contrib/infback9/
infback9.c 226 unsigned long length; /* literal or length of data to copy */
227 unsigned long offset; /* distance back to copy string from */
228 unsigned long copy; /* number of stored or match bytes to copy */ local in function:inflateBack9
229 unsigned char FAR *from; /* where to copy match bytes from */
236 unsigned len; /* length to copy for repeats, bits to drop */
316 /* copy stored block from input to output */
318 copy = length;
321 if (copy > have) copy = have
    [all...]
  /src/libexec/ld.elf_so/arch/hppa/
rtld_start.S 40 copy %r3, %r1
41 copy %sp, %r3
79 copy %arg1, %r4 ; save for later
99 copy %r4, %arg1 ; %arg1 = relocbase
113 copy %r0, %rp
161 copy %r3, %r1
162 copy %sp, %r3
199 copy %r19, %arg1
206 copy %r21, %r19
238 copy %arg0, %d
    [all...]
  /src/common/dist/zlib/contrib/minizip/
make_vms.com 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
3 $ copy sys$input: zdef
12 $ copy vmsdefs.h,ioapi.h_orig ioapi.h
  /src/lib/libc/arch/x86_64/string/
swab.S 22 testq $7,%rdx # copy first group of 1 to 7 words
31 L2: shrq $3,%rdx # copy remainder 8 words at a time
  /src/lib/libc/compat/arch/hppa/sys/
compat___sigtramp1.S 54 * permission to use, copy, modify, and distribute this file
95 * code wanted it set to. Since we copy it into arg0,
101 copy %r3, %arg0
107 copy %ret0, %arg0
  /src/sys/arch/hppa/hppa/
sigcode.S 51 * permission to use, copy, modify, and distribute this file
100 * code wanted it set to. Since we copy it into arg0,
106 copy %r3, %arg0
112 copy %ret0, %arg0
  /src/usr.bin/resize/
Makefile 17 .if make(copy)
20 copy:: ${.CURDIR}/${i} target
  /src/usr.bin/audio/common/
decode.c 80 char *copy = strdup(arg); local in function:decode_time
83 if (copy == NULL)
84 err(1, "could not allocate a copy of %s", arg);
87 s = copy;
120 free(copy);
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_draw.c 7 * copy of this software and associated documentation files (the "Software"),
9 * on the rights to use, copy, modify, merge, publish, distribute, sub
226 drawable->u.copy.src_area.top = 0;
227 drawable->u.copy.src_area.bottom = height;
228 drawable->u.copy.src_area.left = 0;
229 drawable->u.copy.src_area.right = width;
231 drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT;
232 drawable->u.copy.scale_mode = 0;
233 drawable->u.copy.mask.flags = 0;
234 drawable->u.copy.mask.pos.x = 0
    [all...]
  /src/usr.sbin/acpitools/aml/
aml_parse.c 549 struct aml_environ *copy; local in function:aml_parse_defpackage
556 copy = memman_alloc(aml_memman, memid_aml_environ);
557 if (copy == NULL) {
574 *copy = *env;
575 env->dp = copy->end = start + pkglength;
578 while ((copy->dp < copy->end) && (i < numelements)) {
580 tmpname = aml_parse_termobj(copy, indent + 1);
583 objects[i] = aml_copy_object(copy, tmpname->property);
588 aml_free_objectcontent(&copy->tempobject)
608 struct aml_environ *copy; local in function:aml_parse_defmethod
782 struct aml_environ *copy; local in function:aml_parse_deffield
826 struct aml_environ *copy; local in function:aml_parse_defindexfield
871 struct aml_environ *copy; local in function:aml_parse_defbankfield
921 struct aml_environ *copy; local in function:aml_parse_defdevice
959 struct aml_environ *copy; local in function:aml_parse_defprocessor
1004 struct aml_environ *copy; local in function:aml_parse_defpowerres
1049 struct aml_environ *copy; local in function:aml_parse_defthermalzone
    [all...]

Completed in 53 milliseconds

1 2 3 4 5 6 7 8 91011>>