Home
last modified time | relevance | path

Searched refs:b (Results 1 – 18 of 18) sorted by relevance

/fs/jffs2/
A Djffs2_1pass.c558 return b; in add_node()
693 for (b = pL->frag.listHead; b != NULL; b = b->next) { in jffs2_1pass_read_inode()
717 for (b = pL->frag.listHead; b != NULL; b = b->next) { in jffs2_1pass_read_inode()
829 for(b = pL->dir.listHead; b; b = b->next, counter++) { in jffs2_1pass_find_inode()
950 for (b = pL->dir.listHead; b; b = b->next) { in jffs2_1pass_list_inodes()
1087 for(b = pL->dir.listHead; b; b = b->next) { in jffs2_1pass_resolve_inode()
1216 while (b) { in jffs2_1pass_rescan_needed()
1224 b = b->next; in jffs2_1pass_rescan_needed()
1426 b = b->next; in dump_fragments()
1457 b = b->next; in dump_dirents()
[all …]
A Dcompr_lzo.c139 #define PTR_ALIGNED2_4(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 3) == 0) argument
140 #define PTR_ALIGNED2_8(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 7) == 0) argument
141 #define PTR_LT(a,b) (PTR(a) < PTR(b)) argument
142 #define PTR_GE(a,b) (PTR(a) >= PTR(b)) argument
143 #define PTR_DIFF(a,b) ((lzo_ptrdiff_t) (PTR(a) - PTR(b))) argument
144 #define pd(a,b) ((lzo_uint) ((a)-(b))) argument
/fs/ubifs/
A Dreplay.c140 b->bud->lnum, lp->free, lp->dirty, b->free, in set_bud_lprops()
141 b->dirty); in set_bud_lprops()
143 lp = ubifs_change_lp(c, lp, b->free, dirty + b->dirty, in set_bud_lprops()
152 b->bud->lnum, c->leb_size - b->free); in set_bud_lprops()
277 if (a == b) in replay_entries_cmp()
539 int err = 0, used = 0, lnum = b->bud->lnum, offs = b->bud->start; in replay_bud()
676 lnum, b->dirty, b->free); in replay_bud()
725 kfree(b); in destroy_bud_list()
753 if (!b) { in add_replay_bud()
763 b->bud = bud; in add_replay_bud()
[all …]
A Dlpt.c233 int b = *pos; in pack_bits() local
240 if (b) { in pack_bits()
242 nrbits += b; in pack_bits()
265 b = nrbits & 7; in pack_bits()
266 if (b == 0) in pack_bits()
269 *pos = b; in pack_bits()
284 int b = *pos; in ubifs_unpack_bits() local
292 if (b) { in ubifs_unpack_bits()
311 nrbits += b; in ubifs_unpack_bits()
333 b = nrbits & 7; in ubifs_unpack_bits()
[all …]
A Dgc.c117 static int data_nodes_cmp(void *priv, struct list_head *a, struct list_head *b) in data_nodes_cmp() argument
124 if (a == b) in data_nodes_cmp()
128 sb = list_entry(b, struct ubifs_scan_node, list); in data_nodes_cmp()
161 struct list_head *b) in nondata_nodes_cmp() argument
168 if (a == b) in nondata_nodes_cmp()
172 sb = list_entry(b, struct ubifs_scan_node, list); in nondata_nodes_cmp()
A Dlog.c120 struct ubifs_bud *b; in ubifs_add_bud() local
127 b = rb_entry(parent, struct ubifs_bud, rb); in ubifs_add_bud()
128 ubifs_assert(bud->lnum != b->lnum); in ubifs_add_bud()
129 if (bud->lnum < b->lnum) in ubifs_add_bud()
A Dlprops.c177 const int b = LPT_HEAP_SZ / 2 - 1; in add_to_lpt_heap() local
182 cpos = (((size_t)lprops >> 4) & b) + b; in add_to_lpt_heap()
183 ubifs_assert(cpos >= b); in add_to_lpt_heap()
/fs/zfs/
A Dzfs_fletcher.c60 uint64_t a, b, c, d; in fletcher_4_endian() local
62 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_endian()
64 b += a; in fletcher_4_endian()
65 c += b; in fletcher_4_endian()
70 zcp->zc_word[1] = cpu_to_zfs64(b, endian); in fletcher_4_endian()
A Dzfs_sha256.c78 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
87 a = H[0]; b = H[1]; c = H[2]; d = H[3]; in SHA256Transform()
92 T2 = SIGMA0(a) + Maj(a, b, c); in SHA256Transform()
94 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
97 H[0] += a; H[1] += b; H[2] += c; H[3] += d; in SHA256Transform()
/fs/exfat/
A Dcompiler.h63 #define CONCAT2(a, b) a ## b argument
64 #define CONCAT1(a, b) CONCAT2(a, b) argument
A Dlookup.c62 static int compare_char(struct exfat* ef, uint16_t a, uint16_t b) in compare_char() argument
64 return (int) ef->upcase[a] - (int) ef->upcase[b]; in compare_char()
67 static int compare_name(struct exfat* ef, const le16_t* a, const le16_t* b) in compare_name() argument
69 while (le16_to_cpu(*a) && le16_to_cpu(*b)) in compare_name()
71 int rc = compare_char(ef, le16_to_cpu(*a), le16_to_cpu(*b)); in compare_name()
75 b++; in compare_name()
77 return compare_char(ef, le16_to_cpu(*a), le16_to_cpu(*b)); in compare_name()
A Dcluster.c457 cluster_t* a, cluster_t* b) in find_used_clusters() argument
462 for (*a = *b + 1; *a < end; (*a)++) in find_used_clusters()
469 for (*b = *a; *b < end; (*b)++) in find_used_clusters()
470 if (BMAP_GET(ef->cmap.chunk, *b - EXFAT_FIRST_DATA_CLUSTER) == 0) in find_used_clusters()
472 (*b)--; in find_used_clusters()
479 int exfat_find_used_sectors(const struct exfat* ef, off_t* a, off_t* b) in exfat_find_used_sectors() argument
483 if (*a == 0 && *b == 0) in exfat_find_used_sectors()
488 cb = s2c(ef, *b); in exfat_find_used_sectors()
492 if (*a != 0 || *b != 0) in exfat_find_used_sectors()
494 *b = c2s(ef, cb) + (CLUSTER_SIZE(*ef->sb) - 1) / SECTOR_SIZE(*ef->sb); in exfat_find_used_sectors()
A Dexfat.h54 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
55 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
200 int exfat_find_used_sectors(const struct exfat* ef, off_t* a, off_t* b);
A Dexfatfs.h41 #define strtol(n, e, b) simple_strtol(n, e, b) argument
/fs/btrfs/
A Dctree.c393 struct extent_buffer *b; in btrfs_search_slot() local
405 b = root->node; in btrfs_search_slot()
406 extent_buffer_get(b); in btrfs_search_slot()
407 while (b) { in btrfs_search_slot()
408 level = btrfs_header_level(b); in btrfs_search_slot()
423 if (level != btrfs_header_level(b)) in btrfs_search_slot()
425 level = btrfs_header_level(b); in btrfs_search_slot()
426 p->nodes[level] = b; in btrfs_search_slot()
430 ret = btrfs_bin_search(b, key, &slot); in btrfs_search_slot()
463 b = read_node_slot(fs_info, b, slot); in btrfs_search_slot()
[all …]
A Dvolumes.c921 static inline int parity_smaller(u64 a, u64 b) in parity_smaller() argument
923 return a > b; in parity_smaller()
/fs/ext4/
A Dext4_write.c154 if (inode->b.blocks.indir_block != 0) { in delete_single_indirect_block()
155 blknr = le32_to_cpu(inode->b.blocks.indir_block); in delete_single_indirect_block()
204 if (inode->b.blocks.double_indir_block != 0) { in delete_double_indirect_block()
211 blknr = le32_to_cpu(inode->b.blocks.double_indir_block); in delete_double_indirect_block()
251 blknr = le32_to_cpu(inode->b.blocks.double_indir_block); in delete_double_indirect_block()
303 if (inode->b.blocks.triple_indir_block != 0) { in delete_triple_indirect_block()
310 blknr = le32_to_cpu(inode->b.blocks.triple_indir_block); in delete_triple_indirect_block()
404 blknr = le32_to_cpu(inode->b.blocks.triple_indir_block); in delete_triple_indirect_block()
483 inode.b.blocks.dir_blocks; in ext4fs_delete_file()
930 sizebytes <= sizeof(file_inode->b.symlink)) { in ext4fs_write()
[all …]
A Dext4_common.c568 g_parent_inode->b.blocks. in ext4fs_update_parent_dentry()
1677 inode->b.blocks.dir_blocks, in read_allocated_block()
1742 if ((le32_to_cpu(inode->b.blocks.indir_block) << in read_allocated_block()
1746 (inode->b.blocks. in read_allocated_block()
1755 le32_to_cpu(inode->b.blocks. in read_allocated_block()
1791 if ((le32_to_cpu(inode->b.blocks.double_indir_block) << in read_allocated_block()
1795 (inode->b.blocks. in read_allocated_block()
1805 le32_to_cpu(inode->b.blocks.double_indir_block) << in read_allocated_block()
1883 if ((le32_to_cpu(inode->b.blocks.triple_indir_block) << in read_allocated_block()
1887 le32_to_cpu(inode->b.blocks.triple_indir_block) in read_allocated_block()
[all …]

Completed in 35 milliseconds