Lines Matching refs:dst
29 wchar_t dst[18];
31 wchar_t *result = wcpncpy(dst, src, src_len + 1);
32 if (wcscmp(result, dst + src_len) != 0) {
33 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + src_len);
35 if (wcscmp(src, dst) != 0) {
36 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);
48 wchar_t dst[18];
50 wchar_t *result = wcpncpy(dst, src, 2);
51 if (wcscmp(result, dst + 2) != 0) {
52 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + 2);
54 if (wcscmp(dst, L"So") != 0) {
55 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);
67 wchar_t dst[18];
69 wchar_t *result = wcpncpy(dst, src, 17);
70 if (wcscmp(result, dst + src_len) != 0) {
71 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + src_len);
73 if (wcscmp(src, dst) != 0) {
74 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);