Lines Matching defs:offset

69 	/* offset of first byte stored in direct item. */
326 /* first unflushed transactions offset */
1279 static inline void set_offset_v2_k_offset(struct offset_v2 *v2, loff_t offset)
1281 offset &= (~0ULL >> 4);
1282 v2->v = (v2->v & cpu_to_le64(15ULL << 60)) | cpu_to_le64(offset);
1386 /* an offset to the item body within the block */
1502 loff_t offset)
1505 key->u.k_offset_v1.k_offset = cpu_to_le32(offset);
1507 set_offset_v2_k_offset(&key->u.k_offset_v2, offset);
1511 loff_t offset)
1514 le_key_k_offset(version, key) + offset);
1517 static inline void add_le_ih_k_offset(struct item_head *ih, loff_t offset)
1519 add_le_key_k_offset(ih_version(ih), &(ih->ih_key), offset);
1522 static inline void set_le_ih_k_offset(struct item_head *ih, loff_t offset)
1524 set_le_key_k_offset(ih_version(ih), &(ih->ih_key), offset);
1594 static inline void set_cpu_key_k_offset(struct cpu_key *key, loff_t offset)
1596 key->on_disk_key.k_offset = offset;
1898 __le16 deh_location; /* offset of name in the whole item */
2014 #define GET_HASH_VALUE(offset) ((offset) & 0x7fffff80LL)
2016 #define GET_GENERATION_NUMBER(offset) ((offset) & 0x7fLL)
2019 #define SET_GENERATION_NUMBER(offset,gen_number) (GET_HASH_VALUE(offset)|(gen_number))
2280 // reiserfs version 2 has max offset 60 bits. Version 1 - 32 bit offset
2619 * | indirect item | offset + 1 |TYPE_INDIRECT | [1] |
2621 * | direct item | offset + 1 |TYPE_DIRECT | [2] |
2752 /* offset in the log of where to start replay after a crash */
3081 void make_cpu_key(struct cpu_key *cpu_key, struct inode *inode, loff_t offset,
3085 loff_t offset, int type, int length, int entry_count);
3270 sector_t block; /* file offset, in blocks */