Searched refs:newPosition (Results 1 - 25 of 28) sorted by relevance

12

/external/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp21 UInt64 *newPosition)
27 if (newPosition != NULL)
28 *newPosition = absoluteNewPosition - _offset;
20 Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
H A DOffsetStream.h21 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DLimitedStreams.cpp48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
57 if (newPosition)
58 *newPosition = _virtPos;
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
112 if (newPosition)
113 *newPosition = newVirtPos;
H A DFileStreams.cpp244 UInt64 *newPosition)
263 if (newPosition)
264 *newPosition = newVirtPos;
276 if (newPosition != NULL)
277 *newPosition = realNewPosition;
285 if (newPosition != NULL)
286 *newPosition = (UInt64)res;
332 STDMETHODIMP COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
340 if (newPosition != NULL)
341 *newPosition
243 Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
[all...]
H A DStreamObjects.cpp27 STDMETHODIMP CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
36 if (newPosition)
37 *newPosition = _pos;
209 STDMETHODIMP CCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
218 if (newPosition != 0)
219 *newPosition = _pos;
H A DFileStreams.h61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DLimitedStreams.h60 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
97 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DStreamObjects.h38 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
132 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DCWrappers.cpp117 UInt64 newPosition; local
118 p->Res = p->Stream->Seek(*offset, moveMethod, &newPosition);
119 *offset = (Int64)newPosition;
/external/icu/icu4c/source/layout/
H A DGlyphIterator.cpp208 void GlyphIterator::setCurrStreamPosition(le_int32 newPosition) argument
211 if (newPosition >= prevLimit) {
216 if (newPosition <= nextLimit) {
221 if (newPosition <= prevLimit) {
226 if (newPosition >= nextLimit) {
232 position = newPosition - direction;
459 le_int32 newPosition = position; local
461 while (newPosition != nextLimit && delta > 0) {
463 newPosition += direction;
464 //fprintf(stderr,"%s:%d:%s: newPosition
483 le_int32 newPosition = position; local
524 le_int32 newPosition = position; local
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
61 if (newPosition != 0)
62 *newPosition = _pos;
170 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
H A DInStreamWithCRC.cpp35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
41 return _stream->Seek(offset, seekOrigin, newPosition);
H A DMultiStream.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
80 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DInStreamWithCRC.h47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
/external/lzma/CPP/7zip/
H A DIStream.h39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
/external/lzma/CPP/Windows/
H A DFileIO.cpp193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
209 newPosition = value.QuadPart;
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) argument
215 return Seek(position, FILE_BEGIN, newPosition);
220 UInt64 newPosition; local
221 return Seek(0, newPosition);
224 bool CFileBase::SeekToEnd(UInt64 &newPosition) argument
226 return Seek(0, FILE_END, newPosition);
426 UInt64 newPosition; local
427 if (!Seek(length, newPosition))
[all...]
H A DFileIO.h53 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const;
54 bool Seek(UInt64 position, UInt64 &newPosition);
56 bool SeekToEnd(UInt64 &newPosition);
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DNavCalculator.java313 Position newPosition = null;
360 newPosition = new Position(newLat,
366 return newPosition;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedOutputByteBufferNano.java311 int newPosition = buffer.position();
313 writeRawVarint32(newPosition - oldPosition - minLengthVarIntSize);
314 buffer.position(newPosition);
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp84 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
184 STDMETHODIMP COutMultiVolStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) argument
201 if (newPosition != NULL)
202 *newPosition = _absPos;
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp427 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 2294 milliseconds

12