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

  /external/bison/lib/
stpcpy.c 25 #undef __stpcpy macro
31 # define __stpcpy stpcpy macro
36 __stpcpy (char *dest, const char *src) function
48 weak_alias (__stpcpy, stpcpy)
  /external/clang/INPUTS/
stpcpy-test.c 3 #define __stpcpy(dest, src) (__extension__ (__builtin_constant_p (src) ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 ? __stpcpy_small (dest, __stpcpy_args (src), strlen (src) + 1) : ((char *) __mempcpy (dest, src, strlen (src) + 1) - 1)) : __stpcpy (dest, src))) macro
4 #define stpcpy(dest, src) __stpcpy (dest, src)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
string2.h 577 # define __stpcpy(dest, src) __builtin_stpcpy (dest, src) macro
579 # define __stpcpy(dest, src) \ macro
585 : __stpcpy (dest, src)))
587 # define __stpcpy(dest, src) \ macro
594 : __stpcpy (dest, src)))
597 we have to use the name `__stpcpy'. */
598 # define stpcpy(dest, src) __stpcpy (dest, src)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string2.h 577 # define __stpcpy(dest, src) __builtin_stpcpy (dest, src) macro
579 # define __stpcpy(dest, src) \ macro
585 : __stpcpy (dest, src)))
587 # define __stpcpy(dest, src) \ macro
594 : __stpcpy (dest, src)))
597 we have to use the name `__stpcpy'. */
598 # define stpcpy(dest, src) __stpcpy (dest, src)
    [all...]

Completed in 78 milliseconds