Searched refs:uc1 (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A Dcomparepaths.cpp74 register RTUNICP uc1 = *puszTmpPath1; local
76 if (uc1 != uc2)
78 if (uc1 == '\\')
79 uc1 = '/';
81 uc1 = RTUniCpToUpper(uc1);
86 if (uc1 != uc2)
88 iDiff = uc1 > uc2 ? 1 : -1; /* (overflow/underflow paranoia) */
94 if (!uc1)
/vbox/src/VBox/Runtime/common/string/
H A Dutf-16-case.cpp72 RTUNICP uc1; local
78 uc1 = pwsz1[-1];
79 if (uc1 < 0xd800 || uc1 >= 0xdc00)
81 uc1 = 0x10000 + (((uc1 & 0x3ff) << 10) | (wc1 & 0x3ff));
86 uc1 = *++pwsz1;
87 if (uc1 < 0xdc00 || uc1 >= 0xe000)
89 uc1
[all...]
H A Dutf-8-case.cpp74 RTUNICP uc1; local
75 int rc = RTStrGetCpEx(&psz1, &uc1);
94 int iDiff = uc1 - uc2;
97 iDiff = RTUniCpToUpper(uc1) != RTUniCpToUpper(uc2);
100 iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* lower case diff last! */
107 if (!uc1)
152 RTUNICP uc1; local
154 int rc = RTStrGetCpNEx(&psz1, &cchMax, &uc1);
175 int iDiff = uc1 - uc2;
178 iDiff = RTUniCpToUpper(uc1) !
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp528 RTUNICP uc1; local
529 rc = RTStrGetCpEx(&psz1, &uc1);
544 if (uc2 != uc1)
546 RTTestFailed(hTest, "RTStrGetCpEx and RTStrGetCp returned different CPs: %RTunicp != %RTunicp", uc2, uc1);
591 pszPut1 = RTStrPutCp(pszPut1, uc1);
611 if (!uc1)

Completed in 64 milliseconds