Searched refs:InodeSize (Results 1 - 17 of 17) sorted by relevance

/haiku/src/system/boot/loader/file_systems/bfs/
H A DVolume.h43 uint32 InodeSize() const { return fSuperBlock.InodeSize(); } function in class:BFS::Volume
H A DStream.cpp450 || (uint32)InodeSize() != volume->InodeSize()
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DVolume.h75 uint16 InodeSize() const function in class:Volume
76 { return fSuperBlock.InodeSize(); }
H A Dxfs.cpp245 XfsSuperBlock::InodeSize() const function in class:XfsSuperBlock
H A Dxfs.h83 uint16 InodeSize() const;
H A DInode.cpp198 if(!xfs_verify_cksum(fBuffer, fVolume->InodeSize(), INODE_CRC_OFF)) {
300 uint16 inodeSize = fVolume->InodeSize();
396 lengthOfDataFork = GetVolume()->InodeSize()
702 uint32 len = fVolume->InodeSize();
H A DInode.h31 ((volume)->InodeSize() - DINODE_SIZE(volume))
H A DBPlusTree.cpp90 lengthOfDataFork = fInode->GetVolume()->InodeSize()
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DVolume.h65 uint32 InodeSize() const function in class:Volume
66 { return fSuperBlock.InodeSize(); }
H A DAttribute.cpp209 start += fVolume->InodeBlockIndex(fInode->ID()) * fVolume->InodeSize();
210 const uint8* end = start + fVolume->InodeSize();
260 + fVolume->InodeBlockIndex(fInode->ID()) * fVolume->InodeSize();
261 const uint8* end = start + fVolume->InodeSize();
H A DInode.cpp53 "\n", sizeof(ext2_inode), fVolume->InodeSize());
54 fNodeSize = sizeof(ext2_inode) > fVolume->InodeSize()
55 ? fVolume->InodeSize() : sizeof(ext2_inode);
87 sizeof(ext2_inode), fVolume->InodeSize());
88 fNodeSize = sizeof(ext2_inode) > fVolume->InodeSize()
89 ? fVolume->InodeSize() : sizeof(ext2_inode);
146 fVolume->InodeSize(), fNodeSize, this, &fNode);
148 fVolume->InodeBlockIndex(fID) * fVolume->InodeSize());
183 fVolume->InodeSize(), fVolume->InodeBlockIndex(fID));
185 + fVolume->InodeBlockIndex(fID) * fVolume->InodeSize());
[all...]
H A DVolume.cpp50 || InodeSize() > (1UL << BlockShift())
54 || InodeSize() == 0
235 fInodesPerBlock = fBlockSize / InodeSize();
617 + InodeBlockIndex(currentID) * InodeSize());
644 + InodeBlockIndex(currentID) * InodeSize());
662 + InodeBlockIndex(id) * InodeSize());
H A Dext2.h123 uint16 InodeSize() const { return B_LENDIAN_TO_HOST_INT16(inode_size); } function in struct:ext2_super_block
/haiku/src/add-ons/kernel/file_systems/bfs/
H A Dbfs.h91 int32 InodeSize() const { return BFS_ENDIAN_TO_HOST_INT32(inode_size); } function in struct:BFS::disk_super_block
227 int32 InodeSize() const { return BFS_ENDIAN_TO_HOST_INT32(inode_size); } function in struct:BFS::bfs_inode
401 + inode->InodeSize() - sizeof(small_data) || name_size == 0;
H A DVolume.h76 uint32 InodeSize() const function in class:Volume
77 { return fSuperBlock.InodeSize(); }
H A DDebug.cpp57 kprintf(" inode_size = %u\n", (unsigned)superBlock->InodeSize());
134 kprintf(" inode_size = %u\n", (unsigned)inode->InodeSize());
H A DInode.cpp315 || (uint32)InodeSize() != volume->InodeSize()
411 Node().inode_size = HOST_ENDIAN_TO_BFS_INT32(volume->InodeSize());
725 if (spaceNeeded > fVolume->InodeSize() - sizeof(bfs_inode))
754 <= ((uint8*)node + fVolume->InodeSize())) {
758 > ((uint8*)node + fVolume->InodeSize())) {
762 (uint32)((uint8*)node + fVolume->InodeSize()
824 if ((uint8*)item + spaceNeeded > (uint8*)node + fVolume->InodeSize()) {
853 memset(item, 0, (uint8*)node + fVolume->InodeSize() - (uint8*)item);
1433 return Node().InodeSize();
[all...]

Completed in 102 milliseconds