/freebsd/contrib/netbsd-tests/lib/libc/string/ |
H A D | t_memcpy.c | 128 ATF_CHECK(memccpy(buf, "foo bar", c, sizeof(buf)) != NULL); in ATF_TC_BODY() 131 ATF_CHECK(memccpy(buf, "foo bar", '\0', sizeof(buf) - 1) != NULL); in ATF_TC_BODY() 134 ATF_CHECK(memccpy(buf, "foo bar", 'x', 7) == NULL); in ATF_TC_BODY() 137 ATF_CHECK(memccpy(buf, "xxxxxxx", 'r', 7) == NULL); in ATF_TC_BODY()
|
/freebsd/lib/libc/tests/string/ |
H A D | memccpy_test.c | 178 ATF_CHECK_EQ(memccpy(buf, "foobar", 'r', sizeof(buf)), buf + sizeof("foobar") - 1); in ATF_TC_BODY() 182 ATF_CHECK_EQ(memccpy(buf, "foobar", mask | 'r', sizeof(buf)), buf + sizeof("foobar") - 1); in ATF_TC_BODY() 221 memccpy_fn = memccpy; in ATF_TP_ADD_TCS()
|
/freebsd/lib/libc/string/ |
H A D | memccpy.c | 35 memccpy(void * restrict t, const void * restrict f, int c, size_t n) in memccpy() function
|
H A D | Makefile.inc | 12 memccpy.c memchr.c memrchr.c memcmp.c \ 48 MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
|
H A D | Symbol.map | 12 memccpy;
|
/freebsd/lib/libc/amd64/string/ |
H A D | Makefile.inc | 6 memccpy.S \
|
/freebsd/lib/libc/aarch64/string/ |
H A D | Makefile.inc | 30 memccpy.S \
|
H A D | memccpy.S | 9 .weak memccpy 10 .set memccpy, __memccpy define
|
/freebsd/include/ |
H A D | string.h | 58 void *memccpy(void * __restrict, const void * __restrict, int, size_t);
|
/freebsd/tools/build/ |
H A D | depend-cleanup.sh | 316 ALL_libcompats= clean_dep lib/libc memccpy c
|
/freebsd/stand/libsa/ |
H A D | Makefile | 30 memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 147 INTERCEPTOR(void *, memccpy, void *dest, const void *src, int c, SIZE_T n) { in INTERCEPTOR() argument 149 void *res = REAL(memccpy)(dest, src, c, n); in INTERCEPTOR() 1790 INTERCEPT_FUNCTION(memccpy); in InitializeInterceptors()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetLibraryInfo.def | 1715 /// void *memccpy(void *s1, const void *s2, int c, size_t n); 1716 TLI_DEFINE_ENUM_INTERNAL(memccpy) 1717 TLI_DEFINE_STRING_INTERNAL("memccpy")
|
/freebsd/bin/sh/ |
H A D | parser.c | 2119 end = memccpy(tfmt, fmt, '}', sizeof(tfmt)); in getprompt()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | libc_ubuntu1404_abilist.txt | 2273 fun:memccpy=uninstrumented
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Builtins.td | 3174 let Spellings = ["memccpy"];
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 14030 memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>)
|