Home
last modified time | relevance | path

Searched refs:be_unicode (Results 1 – 1 of 1) sorted by relevance

/reactos/modules/rostests/winetests/ntdll/
H A Drtlstr.c1736 WCHAR *be_unicode; in test_RtlIsTextUnicode() local
1770 be_unicode = HeapAlloc(GetProcessHeap(), 0, sizeof(unicode) + sizeof(WCHAR)); in test_RtlIsTextUnicode()
1771 be_unicode[0] = 0xfffe; in test_RtlIsTextUnicode()
1774 be_unicode[i + 1] = (unicode[i] >> 8) | ((unicode[i] & 0xff) << 8); in test_RtlIsTextUnicode()
1776 …ok(!pRtlIsTextUnicode(be_unicode, sizeof(unicode) + 2, NULL), "Reverse endian should not be Unicod… in test_RtlIsTextUnicode()
1777 …ok(!pRtlIsTextUnicode(&be_unicode[1], sizeof(unicode), NULL), "Reverse endian should not be Unicod… in test_RtlIsTextUnicode()
1780 …ok(!pRtlIsTextUnicode(&be_unicode[1], sizeof(unicode), &flags), "Reverse endian should be Unicode\… in test_RtlIsTextUnicode()
1786 …ok(!pRtlIsTextUnicode(be_unicode, sizeof(unicode) + 2, &flags), "Reverse endian should be Unicode\… in test_RtlIsTextUnicode()
1840 ok(!pRtlIsTextUnicode(be_unicode, sizeof(unicode) + 2, &flags), in test_RtlIsTextUnicode()
1858 HeapFree(GetProcessHeap(), 0, be_unicode); in test_RtlIsTextUnicode()