Home
last modified time | relevance | path

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

/Linux-v4.19/fs/hfs/
Dbnode.c316 int i, rec_off, off, next_off; in hfs_bnode_find() local
368 for (i = 1; i <= node->num_recs; off = next_off, i++) { in hfs_bnode_find()
370 next_off = hfs_bnode_read_u16(node, rec_off); in hfs_bnode_find()
371 if (next_off <= off || in hfs_bnode_find()
372 next_off > tree->node_size || in hfs_bnode_find()
373 next_off & 1) in hfs_bnode_find()
375 entry_size = next_off - off; in hfs_bnode_find()
/Linux-v4.19/fs/hfsplus/
Dbnode.c482 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()
/Linux-v4.19/include/uapi/linux/
Datm_zatm.h30 int offset,next_off; /* alignment optimizations: offset */ member
/Linux-v4.19/mm/
Dpercpu.c891 int *next_off) in pcpu_is_populated() argument
903 *next_off = re * PAGE_SIZE / PCPU_MIN_ALLOC_SIZE; in pcpu_is_populated()
929 int bit_off, bits, next_off; in pcpu_find_block_fit() local
946 &next_off)) in pcpu_find_block_fit()
949 bit_off = next_off; in pcpu_find_block_fit()
/Linux-v4.19/fs/jbd2/
Dtransaction.c2311 unsigned int next_off = curr_off + bh->b_size; in jbd2_journal_invalidatepage() local
2314 if (next_off > stop) in jbd2_journal_invalidatepage()
2326 curr_off = next_off; in jbd2_journal_invalidatepage()
/Linux-v4.19/fs/
Dbuffer.c1475 unsigned int next_off = curr_off + bh->b_size; in block_invalidatepage() local
1481 if (next_off > stop) in block_invalidatepage()
1489 curr_off = next_off; in block_invalidatepage()
/Linux-v4.19/fs/reiserfs/
Dinode.c3171 unsigned int next_off = curr_off + bh->b_size; in reiserfs_invalidatepage() local
3174 if (next_off > stop) in reiserfs_invalidatepage()
3186 curr_off = next_off; in reiserfs_invalidatepage()
/Linux-v4.19/fs/ext4/
Dinode.c1651 unsigned int next_off = curr_off + bh->b_size; in ext4_da_page_release_reservation() local
1653 if (next_off > stop) in ext4_da_page_release_reservation()
1668 curr_off = next_off; in ext4_da_page_release_reservation()
/Linux-v4.19/drivers/atm/
Dzatm.c620 zatm_dev->pool_info[i].next_off = 0; in start_rx()