Home
last modified time | relevance | path

Searched refs:wmemmove (Results 1 – 16 of 16) sorted by relevance

/dragonfly/lib/libc/string/
H A Dwmemmove.c34 wmemmove(wchar_t *d, const wchar_t *s, size_t n) in wmemmove() function
H A DMakefile.inc26 wmemchr.c wmemcmp.c wmemcpy.c wmemmove.c wmemset.c
103 wmemchr.3 wmemmove.3 \
H A DSymbol.map93 wmemmove;
/dragonfly/gnu/usr.bin/gdb/libgnu/
H A Dwchar.h840 _GL_FUNCDECL_SYS (wmemmove, wchar_t *,
843 _GL_CXXALIAS_SYS (wmemmove, wchar_t *,
845 _GL_CXXALIASWARN (wmemmove);
847 # undef wmemmove
849 _GL_WARN_ON_USE (wmemmove, "wmemmove is unportable - "
/dragonfly/gnu/usr.bin/grep/libgreputils/
H A Dwchar.h1044 _GL_FUNCDECL_SYS (wmemmove, wchar_t *,
1047 _GL_CXXALIAS_SYS (wmemmove, wchar_t *,
1050 _GL_CXXALIASWARN (wmemmove);
1053 # undef wmemmove
1055 _GL_WARN_ON_USE (wmemmove, "wmemmove is unportable - "
/dragonfly/usr.bin/fold/
H A Dfold.c168 wmemmove(buf, buf + space, indx - space); in fold()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_compatibility/
H A Dwchar.h102 using std::wmemmove;
/dragonfly/contrib/nvi2/common/
H A Dmultibyte.h103 #define MEMMOVE wmemmove
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_global/
H A Dcwchar130 #undef wmemmove
202 using ::wmemmove;
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_std/
H A Dcwchar130 #undef wmemmove
198 using ::wmemmove;
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/c_global/
H A Dcwchar128 #undef wmemmove
200 using ::wmemmove;
/dragonfly/include/
H A Dwchar.h198 wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dcfns.gperf244 wmemmove
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dchar_traits.h340 { return wmemmove(__s1, __s2, __n); } in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dchar_traits.h456 return wmemmove(__s1, __s2, __n); in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_string.c74 #if !defined(HAVE_WMEMMOVE) && !defined(wmemmove)
75 #define wmemmove(a,b,i) (wchar_t *)memmove((a), (b), (i) * sizeof(wchar_t)) macro
221 wmemmove(as->s + as->length, p, s); in archive_wstring_append()