Home
last modified time | relevance | path

Searched refs:memmove_s (Results 1 – 7 of 7) sorted by relevance

/third_party/bounds_checking_function/src/
Dmemmove_s.c86 errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count) in memmove_s() function
121 EXPORT_SYMBOL(memmove_s);
Dwmemmove_s.c68 return memmove_s(dest, destMax * sizeof(wchar_t), src, count * sizeof(wchar_t)); in wmemmove_s()
/third_party/bounds_checking_function/
DREADME.md12 - memmove_s
DREADME.en.md15 - memmove_s
Dlibsec_src.gni23 "//third_party/bounds_checking_function/src/memmove_s.c",
/third_party/bounds_checking_function/include/
Dsecurec.h153 SECUREC_API errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count);
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
Dtzdst.c58 …if (memmove_s(&buf[positions + 1], bufLen - positions - 1, &buf[positions], bufLen - positions - 1… in BufferInsert()