Searched refs:strcpy (Results 1 - 25 of 689) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D921203-1.c4 strcpy(dispstr,"xxxxxxxxxxx");
H A D990625-1.c10 p = strcpy(strcpy(p,"/"), s);
/openbsd-current/regress/gnu/egcs/gcc-builtins/
H A Dstrcpy-1.c.exp0 strcpy-1.c:: warning: strcpy() is almost always misused, please use strlcpy()
H A Dstrcpy-2.c9 strcpy(buf, "foo");
H A Dstrcpy-2.c.exp0 strcpy-2.c:: warning: strcpy() is almost always misused, please use strlcpy()
H A Dstrcpy-1.c10 rv = strcpy(buf, argv[0]);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-13.c4 and perform correctly. The multiple calls to strcpy are to prevent
12 extern char *strcpy (char *, const char *);
21 strcpy (ptr, "nts");
25 strcpy (ptr, "nts");
29 strcpy (ptr, "nts");
33 strcpy (ptr, "nts");
37 strcpy (ptr, "nts");
41 strcpy (ptr, "nts");
H A Dstring-opt-6.c3 Ensure builtin memcpy and strcpy perform correctly.
8 extern char *strcpy (char *, const char *);
17 if (strcpy (p, "abcde") != p || memcmp (p, "abcde", 6))
19 if (strcpy (p + 16, "vwxyz" + 1) != p + 16 || memcmp (p + 16, "wxyz", 5))
21 if (strcpy (p + 1, "") != p + 1 || memcmp (p, "a\0cde", 6))
23 if (strcpy (p + 3, "fghij") != p + 3 || memcmp (p, "a\0cfghij", 9))
49 strcpy (char *d, const char *s) function
H A Dstring-opt-10.c11 extern char *strcpy (char *, const char *);
21 strcpy (dst, s1);
24 strcpy (dst, s1);
27 strcpy (dst, s1); d2 = dst;
30 strcpy (dst, s1); d2 = dst;
33 strcpy (dst, s1); d2 = dst;
36 strcpy (dst, s1); d2 = dst;
39 strcpy (dst, s1); d2 = dst;
44 strcpy (dst, s1);
47 strcpy (ds
[all...]
H A Dbuilt-in-setjmp.c2 extern char *strcpy(char *, const char *);
19 strcpy (p, "test");
H A Dstring-opt-11.c11 extern char *strcpy (char *, const char *);
28 strcpy (dst, s1);
31 strcpy (dst, s1); d2 = dst;
34 strcpy (dst, s1); d2 = dst;
39 strcpy (dst, s1);
42 strcpy (dst, s1); d2 = dst;
45 strcpy (dst, s1); d2 = dst;
H A Dstring-opt-12.c11 extern char *strcpy (char *, const char *);
28 strcpy (dst, s1);
31 strcpy (dst, s1); d2 = dst;
34 strcpy (dst, s1); d2 = dst;
39 strcpy (dst, s1);
42 strcpy (dst, s1); d2 = dst;
45 strcpy (dst, s1); d2 = dst;
H A Dstring-opt-9.c11 extern char *strcpy (char *, const char *);
20 strcpy (dst, s1);
23 strcpy (dst, s1);
26 strcpy (dst, s1); d2 = dst;
29 strcpy (dst, s1); d2 = dst;
32 strcpy (dst, s1); d2 = dst;
38 strcpy (dst, s1);
H A Dstring-opt-15.c12 extern char *strcpy (char *, const char *);
19 strcpy (str, "3141");
H A D921117-1.c17 strcpy (cell.text, "0123456789");
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dpaste10.c9 #define strcpy(src) __strcpy_small (src) macro
15 strcpy(tprintf("<%s>", test))
/openbsd-current/lib/libc/string/
H A Dstrcpy.c1 /* $OpenBSD: strcpy.c,v 1.10 2017/11/28 06:55:49 tb Exp $ */
35 __warn_references(strcpy,
36 "strcpy() is almost always misused, please use strlcpy()");
40 strcpy(char *to, const char *from) function
/openbsd-current/gnu/gcc/libmudflap/testsuite/libmudflap.c/
H A Dfail4-frag.c7 strcpy(foo, "1234567890");
H A Dpass4-frag.c7 strcpy (foo, "123456789");
H A Dfail17-frag.c10 strcpy (x, "123456789");
H A Dhook-allocstuff.c7 strcpy (foo, "hello");
/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dxstrdup.c32 return strcpy (xmalloc (strlen (string) + 1), string);
/openbsd-current/gnu/lib/libiberty/src/
H A Dchoose-temp.c66 strcpy (temp_filename, base);
67 strcpy (temp_filename + len, TEMP_FILE);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dnest21.C36 std::strcpy(output, tempout);
44 std::strcpy (output, tempout);
51 std::strcpy (output, tempout);
58 std::strcpy (output, tempout);
65 std::strcpy (output, tempout);
72 std::strcpy (output, tempout);
/openbsd-current/gnu/usr.bin/perl/vms/
H A Dmunchconfig.c105 strcpy(WorkString, argv[i]);
111 strcpy(TildeSub[TildeSubCount].Tag, WorkString);
112 strcpy(TildeSub[TildeSubCount].Value, TempValue);
134 strcpy(WorkString, LineBuffer);
140 strcpy(TildeSub[TildeSubCount].Tag, WorkString);
141 strcpy(TildeSub[TildeSubCount].Value, TempValue);
208 strcpy(ConfigSub[ConfigSubCount].Tag, LineBuffer);
210 strcpy(ConfigSub[ConfigSubCount].Value, TempValue);
442 strcpy(LineBuffer, TempBuffer);

Completed in 123 milliseconds

1234567891011>>