Lines Matching defs:offset
51 Z7_COM7F_IMF(CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition))
56 case STREAM_SEEK_CUR: offset += _pos; break;
57 case STREAM_SEEK_END: offset += _totalLength; break;
60 if (offset < 0)
62 _pos = (UInt64)offset;
64 *newPosition = (UInt64)offset;
175 Z7_COM7F_IMF(COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition))
180 case STREAM_SEEK_CUR: offset += _absPos; break;
181 case STREAM_SEEK_END: offset += _length; break;
184 if (offset < 0)
186 _absPos = (UInt64)offset;
190 *newPosition = (UInt64)offset;