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

/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp260 static char g_szAll[0x7f + (0x800 - 0x80) * 2 + (0xfffe - 0x800 - (0xe000 - 0xd800))* 3 + (0x110000 - 0x10000) * 4 + 1]; variable
372 g_szAll[i++] = uc++;
376 g_szAll[i++] = 0xc0 | (uc >> 6);
377 g_szAll[i++] = 0x80 | (uc & 0x3f);
384 g_szAll[i++] = 0xe0 | (uc >> 12);
385 g_szAll[i++] = 0x80 | ((uc >> 6) & 0x3f);
386 g_szAll[i++] = 0x80 | (uc & 0x3f);
394 g_szAll[i++] = 0xe0 | (uc >> 12);
395 g_szAll[i++] = 0x80 | ((uc >> 6) & 0x3f);
396 g_szAll[
[all...]

Completed in 73 milliseconds