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

1 2

  /bionic/libc/arch-x86/silvermont/string/
sse2-stpncpy-slm.S 33 #define STRCPY stpncpy
  /bionic/libc/arch-x86_64/string/
sse2-stpncpy-slm.S 33 #define STRCPY stpncpy
  /bionic/libc/upstream-openbsd/lib/libc/string/
stpncpy.c 1 /* $OpenBSD: stpncpy.c,v 1.3 2015/08/31 02:53:57 guenther Exp $ */
38 stpncpy(char *dst, const char *src, size_t n) function
57 DEF_WEAK(stpncpy); variable
  /external/clang/test/Sema/
builtins-gnu-mode.c 7 int stpncpy; variable
  /external/syslinux/com32/lib/
stpncpy.c 2 * stpncpy.c
4 * stpncpy()
9 char *stpncpy(char *dst, const char *src, size_t n) function
  /toolchain/binutils/binutils-2.27/libiberty/
stpncpy.c 1 /* Implement the stpncpy function.
23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, @
42 stpncpy (char *dst, const char *src, size_t len) function
  /external/valgrind/memcheck/tests/
stpncpy.c 20 c = stpncpy (b, a, l + 3);
30 e = stpncpy (d, b, l - 1);
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...]
  /external/elfutils/backends/
sparc_regs.c 71 return stpncpy (name, names[ebl->class == ELFCLASS64][regno],
  /external/syslinux/com32/include/
string.h 37 __extern char *stpncpy(char *, const char *, size_t);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string3.h 129 size_t __n), stpncpy);
132 __NTH (stpncpy (char *__dest, __const char *__src, size_t __n)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string3.h 129 size_t __n), stpncpy);
132 __NTH (stpncpy (char *__dest, __const char *__src, size_t __n)) function
  /bionic/tests/headers/posix/
string_h.c 45 FUNCTION(stpncpy, char* (*f)(char*, const char*, size_t));
  /bionic/tests/
fortify_test.cpp 64 ASSERT_FORTIFY(stpncpy(myfoo.a, "01234567890", copy_amt));
71 ASSERT_FORTIFY(stpncpy(myfoo.b, myfoo.one, sizeof(myfoo.b)));
526 ASSERT_FORTIFY(stpncpy(bufb, bufa, n));
533 ASSERT_FORTIFY(stpncpy(dest, src, sizeof(dest)));
834 TEST(TEST_NAME, stpncpy) {
838 stpncpy(dst, src, sizeof(dst));
855 stpncpy(dst, src, sizeof(dst));
string_test.cpp 676 TEST(STRING_TEST, stpncpy) {
702 ASSERT_EQ(state.ptr2 + expected_end, stpncpy(state.ptr2, state.ptr1, copy_len));
739 ASSERT_EQ(state.ptr2 + expected_end, stpncpy(state.ptr2, state.ptr1, copy_len));
    [all...]
  /bionic/libc/include/bits/fortify/
string.h 134 char* stpncpy(char* const dst __pass_object_size, const char* const src __pass_object_size, size_t n)
286 char* stpncpy(char* dst, const char* src, size_t n) {
  /external/autotest/client/site_tests/platform_ToolchainTests/src/
clang-fortify-tests.cpp 147 EXPECT_DEATH(stpncpy(small_buffer, large_string, sizeof(large_string)));
190 stpncpy(split.tiny_buffer, small_string, sizeof(small_string)));
  /bionic/libc/include/
string.h 106 char* stpncpy(char* __dst, const char* __src, size_t __n) __INTRODUCED_IN(21);
  /external/syslinux/com32/libutil/
sha256crypt.c 455 cp = stpncpy(buffer, sha256_salt_prefix, MAX(0, buflen));
465 cp = stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len));
sha512crypt.c 490 cp = stpncpy(buffer, sha512_salt_prefix, MAX(0, buflen));
500 cp = stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len));
  /bionic/libc/bionic/
fortify.cpp 239 __check_buffer_access("stpncpy", "write into", len, dst_len);
240 return stpncpy(dst, src, len);
245 // based on the original version of stpncpy, but modified to check
248 __check_buffer_access("stpncpy", "write into", n, dst_len);
265 __fortify_fatal("stpncpy: detected read past end of %zu-byte buffer", src_len);
  /external/syslinux/mk/
lib.mk 74 stpncpy.o \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
string.h 579 extern char *stpncpy (char *__restrict __dest,
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 271 TLI.setUnavailable(LibFunc::stpncpy);
552 case LibFunc::stpncpy:
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 142 case LibFunc::stpncpy:
    [all...]

Completed in 309 milliseconds

1 2