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

/vbox/src/VBox/Debugger/
H A DDBGCCmdWorkers.cpp213 size_t cbScratch = sizeof(pDbgc->achScratch) - (pDbgc->pszScratch - &pDbgc->achScratch[0]); local
214 if (pBp->cchCmd >= cbScratch)
H A DDBGCCmdHlp.cpp637 size_t cbScratch = sizeof(pDbgc->achScratch) - (pDbgc->pszScratch - &pDbgc->achScratch[0]); local
638 size_t cb = RTStrPrintfExV(dbgcStringFormatter, pDbgc, pDbgc->pszScratch, cbScratch, pszExpr, args);
640 if (cb >= cbScratch)
H A DDBGCEval.cpp1000 size_t cbScratch = sizeof(pDbgc->achScratch) - (pDbgc->pszScratch - &pDbgc->achScratch[0]); local
1001 size_t cch = pDbgc->CmdHlp.pfnStrPrintf(&pDbgc->CmdHlp, pDbgc->pszScratch, cbScratch, "%Dv", pArg);
1002 if (cch + 1 >= cbScratch)
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp2092 * @param cbScratch Size of the scratch buffer.
2098 static int rtldrPE_HashImageCommon(PRTLDRMODPE pModPe, void *pvScratch, uint32_t cbScratch, RTDIGESTTYPE enmDigest, argument
2119 uint32_t cbRead = RT_MIN(SpecialPlaces.cbToHash - off, cbScratch);
2422 void *pvScratch, size_t cbScratch, PRTERRINFO pErrInfo)
2424 AssertReturn(cbScratch >= _4K, VERR_INTERNAL_ERROR_3);
2444 uint32_t const cbScratchReadMax = cbScratch & ~(uint32_t)(_4K - 1);
2641 uint32_t cbScratch = _256K - _4K; local
2643 uint32_t cbScratch = _1M; local
2645 void *pvScratch = RTMemTmpAlloc(cbScratch);
2648 cbScratch
2421 rtldrPE_VerifyAllPageHashes(PRTLDRMODPE pModPe, PCRTCRSPCSERIALIZEDOBJECTATTRIBUTE pAttrib, RTDIGESTTYPE enmDigest, void *pvScratch, size_t cbScratch, PRTERRINFO pErrInfo) argument
2744 uint32_t cbScratch = _16K; local
[all...]

Completed in 65 milliseconds