Searched refs:next_off (Results 1 – 9 of 9) sorted by relevance
/fs/hfs/ |
D | bnode.c | 332 int i, rec_off, off, next_off; in hfs_bnode_find() local 384 for (i = 1; i <= node->num_recs; off = next_off, i++) { in hfs_bnode_find() 386 next_off = hfs_bnode_read_u16(node, rec_off); in hfs_bnode_find() 387 if (next_off <= off || in hfs_bnode_find() 388 next_off > tree->node_size || in hfs_bnode_find() 389 next_off & 1) in hfs_bnode_find() 391 entry_size = next_off - off; in hfs_bnode_find()
|
/fs/hfsplus/ |
D | bnode.c | 482 int i, rec_off, off, next_off; in hfs_bnode_find() local 536 for (i = 1; i <= node->num_recs; off = next_off, i++) { in hfs_bnode_find() 538 next_off = hfs_bnode_read_u16(node, rec_off); in hfs_bnode_find() 539 if (next_off <= off || in hfs_bnode_find() 540 next_off > tree->node_size || in hfs_bnode_find() 541 next_off & 1) in hfs_bnode_find() 543 entry_size = next_off - off; in hfs_bnode_find()
|
/fs/ksmbd/ |
D | smb_common.c | 191 static char *next_dialect(char *dialect, int *next_off, int bcount) in next_dialect() argument 193 dialect = dialect + *next_off; in next_dialect() 194 *next_off = strnlen(dialect, bcount); in next_dialect() 195 if (dialect[*next_off] != '\0') in next_dialect()
|
D | smb2pdu.c | 2671 int next_off = 0; in smb2_open() local 3360 next_off = conn->vals->create_lease_size; in smb2_open() 3380 *next_ptr = cpu_to_le32(next_off); in smb2_open() 3382 next_off = conn->vals->create_mxac_size; in smb2_open() 3398 *next_ptr = cpu_to_le32(next_off); in smb2_open() 3400 next_off = conn->vals->create_disk_id_size; in smb2_open() 3412 *next_ptr = cpu_to_le32(next_off); in smb2_open()
|
/fs/ntfs3/ |
D | fsntfs.c | 1921 sbi->security.next_off = in ntfs_security_init() 2149 next = sbi->security.next_off & (SecurityDescriptorsBlockSize - 1); in ntfs_insert_security() 2155 sbi->security.next_off += SecurityDescriptorsBlockSize + left; in ntfs_insert_security() 2174 d_security->off = cpu_to_le64(sbi->security.next_off); in ntfs_insert_security() 2179 err = ntfs_sb_write_run(sbi, &ni->file.run, sbi->security.next_off, in ntfs_insert_security() 2185 mirr_off = sbi->security.next_off + SecurityDescriptorsBlockSize; in ntfs_insert_security() 2245 sbi->security.next_off += aligned_sec_size; in ntfs_insert_security()
|
D | ntfs_fs.h | 284 u64 next_off; member
|
/fs/jbd2/ |
D | transaction.c | 2480 unsigned int next_off = curr_off + bh->b_size; in jbd2_journal_invalidatepage() local 2483 if (next_off > stop) in jbd2_journal_invalidatepage() 2495 curr_off = next_off; in jbd2_journal_invalidatepage()
|
/fs/ |
D | buffer.c | 1521 unsigned int next_off = curr_off + bh->b_size; in block_invalidatepage() local 1527 if (next_off > stop) in block_invalidatepage() 1535 curr_off = next_off; in block_invalidatepage()
|
/fs/reiserfs/ |
D | inode.c | 3172 unsigned int next_off = curr_off + bh->b_size; in reiserfs_invalidatepage() local 3175 if (next_off > stop) in reiserfs_invalidatepage() 3187 curr_off = next_off; in reiserfs_invalidatepage()
|