Lines Matching refs:UInt64
68 UInt64 rem = File.Size - VirtPos; in Read()
75 const UInt64 mask2 = ~(UInt64)mask; in Read()
76 UInt64 alignedPos = VirtPos & mask2; in Read()
95 UInt64 end = VirtPos + size; in Read()
109 UInt64 realNewPosition; in Read()
119 readSize = (UInt32)MyMin(File.Size - PhyPos, (UInt64)kClusterSize); in Read()
138 UInt64 realNewPosition; in Read()
219 STDMETHODIMP CInFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
245 UInt64 realNewPosition; in Seek()
262 *newPosition = (UInt64)res; in Seek()
268 STDMETHODIMP CInFileStream::GetSize(UInt64 *size) in GetSize()
275 STDMETHODIMP CInFileStream::GetProps(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTim… in GetProps()
280 if (size) *size = (((UInt64)info.nFileSizeHigh) << 32) + info.nFileSizeLow; in GetProps()
295 props->Size = (((UInt64)info.nFileSizeHigh) << 32) + info.nFileSizeLow; in GetProps2()
297 props->FileID_Low = (((UInt64)info.nFileIndexHigh) << 32) + info.nFileIndexLow; in GetProps2()
345 STDMETHODIMP COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
351 UInt64 realNewPosition; in Seek()
363 *newPosition = (UInt64)res; in Seek()
369 STDMETHODIMP COutFileStream::SetSize(UInt64 newSize) in SetSize()
372 UInt64 currentPos; in SetSize()
376 UInt64 currentPos2; in SetSize()