Searched refs:memccpy (Results 1 - 7 of 7) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp155 INTERCEPTOR(void *, memccpy, void *dest, const void *src, int c, SIZE_T n) {
157 void *res = REAL(memccpy)(dest, src, c, n);
1625 INTERCEPT_FUNCTION(memccpy);
/freebsd-11-stable/stand/libsa/
H A DMakefile30 memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \
/freebsd-11-stable/lib/libc/string/
H A DMakefile.inc12 memccpy.c memchr.c memrchr.c memcmp.c \
36 MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
H A Dmemccpy.c31 static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93";
39 memccpy(void *t, const void *f, int c, size_t n) function
/freebsd-11-stable/include/
H A Dstring.h55 void *memccpy(void * __restrict, const void * __restrict, int, size_t);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_memcpy.c118 atf_tc_set_md_var(tc, "descr", "Test memccpy(3) results");
128 ATF_CHECK(memccpy(buf, "foo bar", c, sizeof(buf)) != NULL);
131 ATF_CHECK(memccpy(buf, "foo bar", '\0', sizeof(buf) - 1) != NULL);
134 ATF_CHECK(memccpy(buf, "foo bar", 'x', 7) == NULL);
137 ATF_CHECK(memccpy(buf, "xxxxxxx", 'r', 7) == NULL);
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h692 extern void * memccpy(void *, const void *, int, size_t);

Completed in 152 milliseconds