/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | stpncpy.c | 41 stpncpy(dest, src, strlen(src)); in stpncpy_0100() 68 stpncpy(dest, src, strlen(src)); in stpncpy_0200() 93 stpncpy(dest, src, strlen(src)); in stpncpy_0300() 111 stpncpy(NULL, src, strlen(src)); in stpncpy_0400()
|
/third_party/musl/porting/linux/user/src/string/ |
H A D | stpncpy.c | 20 weak_alias(__stpncpy, stpncpy);
|
/third_party/musl/src/string/ |
H A D | stpncpy.c | 20 weak_alias(__stpncpy, stpncpy);
|
/third_party/elfutils/backends/ |
H A D | sparc_regs.c | 71 return stpncpy (name, names[ebl->class == ELFCLASS64][regno], in sparc_register_info()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | stpncpy.c | 31 weak_alias(__stpncpy, stpncpy);
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | stpncpy.c | 31 weak_alias(__stpncpy, stpncpy);
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
H A D | stpncpy.c | 31 weak_alias(__stpncpy, stpncpy);
|
/third_party/musl/libc-test/src/api/ |
H A D | string.c | 33 {char*(*p)(char*restrict,const char*restrict,size_t) = stpncpy;} in f()
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | string.h | 66 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/porting/linux/user/include/ |
H A D | string.h | 68 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | string.h | 66 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/include/ |
H A D | string.h | 68 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | string.h | 66 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | string.h | 68 char *stpncpy(char *__restrict, const char *__restrict, size_t);
|
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | string.h | 109 char *stpncpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE,
|
/third_party/musl/include/fortify/linux/ |
H A D | string.h | 109 char *stpncpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE,
|
/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | string_ext.c | 209 stpncpy(dst, src, n); in test_stpncpy_0010() 236 stpncpy(dst, src, n); in test_stpncpy_0020()
|
/third_party/musl/porting/linux/user/src/fortify/ |
H A D | fortify.c | 237 __diagnose_buffer_access("stpncpy", "write into", len, dst_len); in __stpncpy_chk() 238 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(stpncpy)(dest, src, len); in __stpncpy_chk()
|
/third_party/musl/src/fortify/linux/ |
H A D | fortify.c | 248 __diagnose_buffer_access("stpncpy", "write into", len, dst_len); in __stpncpy_chk() 249 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(stpncpy)(dest, src, len); in __stpncpy_chk()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_string.cpp | 151 stpncpy(dstAligned, srcAligned, limitsize); in Bm_function_Stpncpy()
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 750 pub fn stpncpy(arg1: *mut c_char, arg2: *const c_char, arg3: size_t) -> *mut c_char; in stpncpy() functions
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1417 pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; in stpncpy() functions
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 7207 extern char *stpncpy (char *__restrict __dest, [all...] |