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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp1706 * @param sErrValue The value to return on error.
1708 static int64_t rtDwarfCursor_GetSLeb128(PRTDWARFCURSOR pCursor, int64_t sErrValue) argument
1713 return sErrValue;
1741 u64Ret = (uint64_t)sErrValue;
1759 u64Ret = (uint64_t)sErrValue;
1795 * @param sErrValue The value to return on error.
1797 static int32_t rtDwarfCursor_GetSLeb128AsS32(PRTDWARFCURSOR pCursor, int32_t sErrValue) argument
1799 int64_t s64 = rtDwarfCursor_GetSLeb128(pCursor, sErrValue);
1803 return sErrValue;

Completed in 50 milliseconds