Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 9 of 9) sorted by relevance

/fs/reiserfs/
Dhashes.c28 u32 b0, b1; \
31 b1 = h1; \
36 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); \
37 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); \
41 h1 += b1; \
/fs/f2fs/
Dhash.c29 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local
35 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform()
36 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform()
40 buf[1] += b1; in TEA_transform()
/fs/ext4/
Dhash.c19 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local
25 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform()
26 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform()
30 buf[1] += b1; in TEA_transform()
Dextents.c1904 ext4_lblk_t b1, b2; in ext4_ext_check_overlap() local
1908 b1 = le32_to_cpu(newext->ee_block); in ext4_ext_check_overlap()
1919 if (b2 < b1) { in ext4_ext_check_overlap()
1927 if (b1 + len1 < b1) { in ext4_ext_check_overlap()
1928 len1 = EXT_MAX_BLOCKS - b1; in ext4_ext_check_overlap()
1934 if (b1 + len1 > b2) { in ext4_ext_check_overlap()
1935 newext->ee_len = cpu_to_le16(b2 - b1); in ext4_ext_check_overlap()
Dmballoc.c497 unsigned char *b1, *b2; in mb_cmp_bitmaps() local
499 b1 = (unsigned char *) e4b->bd_info->bb_bitmap; in mb_cmp_bitmaps()
502 if (b1[i] != b2[i]) { in mb_cmp_bitmaps()
507 e4b->bd_group, i, i * 8, b1[i], b2[i]); in mb_cmp_bitmaps()
/fs/xfs/
Dxfs_extent_busy.c649 struct xfs_extent_busy *b1 = in xfs_extent_busy_ag_cmp() local
655 diff = b1->agno - b2->agno; in xfs_extent_busy_ag_cmp()
657 diff = b1->bno - b2->bno; in xfs_extent_busy_ag_cmp()
/fs/hpfs/
Dea.c322 void *b1, *b2; in hpfs_set_ea() local
323 if (!(b1 = hpfs_map_sector(s, le32_to_cpu(fnode->ea_secno) + i, &bh1, len - i - 1))) { in hpfs_set_ea()
332 memcpy(b2, b1, 512); in hpfs_set_ea()
/fs/ocfs2/
Ddir.c212 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local
218 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform()
219 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform()
223 buf[1] += b1; in TEA_transform()
/fs/btrfs/
Dinode.c2409 static int backref_comp(struct sa_defrag_extent_backref *b1, in backref_comp() argument
2412 if (b1->root_id < b2->root_id) in backref_comp()
2414 else if (b1->root_id > b2->root_id) in backref_comp()
2417 if (b1->inum < b2->inum) in backref_comp()
2419 else if (b1->inum > b2->inum) in backref_comp()
2422 if (b1->file_pos < b2->file_pos) in backref_comp()
2424 else if (b1->file_pos > b2->file_pos) in backref_comp()