Searched refs:offsetInBlock (Results 1 – 6 of 6) sorted by relevance
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | RegularFile.java | 256 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/ |
D | VhdHandler.cpp | 577 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;
|
D | VhdxHandler.cpp | 1406 const UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1); 1407 size = MyMin(blockSize - offsetInBlock, size); 1498 res = ReadPhy(blockOffset + offsetInBlock, data, size, processed);
|
D | SquashfsHandler.cpp | 2139 UInt32 offsetInBlock = 0; 2153 offsetInBlock = node.Offset; 2195 if (offsetInBlock + blockSize > _cachedUnpackBlockSize) 2198 memcpy(dest, _cachedBlock + offsetInBlock, blockSize);
|
D | ExtHandler.cpp | 2196 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/ |
D | LimitedStreams.cpp | 106 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()
|