Searched refs:blockLength (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/exfat/
H A Dkernel_interface.cpp346 off_t blockLength; local
347 status_t status = inode->FindBlock(offset, blockOffset, &blockLength);
353 vecs[index - 1].length += blockLength;
362 vecs[index].length = blockLength;
366 offset += blockLength;
367 size -= blockLength;
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp1637 off_t blockLength = 0; local
1646 blockLength = dataReader.Read<uint16>(0);
1649 blockLength = dataReader.Read<uint32>(0);
1665 blockLength = dataReader.ReadUnsignedLEB128(0);
1668 blockLength = dataReader.Read<uint8>(0);
1831 attributeValue.SetToBlock(dataReader.Data(), blockLength);
1832 dataReader.Skip(blockLength);
2825 uint64 blockLength = dataReader.ReadUnsignedLEB128(0); local
2827 dataReader.Skip(blockLength);
2830 "\n", block, blockLength);
2839 uint64 blockLength = dataReader.ReadUnsignedLEB128(0); local
2922 uint64 blockLength = dataReader.ReadUnsignedLEB128(0); local
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dkernel_interface.cpp338 off_t blockLength; local
339 status_t status = inode->FindBlock(offset, blockOffset, &blockLength);
345 vecs[index - 1].length += blockLength;
354 vecs[index].length = blockLength;
358 offset += blockLength;
359 size -= blockLength;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp403 uint32 blockLength = volume->BlockSize() * count; local
408 vecs[index - 1].length += blockLength;
422 vecs[index].length = blockLength;
426 offset += blockLength;
428 if (offset >= inode->Size() || size <= blockLength) {
435 size -= blockLength;

Completed in 57 milliseconds