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

1 2 3

  /bionic/libc/arch-x86/silvermont/string/
sse2-stpcpy-slm.S 32 #define STRCPY stpcpy
  /bionic/libc/arch-x86_64/string/
sse2-stpcpy-slm.S 32 #define STRCPY stpcpy
  /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...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
stpcpy.c 1 /* $OpenBSD: stpcpy.c,v 1.2 2014/07/09 17:08:21 naddy Exp $ */
35 __warn_references(stpcpy,
36 "warning: stpcpy() is dangerous; do not use it");
40 stpcpy(char *to, const char *from) function
  /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/0.153/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;
arm_regs.c 89 return stpcpy (name, "spsr") + 1 - name;
  /external/clang/test/Sema/
builtins-gnu-mode.c 6 int stpcpy; variable
  /bionic/libc/bionic/
__stpcpy_chk.cpp 43 * This stpcpy check is called if _FORTIFY_SOURCE is defined and
50 __fortify_chk_fail("stpcpy: prevented write past end of buffer",
54 return stpcpy(dest, src);
  /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/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);
  /bionic/libc/arch-arm64/generic/bionic/
string_copy.S 62 #if !defined(STPCPY) && !defined(STRCPY)
63 #error "Either STPCPY or STRCPY must be defined."
69 #if defined(STPCPY)
99 #if defined(STPCPY)
100 ENTRY(stpcpy) function
137 #if defined(STPCPY)
154 #if defined(STPCPY)
158 #if defined(STPCPY)
171 #if defined(STPCPY)
188 #if defined(STPCPY)
    [all...]
  /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);
  /bionic/libc/arch-mips64/
mips64.mk 33 upstream-openbsd/lib/libc/string/stpcpy.c \
  /bionic/libc/arch-x86_64/
x86_64.mk 55 arch-x86_64/string/sse2-stpcpy-slm.S \
  /external/elfutils/0.153/src/
objdump.c 325 cp = stpcpy (cp, prefix);
326 cp = stpcpy (cp, fname);
327 stpcpy (cp, "[");
331 cp = stpcpy (cp, suffix);
332 stpcpy (cp, "]");

Completed in 892 milliseconds

1 2 3