Lines Matching defs:dest
25 * to by src into the object pointed to by dest.
28 * dest Destination buffer.
34 * dest is updated.
38 * EINVAL dest is NULL and destMax != 0 and count <= destMax
40 * EINVAL_AND_RESET dest != NULL and src is NULL and destMax != 0
43 * (count > destMax and dest is NULL and destMax != 0
45 * ERANGE_AND_RESET count > destMax and dest != NULL and destMax != 0
49 * If an error occurred, dest will be filled with 0 when dest and destMax valid.
54 errno_t wmemmove_s(wchar_t *dest, size_t destMax, const wchar_t *src, size_t count)
62 if (dest != NULL) {
63 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax * sizeof(wchar_t));
68 return memmove_s(dest, destMax * sizeof(wchar_t), src, count * sizeof(wchar_t));