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

/vbox/src/VBox/Runtime/common/path/
H A DRTPathParse.cpp.h195 pParsed->cchSuffix = 0;
216 uint32_t cchSuffix = offStart + cchComp - offSuffix; local
217 if (cchSuffix > 1 && offStart != offSuffix)
219 pParsed->cchSuffix = cchSuffix;
236 pParsed->cchSuffix = 0;
/vbox/include/iprt/
H A Dpath.h611 uint16_t cchSuffix; member in struct:RTPATHPARSED
/vbox/src/VBox/Runtime/r0drv/nt/
H A DntBldSymDb.cpp693 size_t cchSuffix = strlen(pszSuffix); local
694 if (cchString < cchSuffix)
696 return RTStrICmp(pszString + cchString - cchSuffix, pszSuffix) == 0;
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyImage-win.cpp569 size_t cchSuffix = strlen(pszSuffix); local
570 if (cwc >= cchSuffix)
571 return supHardViUtf16PathIsEqual(pwsz + cwc - cchSuffix, pszSuffix);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dshlwapi.h737 UINT cchSuffix; member in struct:tagPARSEDURLA
746 UINT cchSuffix; member in struct:tagPARSEDURLW
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dshlwapi.h724 UINT cchSuffix; member in struct:tagPARSEDURLA
733 UINT cchSuffix; member in struct:tagPARSEDURLW
/vbox/src/bldprogs/
H A DVBoxCPP.cpp3720 size_t cchSuffix = 1; local
3721 while (vbcppIsCIdentifierLeadChar(pszNext[cchSuffix]))
3722 cchSuffix++;
3724 if (cchSuffix == '1' && (*pszNext == 'u' || *pszNext == 'U'))
3726 else if ( cchSuffix == '1'
3729 else if ( cchSuffix == '2'
3732 else if ( cchSuffix == '2'
3735 else if ( cchSuffix == '3'
3739 return vbcppExprParseError(pParser, "Invalid number suffix '%.*s'", cchSuffix, pszNext);
3741 pszNext += cchSuffix;
[all...]

Completed in 63 milliseconds