Searched defs:g_wszAll (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp259 static RTUTF16 g_wszAll[0xfffe - (0xe000 - 0xd800) + (0x110000 - 0x10000) * 2]; variable
348 g_wszAll[i++] = uc++;
352 g_wszAll[i++] = uc++;
357 g_wszAll[i++] = 0xd800 | ((uc - 0x10000) >> 10);
358 g_wszAll[i++] = 0xdc00 | ((uc - 0x10000) & 0x3ff);
362 g_wszAll[i++] = '\0';
363 Assert(RT_ELEMENTS(g_wszAll) == i);
424 int rc = RTUtf16ToUtf8(&g_wszAll[0], &pszUtf8);
435 if (mymemcmp(pwszUtf16, g_wszAll, sizeof(g_wszAll), 1
[all...]

Completed in 35 milliseconds