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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp1823 uint32_t offSkip = 1;
1827 if (offSkip == pCursor->cbUnitLeft)
1832 } while (pCursor->pb[offSkip++] & 0x80);
1834 pCursor->pb += offSkip;
1835 pCursor->cbUnitLeft -= offSkip;
1836 pCursor->cbLeft -= offSkip;
1846 * @param offSkip The number of bytes to advance.
1848 static int rtDwarfCursor_SkipBytes(PRTDWARFCURSOR pCursor, uint64_t offSkip) argument
1852 if (pCursor->cbUnitLeft < offSkip)
1855 size_t const offSkipSizeT = (size_t)offSkip;
[all...]

Completed in 57 milliseconds