Home
last modified time | relevance | path

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

/Linux-v5.4/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-v5.4/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-v5.4/include/uapi/linux/
Datm_zatm.h30 int offset,next_off; /* alignment optimizations: offset */ member
/Linux-v5.4/mm/
Dpercpu.c1042 int *next_off) in pcpu_is_populated() argument
1054 *next_off = re * PAGE_SIZE / PCPU_MIN_ALLOC_SIZE; in pcpu_is_populated()
1081 int bit_off, bits, next_off; in pcpu_find_block_fit() local
1098 &next_off)) in pcpu_find_block_fit()
1101 bit_off = next_off; in pcpu_find_block_fit()
/Linux-v5.4/fs/jbd2/
Dtransaction.c2388 unsigned int next_off = curr_off + bh->b_size; in jbd2_journal_invalidatepage() local
2391 if (next_off > stop) in jbd2_journal_invalidatepage()
2403 curr_off = next_off; in jbd2_journal_invalidatepage()
/Linux-v5.4/fs/
Dbuffer.c1477 unsigned int next_off = curr_off + bh->b_size; in block_invalidatepage() local
1483 if (next_off > stop) in block_invalidatepage()
1491 curr_off = next_off; in block_invalidatepage()
/Linux-v5.4/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-v5.4/drivers/block/
Drbd.c2424 u64 off, next_off; in rbd_obj_init_discard() local
2438 next_off = round_down(obj_req->ex.oe_off + obj_req->ex.oe_len, in rbd_obj_init_discard()
2440 if (off >= next_off) in rbd_obj_init_discard()
2445 off, next_off - off); in rbd_obj_init_discard()
2447 obj_req->ex.oe_len = next_off - off; in rbd_obj_init_discard()
/Linux-v5.4/drivers/atm/
Dzatm.c621 zatm_dev->pool_info[i].next_off = 0; in start_rx()