HomeSort by relevance Sort by last modified time
    Searched defs:stpcpy (Results 1 - 20 of 20) sorted by null

  /external/bison/lib/
stpcpy.c 0 /* 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)
string.in.h 247 _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");
    [all...]
  /external/clang/INPUTS/
stpcpy-test.c 4 #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 (stpcpy (stpcpy (stpcpy (a, b), c), d), e
    [all...]
  /external/elfutils/bionic-fixup/
AndroidFixup.h 73 /* workaround for stpcpy */
74 static inline char *stpcpy(char *dst, const char *src) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 39 # undef stpcpy macro
111 __NTH (stpcpy (char *__restrict __dest, __const char *__restrict __src)) function
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 39 # undef stpcpy macro
111 __NTH (stpcpy (char *__restrict __dest, __const char *__restrict __src)) function
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 39 # undef stpcpy macro
111 __NTH (stpcpy (char *__restrict __dest, __const char *__restrict __src)) function
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 51 #undef stpcpy macro
121 #define stpcpy(dest, src) \ macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 51 #undef stpcpy macro
121 #define stpcpy(dest, src) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
string.h 51 #undef stpcpy macro
121 #define stpcpy(dest, src) \ macro
  /external/e2fsprogs/intl/
l10nflist.c 19 /* 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 (cp, modifier)
416 stpcpy (char *dest, const char *src) function
    [all...]
dcigettext.c 142 # 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. In GNU C Library thi
1172 stpcpy (char *dest, const char *src) function
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 136 extern char *stpcpy (char *restrict __dst, char const *restrict __src);
139 # undef stpcpy macro
140 # define stpcpy(a,b) \ macro
141 (GL_LINK_WARNING ("stpcpy is unportable - " \
142 "use gnulib module stpcpy for portability"), \
143 stpcpy (a, b))
  /external/bison/darwin-lib/
string.h 559 _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");
    [all...]
  /external/bison/linux-lib/
string.h 559 _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");
    [all...]
  /external/clang/test/Analysis/
string.c 303 // stpcpy()
311 #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1) macro
315 #define stpcpy BUILTIN(stpcpy) macro
316 char *stpcpy(char *restrict s1, const char *restrict s2);
324 clang_analyzer_eval(stpcpy(x, y) == &x[strlen(y)]); // expected-warning{{TRUE}}
332 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
338 stpcpy(x, y); // no-warning
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 504 /// char *stpcpy(char *s1, const char *s2);
505 stpcpy, enumerator in enum:llvm::LibFunc::Func

Completed in 839 milliseconds