Searched refs:idxSeg (Results 1 - 3 of 3) sorted by relevance
/vbox/include/iprt/ |
H A D | sg.h | 62 unsigned idxSeg; member in struct:RTSGBUF 263 (cSegsMapped) = (pSgBuf)->cSegs - (pSgBuf)->idxSeg; \ 266 if ((pSgBuf)->cSegs == (pSgBuf)->idxSeg) \ 278 (paMapped)[i].pvBufField = (TypeBufPtr)(pSgBuf)->paSegs[(pSgBuf)->idxSeg + i].pvSeg; \ 279 (paMapped)[i].cbBufField = (TypeBufSize)(pSgBuf)->paSegs[(pSgBuf)->idxSeg + i].cbSeg; \
|
/vbox/src/VBox/Runtime/common/misc/ |
H A D | sg.cpp | 43 if (RT_UNLIKELY( pSgBuf->idxSeg == pSgBuf->cSegs 52 && (uintptr_t)pSgBuf->pvSegCur >= (uintptr_t)pSgBuf->paSegs[pSgBuf->idxSeg].pvSeg 53 && (uintptr_t)pSgBuf->pvSegCur + pSgBuf->cbSegLeft <= (uintptr_t)pSgBuf->paSegs[pSgBuf->idxSeg].pvSeg + pSgBuf->paSegs[pSgBuf->idxSeg].cbSeg, 54 ("pSgBuf->idxSeg=%d pSgBuf->cSegs=%d pSgBuf->pvSegCur=%p pSgBuf->cbSegLeft=%zd pSgBuf->paSegs[%d].pvSeg=%p pSgBuf->paSegs[%d].cbSeg=%zd\n", 55 pSgBuf->idxSeg, pSgBuf->cSegs, pSgBuf->pvSegCur, pSgBuf->cbSegLeft, 56 pSgBuf->idxSeg, pSgBuf->paSegs[pSgBuf->idxSeg].pvSeg, pSgBuf->idxSeg, pSgBuf->paSegs[pSgBuf->idxSeg] [all...] |
/vbox/src/VBox/Runtime/common/dbg/ |
H A D | dbgmodcodeview.cpp | 1773 * @param idxSeg IPRT RVA or ABS segment index indicator. 1777 static int rtDbgModCvAddCoffSymbol(PRTDBGMODCV pThis, uint32_t idxSeg, uint32_t uValue, const char *pszName) argument 1779 int rc = RTDbgModSymbolAdd(pThis->hCnt, pszName, idxSeg, uValue, 0, 0 /*fFlags*/, NULL); 1780 Log(("Symbol: %s:%08x %s [%Rrc]\n", idxSeg == RTDBGSEGIDX_RVA ? "rva" : "abs", uValue, pszName, rc));
|
Completed in 524 milliseconds