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

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageBandwidthControl.cpp47 * of n expressed in bytes to *pLimit. k meas kilobit, while K means kilobyte.
51 * @param pLimit Where to store the result.
53 static const char *parseLimit(const char *pcszLimit, int64_t *pLimit) argument
57 int rc = RTStrToInt64Ex(pcszLimit, &pszNext, 10, pLimit);
84 if (*pLimit < 0)
86 if (*pLimit > INT64_MAX / iMultiplier)
88 *pLimit *= iMultiplier;

Completed in 36 milliseconds