Lines Matching defs:src
29 const wchar_t src[] = L"src content";
32 wcsncpy(tmp, src, count);
33 wmemmove(dest, src, count);
35 t_error("The dest specified bits are not equal to the src\n", __func__);
41 * @tc.desc : Dest and src overlaps
46 wchar_t src[] = L"This is a c test for wmemmove function";
47 wchar_t *dest = &src[2];
50 wcsncpy(tmp, src, count);
51 wmemmove(dest, src, 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
64 wchar_t src[] = L"This is a c test for wmemmove function";
65 wchar_t *dest = &src[0];
67 wchar_t *result = wmemmove(dest, src, count);
69 t_error("The first address of dest is not the same as src\n", __func__);