Lines Matching refs:dest
28 wchar_t dest[] = L"This is a c test for wmemmove function";
33 wmemmove(dest, src, count);
34 if (wcsncmp(dest, tmp, count)) {
35 t_error("The dest specified bits are not equal to the src\n", __func__);
47 wchar_t *dest = &src[2];
51 wmemmove(dest, src, count);
52 if (wcsncmp(dest, tmp, count)) {
53 t_error("The dest specified bits are not equal to the src\n", __func__);
59 * @tc.desc : The first address of dest is the same as src
65 wchar_t *dest = &src[0];
67 wchar_t *result = wmemmove(dest, src, count);
68 if (!(result == dest)) {
69 t_error("The first address of dest is not the same as src\n", __func__);