Lines Matching defs:bytes
701 void __inode_add_bytes(struct inode *inode, loff_t bytes)
703 inode->i_blocks += bytes >> 9;
704 bytes &= 511;
705 inode->i_bytes += bytes;
713 void inode_add_bytes(struct inode *inode, loff_t bytes)
716 __inode_add_bytes(inode, bytes);
722 void __inode_sub_bytes(struct inode *inode, loff_t bytes)
724 inode->i_blocks -= bytes >> 9;
725 bytes &= 511;
726 if (inode->i_bytes < bytes) {
730 inode->i_bytes -= bytes;
735 void inode_sub_bytes(struct inode *inode, loff_t bytes)
738 __inode_sub_bytes(inode, bytes);
756 void inode_set_bytes(struct inode *inode, loff_t bytes)
760 inode->i_blocks = bytes >> 9;
761 inode->i_bytes = bytes & 511;