Searched refs:offRelative (Results 1 - 3 of 3) sorted by relevance

/vbox/src/bldprogs/
H A Dscmstream.h108 int ScmStreamSeekRelative(PSCMSTREAM pStream, ssize_t offRelative);
H A Dscmstream.cpp590 * @param offRelative The offset to seek to. A negative offset
595 int ScmStreamSeekRelative(PSCMSTREAM pStream, ssize_t offRelative) argument
598 if (offRelative >= 0)
599 offAbsolute = pStream->off + offRelative;
600 else if ((size_t)-offRelative <= pStream->off)
601 offAbsolute = pStream->off + offRelative;
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp2087 * @param offRelative The relative position. Must be a positive
2090 static uint8_t const *rtDwarfCursor_CalcPos(PRTDWARFCURSOR pCursor, size_t offRelative) argument
2092 if (offRelative > pCursor->cbUnitLeft)
2094 Log(("rtDwarfCursor_CalcPos: bad position %#zx, cbUnitLeft=%#zu\n", offRelative, pCursor->cbUnitLeft));
2098 return pCursor->pb + offRelative;

Completed in 4842 milliseconds