Home
last modified time | relevance | path

Searched refs:offsetInBlock (Results 1 – 6 of 6) sorted by relevance

/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DRegularFile.java256 int off = offsetInBlock(size); in prepareForWrite()
281 int off = offsetInBlock(pos); in write()
310 int offInBlock = offsetInBlock(pos); in write()
351 int off = offsetInBlock(pos); in write()
404 int off = offsetInBlock(pos); in transferFrom()
464 int off = offsetInBlock(pos); in read()
482 int offsetInBlock = offsetInBlock(pos); in read() local
484 int read = get(block, offsetInBlock, b, off, length(offsetInBlock, remaining)); in read()
515 int off = offsetInBlock(pos); in read()
567 int off = offsetInBlock(pos); in transferTo()
[all …]
/external/lzma/CPP/7zip/Archive/
DVhdHandler.cpp577 UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1);
578 size = MyMin(blockSize - offsetInBlock, size);
599 RINOK(ReadPhy(newPos + BitMap.Size() + offsetInBlock, data, size))
602 const UInt32 rem = MyMin(0x200 - (offsetInBlock & 0x1FF), size - cur);
603 const UInt32 bmi = offsetInBlock >> kSectorSize_Log;
619 offsetInBlock += rem;
DVhdxHandler.cpp1406 const UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1);
1407 size = MyMin(blockSize - offsetInBlock, size);
1498 res = ReadPhy(blockOffset + offsetInBlock, data, size, processed);
DSquashfsHandler.cpp2139 UInt32 offsetInBlock = 0;
2153 offsetInBlock = node.Offset;
2195 if (offsetInBlock + blockSize > _cachedUnpackBlockSize)
2198 memcpy(dest, _cachedBlock + offsetInBlock, blockSize);
DExtHandler.cpp2196 const UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1);
2201 UInt32 cur = blockSize - offsetInBlock;
2211 UInt64 newPos = ((UInt64)phyBlock << BlockBits) + offsetInBlock;
2218 _curRem = blockSize - offsetInBlock;
/external/lzma/CPP/7zip/Common/
DLimitedStreams.cpp106 const UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1); in Z7_COM7F_IMF() local
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Z7_COM7F_IMF()
116 _curRem = blockSize - offsetInBlock; in Z7_COM7F_IMF()