Searched refs:dst (Results 226 - 250 of 1955) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/lib/libc/locale/
H A Dwcsftime.c60 char *dst, *dstp, *sformat; local
64 sformat = dst = NULL;
88 dst = malloc(maxsize * MB_CUR_MAX);
89 if (dst == NULL)
91 if (strftime(dst, maxsize, sformat, timeptr) == 0)
93 dstp = dst;
99 free(dst);
105 free(dst);
/netbsd-6-1-5-RELEASE/lib/libc/ssp/
H A Dmemcpy_chk.c42 __memcpy_chk(void * __restrict dst, const void * __restrict src, size_t len, argument
47 return memcpy(dst, src, len);
H A Dmemmove_chk.c42 __memmove_chk(void *dst, void *src, size_t len, argument
47 return memmove(dst, src, len);
H A Dmemset_chk.c42 __memset_chk(void * __restrict dst, int val, size_t len, size_t slen) argument
46 return memset(dst, val, len);
H A Dstrcpy_chk.c42 __strcpy_chk(char * __restrict dst, const char * __restrict src, size_t slen) argument
49 return memcpy(dst, src, len + 1);
H A Dstrncpy_chk.c42 __strncpy_chk(char * __restrict dst, const char * __restrict src, size_t len, argument
48 return strncpy(dst, src, len);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dmempcpy.c39 mempcpy (PTR dst, const PTR src, size_t len) argument
41 return (char *) memcpy (dst, src, len) + len;
H A Dstpcpy.c23 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
25 Copies the string @var{src} into @var{dst}. Returns a pointer to
26 @var{dst} + strlen(@var{src}).
39 stpcpy (char *dst, const char *src) argument
42 return (char *) memcpy (dst, src, len + 1) + len;
H A Dstpncpy.c23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, @
26 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
28 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
42 stpncpy (char *dst, const char *src, size_t len) argument
47 return strncpy (dst, src, len) + n;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/cleanup/
H A Dcleanup_rewrite.c97 VSTRING *dst = vstring_alloc(100); local
102 did_rewrite = cleanup_rewrite_external(context_name, dst, STR(src));
104 tree->head = tok822_scan(STR(dst), &tree->tail);
105 vstring_free(dst);
115 VSTRING *dst = vstring_alloc(100); local
120 did_rewrite = cleanup_rewrite_external(context_name, dst, STR(src));
121 unquote_822_local(result, STR(dst));
122 vstring_free(dst);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dstpcpy.c23 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
25 Copies the string @var{src} into @var{dst}. Returns a pointer to
26 @var{dst} + strlen(@var{src}).
39 stpcpy (char *dst, const char *src) argument
42 return (char *) memcpy (dst, src, len + 1) + len;
H A Dstpncpy.c23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
25 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
27 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
41 stpncpy (char *dst, const char *src, size_t len) argument
46 return strncpy (dst, src, len) + n;
/netbsd-6-1-5-RELEASE/usr.sbin/dhcp/dst/
H A DMakefile5 LIB = dst
8 DHCPSRCDIR= dst
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dipc.h120 #define SYSCTL_FILL_PERM(src, dst) do { \
121 (dst)._key = (src)._key; \
122 (dst).uid = (src).uid; \
123 (dst).gid = (src).gid; \
124 (dst).cuid = (src).cuid; \
125 (dst).cgid = (src).cgid; \
126 (dst).mode = (src).mode; \
127 (dst)._seq = (src)._seq; \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20060420-1.c5 void __attribute__ ((noinline)) foo (float *dst, float **src, int a, int n) argument
11 for (j = 0; j < n && (((unsigned long) dst + j) & m); ++j)
16 dst[j] = t;
32 *(v4flt *) (dst + j + 0 * z) = t0;
33 *(v4flt *) (dst + j + 1 * z) = t1;
34 *(v4flt *) (dst + j + 2 * z) = t2;
35 *(v4flt *) (dst + j + 3 * z) = t3;
42 dst[j] = t;
52 float *dst, *src[2]; local
57 dst
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/pmax/ibus/
H A Dsii_ds.c47 volatile u_short *dst, int length);
48 static void kn230_copyfrombuf(volatile u_short *src, char *dst,
52 volatile u_short *dst, int length);
53 static void kn01_copyfrombuf(volatile u_short *src, char *dst,
131 kn230_copytobuf(u_short *src, volatile u_short *dst, int len) argument
134 volatile u_int *wdst = (volatile u_int *)dst;
141 if ((u_int)(dst) & 0x3) {
142 printf("kn230: copytobuf, dst %p misaligned\n", dst);
161 * XXX assumes dst i
165 kn230_copyfrombuf(volatile u_short *src, char *dst, int len) argument
204 kn01_copytobuf(u_short *src, volatile u_short *dst, int len) argument
219 kn01_copyfrombuf(volatile u_short *src, char *dst, int len) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hppa/hppa/
H A Ddb_memrw.c57 char *dst = (char *)addr; local
63 * dst is less than etext.
66 if (dst < (char *) &etext) {
67 hppa_ktext_stb((vaddr_t)dst, *data);
68 dst++;
71 *dst++ = *data++;
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A Dwcslcat.c41 * Appends src to string dst of size siz (unlike wcsncat, siz is the
42 * full size of dst, not space left). At most siz-1 characters
44 * Returns wcslen(initial dst) + wcslen(src); if retval >= siz,
48 wcslcat(dst, src, siz)
49 wchar_t *dst;
53 wchar_t *d = dst;
58 _DIAGASSERT(dst != NULL);
61 /* Find the end of dst and adjust bytes left but don't go past end */
64 dlen = d - dst;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dmsp430-dis.c98 short dst = 0; local
107 case 0: /* Emulated work with dst register. */
143 dst = msp430dis_opcode (addr + 2, info);
146 sprintf (op, "0x%04x", dst);
148 PS ((short) (addr + 2) + dst));
153 dst = msp430dis_opcode (addr + 2, info);
156 sprintf (op, "&0x%04x", PS (dst));
160 dst = msp430dis_opcode (addr + 2, info);
163 sprintf (op, "%d(r%d)", dst, regd);
221 dst
301 short dst = 0; local
552 short dst = 0; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dmsp430-dis.c98 short dst = 0; local
107 case 0: /* Emulated work with dst register. */
143 dst = msp430dis_opcode (addr + 2, info);
146 sprintf (op, "0x%04x", dst);
148 PS ((short) (addr + 2) + dst));
153 dst = msp430dis_opcode (addr + 2, info);
156 sprintf (op, "&0x%04x", PS (dst));
160 dst = msp430dis_opcode (addr + 2, info);
163 sprintf (op, "%d(r%d)", dst, regd);
221 dst
301 short dst = 0; local
552 short dst = 0; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/md5/asm/
H A Dmd5-x86_64.pl15 # dst = x + ((dst + F(x,y,z) + X[k] + T_i) <<< s)
21 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
26 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
30 add %r11d, $dst /* dst += ... */
31 rol \$$s, $dst /* dst <<<
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/cpl/tpm-tools/dist/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/cpl/trousers/dist/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openpam/dist/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/utils/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]

Completed in 493 milliseconds

1234567891011>>