HomeSort by relevance Sort by last modified time
    Searched refs:stpncpy (Results 1 - 9 of 9) sorted by null

  /external/elfutils/backends/
sparc_regs.c 68 return stpncpy (name, names[ebl->machine != EM_SPARC][regno],
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 150 # define stpncpy gnu_stpncpy macro
151 extern char *stpncpy (char *restrict __dst, char const *restrict __src,
155 # undef stpncpy macro
156 # define stpncpy(a,b,n) \ macro
157 (GL_LINK_WARNING ("stpncpy is unportable - " \
158 "use gnulib module stpncpy for portability"), \
159 stpncpy (a, b, n))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 130 size_t __n), stpncpy);
133 __NTH (stpncpy (char *__dest, __const char *__src, size_t __n)) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 130 size_t __n), stpncpy);
133 __NTH (stpncpy (char *__dest, __const char *__src, size_t __n)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 130 size_t __n), stpncpy);
133 __NTH (stpncpy (char *__dest, __const char *__src, size_t __n)) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 378 extern char *stpncpy (char *__restrict __dest,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 378 extern char *stpncpy (char *__restrict __dest,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 378 extern char *stpncpy (char *__restrict __dest,
  /external/valgrind/main/memcheck/tests/
str_tester.c 272 it = "stpncpy";
274 check (stpncpy (one, "abc", 2) == one + 2, 1);
275 check (stpncpy (one, "abc", 3) == one + 3, 2);
276 check (stpncpy (one, "abc", 4) == one + 3, 3);
278 check (stpncpy (one, "abcd", 5) == one + 4, 5);
280 check (stpncpy (one, "abcd", 6) == one + 4, 7);
    [all...]

Completed in 656 milliseconds