Searched refs:memmove_s (Results 1 - 4 of 4) sorted by relevance
/third_party/bounds_checking_function/src/ |
H A D | memmove_s.c | 11 * Description: memmove_s function 62 * The memmove_s function copies count bytes of characters from src to dest. 82 * If some regions of the source area and the destination overlap, memmove_s 86 errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count) in memmove_s() function 89 SECUREC_ERROR_INVALID_RANGE("memmove_s"); in memmove_s() 93 SECUREC_ERROR_INVALID_PARAMTER("memmove_s"); in memmove_s() 102 SECUREC_ERROR_INVALID_RANGE("memmove_s"); in memmove_s() 121 EXPORT_SYMBOL(memmove_s); variable
|
H A D | wmemmove_s.c | 68 return memmove_s(dest, destMax * sizeof(wchar_t), src, count * sizeof(wchar_t)); in wmemmove_s()
|
/third_party/bounds_checking_function/include/ |
H A D | securec.h | 145 * Description: The memmove_s function copies n characters from the object pointed to by src 153 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/ |
H A D | tzdst.c | 58 if (memmove_s(&buf[positions + 1], bufLen - positions - 1, &buf[positions], bufLen - positions - 1) != EOK) { in BufferInsert()
|
Completed in 3 milliseconds