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

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp1632 * @param cchName2 The length of the second name.
1634 DECLINLINE(int) cfgmR3CompareNames(const char *pszName1, size_t cchName1, const char *pszName2, size_t cchName2) argument
1637 if (cchName1 <= cchName2)
1640 if (!iDiff && cchName1 < cchName2)
1645 iDiff = memcmp(pszName1, pszName2, cchName2);

Completed in 50 milliseconds