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

/vbox/src/VBox/Runtime/common/path/
H A Dcomparepaths.cpp75 register RTUNICP uc2 = *puszTmpPath2; local
76 if (uc1 != uc2)
82 if (uc2 == '\\')
83 uc2 = '/';
85 uc2 = RTUniCpToUpper(uc2);
86 if (uc1 != uc2)
88 iDiff = uc1 > uc2 ? 1 : -1; /* (overflow/underflow paranoia) */
89 if (fLimit && uc2 == '\0')
/vbox/src/VBox/Runtime/common/string/
H A Dutf-16-case.cpp73 RTUNICP uc2; local
82 uc2 = 0x10000 + (((pwsz2[-1] & 0x3ff) << 10) | (wc2 & 0x3ff));
90 uc2 = 0x10000 + (((wc2 & 0x3ff) << 10) | (*++pwsz2 & 0x3ff));
92 iDiff = RTUniCpToUpper(uc1) - RTUniCpToUpper(uc2);
94 iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* serious paranoia! */
H A Dutf-8-case.cpp83 RTUNICP uc2; local
84 rc = RTStrGetCpEx(&psz2, &uc2);
94 int iDiff = uc1 - uc2;
97 iDiff = RTUniCpToUpper(uc1) != RTUniCpToUpper(uc2);
100 iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* lower case diff last! */
163 RTUNICP uc2; local
164 rc = RTStrGetCpNEx(&psz2, &cchMax2, &uc2);
175 int iDiff = uc1 - uc2;
178 iDiff = RTUniCpToUpper(uc1) != RTUniCpToUpper(uc2);
181 iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* lowe
292 RTUNICP uc2 = RTUniCpToLower(uc); local
329 RTUNICP uc2 = RTUniCpToUpper(uc); local
[all...]
/vbox/src/VBox/Runtime/r3/
H A Ddir.cpp485 RTUNICP uc2; local
486 while ((uc2 = pDir->puszFilter[iRead + 1]) == '*')
/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp543 RTUNICP uc2 = RTStrGetCp(psz2); local
544 if (uc2 != uc1)
546 RTTestFailed(hTest, "RTStrGetCpEx and RTStrGetCp returned different CPs: %RTunicp != %RTunicp", uc2, uc1);
566 if (uc3 != uc2)
568 RTTestFailed(hTest, "RTUtf16GetCpEx and RTStrGetCp returned different CPs: %RTunicp != %RTunicp", uc3, uc2);
1449 RTUNICP uc2 = RTStrGetCp(pszBefore); local
1450 RTTESTI_CHECK_MSG(uc2 == uc, ("uc2=%#x uc=%#x\n", uc2, uc));
1463 RTUNICP uc2 local
1479 RTUNICP uc2 = RTStrGetCp(pszSrc); local
[all...]

Completed in 38 milliseconds