HomeSort by relevance Sort by last modified time
    Searched refs:stpcpy (Results 1 - 25 of 65) sorted by null

1 2 3

  /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/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/elfutils/backends/
alpha_regs.c 100 return stpcpy (name, "ra") + 1 - name;
103 return stpcpy (name, "t12") + 1 - name;
106 return stpcpy (name, "at") + 1 - name;
110 return stpcpy (name, "gp") + 1 - name;
114 return stpcpy (name, "sp") + 1 - name;
117 return stpcpy (name, "zero") + 1 - name;
140 return stpcpy (name, "f30") + 1 - name;
144 return stpcpy (name, "fpcr") + 1 - name;
148 return stpcpy (name, "pc") + 1 - name;
152 return stpcpy (name, "unique") + 1 - name
    [all...]
ppc_regs.c 98 return stpcpy (name, "cr") + 1 - name;
100 return stpcpy (name, "fpscr") + 1 - name;
102 return stpcpy (name, "msr") + 1 - name;
104 return stpcpy (name, "vscr") + 1 - name;
122 return stpcpy (name, "xer") + 1 - name;
124 return stpcpy (name, "lr") + 1 - name;
126 return stpcpy (name, "ctr") + 1 - name;
128 return stpcpy (name, "dsisr") + 1 - name;
130 return stpcpy (name, "dar") + 1 - name;
132 return stpcpy (name, "dec") + 1 - name
    [all...]
i386_regs.c 101 return stpcpy (name, "eflags") + 1 - name;
103 return stpcpy (name, "trapno") + 1 - name;
129 return stpcpy (name, "fctrl") + 1 - name;
132 return stpcpy (name, "fstat") + 1 - name;
134 return stpcpy (name, "mxcsr") + 1 - name;
x86_64_regs.c 156 return stpcpy (&name[1], "s.base") + 1 - name;
160 return stpcpy (name, "rflags") + 1 - name;
162 return stpcpy (name, "tr") + 1 - name;
164 return stpcpy (name, "ldtr") + 1 - name;
166 return stpcpy (name, "mxcsr") + 1 - name;
s390_regs.c 131 return stpcpy (name, "pswm") + 1 - name;
134 return stpcpy (name, "pswa") + 1 - name;
ia64_regs.c 130 return stpcpy (name, named_special[regno - 328]) + 1 - name;
137 return stpcpy (name, "bof") + 1 - name;
177 return stpcpy (name, named_ar[idx]) + 1 - name;
  /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...]
  /external/valgrind/main/memcheck/tests/
str_tester.c 188 it = "stpcpy";
189 check ((stpcpy (one, "a") - one) == 1, 1);
192 check ((stpcpy (one, "ab") - one) == 2, 3);
195 check ((stpcpy (one, "abc") - one) == 3, 5);
198 check ((stpcpy (one, "abcd") - one) == 4, 7);
201 check ((stpcpy (one, "abcde") - one) == 5, 9);
204 check ((stpcpy (one, "abcdef") - one) == 6, 11);
207 check ((stpcpy (one, "abcdefg") - one) == 7, 13);
210 check ((stpcpy (one, "abcdefgh") - one) == 8, 15);
213 check ((stpcpy (one, "abcdefghi") - one) == 9, 17)
    [all...]
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 18 char *stpcpy(char *s1, const char *s2);
79 char *t13(char *x) { return stpcpy(x, "foo"); }
81 // CHECK: stpcpy
  /external/clang/test/Analysis/
taint-generic.c 23 char *stpcpy(char *restrict s1, const char *restrict s2);
88 stpcpy(*(++p), s); // this generates __inline.
92 stpcpy(spcpy, s);
96 spcpyret = stpcpy(spcpy, s);
  /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/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.4.3/sysroot/usr/include/bits/
string3.h 39 # undef stpcpy macro
111 __NTH (stpcpy (char *__restrict __dest, __const char *__restrict __src)) function
  /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/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
  /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
  /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
  /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/valgrind/main/exp-sgcheck/
h_intercepts.c 281 #define STPCPY(soname, fnname) \
291 STPCPY(VG_Z_LIBC_SONAME, stpcpy)
293 STPCPY(VG_Z_LD_LINUX_SO_2, stpcpy)
294 STPCPY(VG_Z_LD_LINUX_X86_64_SO_2, stpcpy)
  /external/bison/src/
print-xml.c 474 case '&': p = stpcpy (p, "&amp;" ); break;
475 case '<': p = stpcpy (p, "&lt;" ); break;
476 case '>': p = stpcpy (p, "&gt;" ); break;
477 case '"': p = stpcpy (p, "&quot;"); break;
files.c 97 cp = stpcpy (res, str1);
98 cp = stpcpy (cp, str2);

Completed in 523 milliseconds

1 2 3