Home
last modified time | relevance | path

Searched refs:Seek (Results 1 – 25 of 93) sorted by relevance

1234

/third_party/lzma/CPP/7zip/Common/
DLimitedStreams.cpp59 Z7_COM7F_IMF(CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
133 Z7_COM7F_IMF(CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
221 Z7_COM7F_IMF(CExtentsStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
276 Z7_COM7F_IMF(CTailInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
285 RINOK(Stream->Seek(offset, STREAM_SEEK_END, &pos)) in Z7_COM7F_IMF()
343 Z7_COM7F_IMF(CLimitedCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
372 Z7_COM7F_IMF(CTailOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
386 return Stream->Seek((Int64)(Offset + _virtPos), STREAM_SEEK_SET, NULL); in Z7_COM7F_IMF()
DOffsetStream.cpp11 return _stream->Seek((Int64)offset, STREAM_SEEK_SET, NULL); in Init()
19 Z7_COM7F_IMF(COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
28 const HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition); in Z7_COM7F_IMF()
DStreamUtils.h9 { return stream->Seek((Int64)offset, STREAM_SEEK_SET, NULL); } in InStream_SeekSet()
11 { return stream->Seek(0, STREAM_SEEK_CUR, &curPosRes); } in InStream_GetPos()
13 { return stream->Seek(0, STREAM_SEEK_END, &sizeRes); } in InStream_GetSize_SeekToEnd()
DFileStreams.cpp143 const bool result = File.Seek((Int64)alignedPos, FILE_BEGIN, realNewPosition); in Z7_COM7F_IMF()
172 bool result = File.Seek((Int64)VirtPos, FILE_BEGIN, realNewPosition); in Z7_COM7F_IMF()
264 Z7_COM7F_IMF(CInFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
291 const bool result = File.Seek(offset, seekOrigin, realNewPosition); in Z7_COM7F_IMF()
706 Z7_COM7F_IMF(COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
714 const bool result = File.Seek(offset, seekOrigin, realNewPosition); in Z7_COM7F_IMF()
DStreamObjects.cpp27 Z7_COM7F_IMF(CBufferInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
62 Z7_COM7F_IMF(CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
275 Z7_COM7F_IMF(CCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
DLimitedStreams.h56 HRESULT SeekToStart() { return Seek(0, STREAM_SEEK_SET, NULL); }
198 HRESULT SeekToStart() { return Seek(0, STREAM_SEEK_SET, NULL); }
/third_party/lzma/CPP/Windows/
DFileIO.cpp220 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw() in Seek() function in NWindows::NFile::NIO::CFileBase
247 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) const throw() in Seek() function in NWindows::NFile::NIO::CFileBase
249 return Seek((Int64)position, FILE_BEGIN, newPosition); in Seek()
255 return Seek(0, newPosition) && (newPosition == 0); in SeekToBegin()
260 return Seek(0, FILE_END, newPosition); in SeekToEnd()
273 if (!Seek(pos, realNewPosition)) in CorrectDeviceSize()
301 if (!Seek(pos, realNewPosition)) in CorrectDeviceSize()
589 if (!Seek(length, newPosition)) in SetLength()
606 const bool result2 = Seek(currentPos, currentPos2); in SetLength_KeepPosition()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_btree_reader.h157 absl::string_view Seek(size_t offset);
204 inline absl::string_view CordRepBtreeReader::Seek(size_t offset) { in Seek() function
205 const CordRepBtreeNavigator::Position pos = navigator_.Seek(offset); in Seek()
Dcord_rep_btree_navigator_test.cc217 TEST_P(CordRepBtreeNavigatorTest, Seek) { in TEST_P() argument
224 Position pos = nav.Seek(char_offset); in TEST_P()
233 Position pos1 = nav.Seek(offset); in TEST_P()
262 EXPECT_THAT(nav.Seek(3).edge, Eq(nullptr)); in TEST()
263 EXPECT_THAT(nav.Seek(100).edge, Eq(nullptr)); in TEST()
Dcord_rep_btree_navigator.h103 Position Seek(size_t offset);
189 inline CordRepBtreeNavigator::Position CordRepBtreeNavigator::Seek( in Seek() function
212 return Seek(offset); in InitOffset()
Dcord_rep_btree_reader_test.cc125 TEST(CordRepBtreeReaderTest, Seek) { in TEST() argument
138 absl::string_view chunk = reader.Seek(seek); in TEST()
153 EXPECT_THAT(reader.Seek(6), IsEmpty()); in TEST()
155 EXPECT_THAT(reader.Seek(100), IsEmpty()); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcord_ring_reader_test.cc67 EXPECT_DEATH_IF_SUPPORTED(reader.Seek(0), ".*"); in TEST()
136 absl::string_view chunk = reader.Seek(offset + off); in TEST()
161 absl::string_view chunk = reader.Seek(offset + off); in TEST()
172 EXPECT_DEATH_IF_SUPPORTED(reader.Seek(ring->length), ".*"); in TEST()
/third_party/libsnd/tests/
Dpcm_test.tpl478 /* Seek to end of file. */
481 /* Seek to start of file. */
493 /* Seek to offset from start of file. */
505 /* Seek to offset from current position. */
517 /* Seek to offset from end of file. */
604 /* Seek to start of file. */
616 /* Seek to offset from start of file. */
628 /* Seek to offset from current position. */
640 /* Seek to offset from end of file. */
737 /* Seek to start of file. */
[all …]
/third_party/lzma/CPP/7zip/Archive/Common/
DInStreamWithCRC.cpp50 Z7_COM7F_IMF(CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
56 return _stream->Seek(offset, seekOrigin, newPosition); in Z7_COM7F_IMF()
DMultiStream.cpp36 RINOK(s.Stream->Seek((Int64)localPos, STREAM_SEEK_SET, &s.LocalPos)) in Z7_COM7F_IMF()
51 Z7_COM7F_IMF(CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Z7_COM7F_IMF()
/third_party/zlib/contrib/delphi/
DZLib.pas93 function Seek(Offset: Longint; Origin: Word): Longint; override; in Seek() function
122 function Seek(Offset: Longint; Origin: Word): Longint; override; in Seek() function
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint; in TCompressionStream.Seek() function
493 FStrm.Seek(-FZRec.avail_in, 1);
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint; in Seek() function
/third_party/lame/dshow/
DEncoder.cpp489 if (FAILED(hr = pStream->Seek(seekTo, STREAM_SEEK_SET, NULL))) { in skipId3v2()
512 if (FAILED(hr = pStream->Seek(seekTo, STREAM_SEEK_SET, NULL))) { in skipId3v2()
519 if (FAILED(hr = pStream->Seek(seekTo, STREAM_SEEK_SET, NULL))) { in skipId3v2()
528 if (FAILED(hr = pStream->Seek(seekTo, STREAM_SEEK_SET, NULL))) { in skipId3v2()
/third_party/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs132 public override long Seek(long offset, SeekOrigin origin) { return 0; } in Seek() method in SevenZip.LzmaBench.CrcOutStream
295 inStream.Seek(0, SeekOrigin.Begin); in LzmaBenchmark()
296 compressedStream.Seek(0, SeekOrigin.Begin); in LzmaBenchmark()
308 compressedStream.Seek(0, SeekOrigin.Begin); in LzmaBenchmark()
/third_party/lzma/CPP/7zip/
DIStream.h98 x(Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition))
102 x(Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) \
/third_party/lzma/C/
D7zTypes.h375 SRes (*Seek)(ISeekInStreamPtr p, Int64 *pos, ESzSeek origin); in Z7_C_IFACE_DECL() local
378 #define ISeekInStream_Seek(p, pos, origin) (p)->Seek(p, pos, origin)
391 SRes (*Seek)(ILookInStreamPtr p, Int64 *pos, ESzSeek origin); in Z7_C_IFACE_DECL() local
397 #define ILookInStream_Seek(p, pos, origin) (p)->Seek(p, pos, origin)
/third_party/ffmpeg/doc/
Dffplay.texi46 Seek to @var{pos}. Note that in most formats it is not possible to seek
58 Seek by bytes.
242 Seek backward/forward 10 seconds.
245 Seek backward/forward 1 minute.
248 Seek to the previous/next chapter.
250 Seek backward/forward 10 minutes.
253 Seek to percentage in file corresponding to fraction of width.
/third_party/skia/src/utils/win/
DSkIStream.h47 SK_STDMETHODIMP Seek(LARGE_INTEGER liDistanceToMove,
69 SK_STDMETHODIMP Seek(LARGE_INTEGER liDistanceToMove,
/third_party/lzma/CPP/7zip/UI/Common/
DArchiveOpenCallback.cpp235 RINOK(s.Stream->Seek((Int64)s.LocalPos, STREAM_SEEK_SET, &s.LocalPos))
259 Z7_COM7F_IMF(CInFileStreamVol::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition))
265 return s.Stream->Seek(offset, seekOrigin, newPosition);
/third_party/lz4/examples/
DdictionaryRandomAccess.md59 - Seek to the last 4 bytes of the file and read the number of offsets.
61 - Seek to the first block containing data we want to read.
/third_party/gptfdisk/
Dbasicmbr.cc187 if (myDisk->Seek(0)) in ReadMBRData()
300 if (myDisk->Seek(offset) == 0) { // seek to EBR record in ReadLogicalParts()
465 if (allOK && theDisk->Seek(sector)) { in WriteMBRData()
576 if (myDisk->Seek(1)) { in CheckForGPT()
580 if (myDisk->Seek(myDisk->DiskSize(&err) - 1)) { in CheckForGPT()
614 if (!((myDisk->Seek(1)) && (myDisk->Write(blank, 512) == 512))) in BlankGPTData()
621 if (!((myDisk->Seek(myDisk->DiskSize(&err) - 1)) && in BlankGPTData()
629 if (!((myDisk->Seek(1)) && (myDisk->Write(blank, 512) == 512))) in BlankGPTData()
631 if (!((myDisk->Seek(myDisk->DiskSize(&err) - 1)) && in BlankGPTData()

1234