Searched defs:stpcpy (Results 1 - 12 of 12) sorted by relevance

/external/bison/lib/
H A Dstpcpy.c0 /* stpcpy.c -- copy a string and return pointer to end of new string
27 # undef stpcpy macro
31 # define __stpcpy stpcpy
48 weak_alias (__stpcpy, stpcpy)
H A Dstring.in.h247 _GL_FUNCDECL_SYS (stpcpy, char *,
251 _GL_CXXALIAS_SYS (stpcpy, char *,
253 _GL_CXXALIASWARN (stpcpy); variable
255 # undef stpcpy macro
257 _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - "
258 "use gnulib module stpcpy for portability");
/external/clang/INPUTS/
H A Dstpcpy-test.c4 #define stpcpy(dest, src) __stpcpy (dest, src) macro
15 stpcpy (stpcpy (stpcpy (stpcpy (a, b), c), d), e)
16 stpcpy (stpcpy (stpcpy (stpcpy (a, b), c), d), e)
17 stpcpy (stpcp
[all...]
/external/clang/test/Sema/
H A Dbuiltins-gnu-mode.c6 int stpcpy; variable
/external/bison/darwin-lib/
H A Dstring.h559 _GL_FUNCDECL_SYS (stpcpy, char *,
563 _GL_CXXALIAS_SYS (stpcpy, char *,
565 _GL_CXXALIASWARN (stpcpy); variable
567 # undef stpcpy macro
569 _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - "
570 "use gnulib module stpcpy for portability");
/external/bison/linux-lib/
H A Dstring.h559 _GL_FUNCDECL_SYS (stpcpy, char *,
563 _GL_CXXALIAS_SYS (stpcpy, char *,
565 _GL_CXXALIASWARN (stpcpy); variable
567 # undef stpcpy macro
569 _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - "
570 "use gnulib module stpcpy for portability");
/external/e2fsprogs/intl/
H A Dl10nflist.c19 /* Tell glibc's <string.h> to provide a prototype for stpcpy().
56 # ifndef stpcpy
57 # define stpcpy(dest, src) __stpcpy(dest, src) macro
61 #define stpcpy(dest, src) my_stpcpy(dest, src) macro
62 static char *stpcpy (char *dest, const char *src);
226 cp = stpcpy (cp, language);
231 cp = stpcpy (cp, territory);
236 cp = stpcpy (cp, codeset);
241 cp = stpcpy (cp, normalized_codeset);
248 cp = stpcpy (c
416 stpcpy (char *dest, const char *src) function
[all...]
H A Ddcigettext.c142 # ifndef stpcpy
143 # define stpcpy __stpcpy macro
158 #define stpcpy(dest, src) my_stpcpy(dest, src) macro
159 static char *stpcpy (char *dest, const char *src);
558 stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname);
570 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),
1167 avoid the non-standard function stpcpy
1172 stpcpy (char *dest, const char *src) function
[all...]
/external/strace/
H A Dutil.c154 stpcpy(char *dst, const char *src) function
309 outptr = stpcpy(outstr, prefix);
315 outptr = stpcpy(outptr, xlat->str);
H A Ddefs.h75 /* Some libc have stpcpy, some don't. Sigh...
78 #undef stpcpy macro
79 #define stpcpy strace_stpcpy macro
80 extern char *stpcpy(char *dst, const char *src);
/external/clang/test/Analysis/
H A Dstring.c307 // stpcpy()
315 #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1) macro
319 #define stpcpy BUILTIN(stpcpy) macro
320 char *stpcpy(char *restrict s1, const char *restrict s2);
328 clang_analyzer_eval(stpcpy(x, y) == &x[strlen(y)]); // expected-warning{{TRUE}}
336 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
342 stpcpy(x, y); // no-warning
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h557 /// char *stpcpy(char *s1, const char *s2);
558 stpcpy, enumerator in enum:llvm::LibFunc::Func
746 case LibFunc::stpcpy: case LibFunc::strlen: case LibFunc::strnlen:

Completed in 2932 milliseconds