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

/vbox/src/VBox/Runtime/common/string/
H A Dstrversion.cpp51 * @param pi32Value Where to return the value if numeric.
54 static bool rtStrVersionParseBlock(const char **ppszVer, int32_t *pi32Value, size_t *pcchBlock) argument
63 *pi32Value = 0;
79 int rc = RTStrToInt32Ex(*ppszVer, NULL, 10, pi32Value);
84 *pi32Value = 0;
149 int rc = RTStrToInt32Ex(psz2, NULL, 10, pi32Value);
150 if (RT_SUCCESS(rc) && rc != VWRN_NUMBER_TOO_BIG && *pi32Value)
151 iVal1 += *pi32Value - 1;
160 *pi32Value = iVal1;

Completed in 1058 milliseconds