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

/vbox/src/VBox/Runtime/r3/nt/
H A Dinternal-r3-nt.h53 * @param cch2 The length of the second string.
55 DECLINLINE(bool) rtNtCompWideStrAndAscii(WCHAR const *pwsz1, size_t cch1, const char *psz2, size_t cch2) argument
57 if (cch1 != cch2 * 2)
59 while (cch2-- > 0)
/vbox/src/VBox/Runtime/testcase/
H A DtstRTStrFormat.cpp172 int cch2 = RTStrAPrintf(&psz, "Hey there! %s%s", "This is a test", "!"); local
173 if (cch2 < 0)
174 RTTestIFailed("RTStrAPrintf failed, cch2=%d\n", cch2);
180 else if ((int)strlen(psz) != cch2)
181 RTTestIFailed("RTStrAPrintf failed, cch2 == %d expected %u\n", cch2, strlen(psz));
/vbox/src/VBox/Runtime/r3/win/
H A Dfs-win.cpp347 * @param cch2 The length of the second string.
349 static bool rtFsWinAreEqual(WCHAR const *pwsz1, size_t cch1, const char *psz2, size_t cch2) argument
351 if (cch1 != cch2 * 2)
353 while (cch2-- > 0)

Completed in 46 milliseconds