Home
last modified time | relevance | path

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

/Linux-v5.10/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.10/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.10/include/uapi/linux/
Datm_zatm.h30 int offset,next_off; /* alignment optimizations: offset */ member
/Linux-v5.10/scripts/gdb/linux/
Ddmesg.py80 next_off = off + (prb_data_blk_lpos_type.get_type()['next'].bitpos // 8)
115 end = utils.read_ulong(descs, desc_off + next_off) % text_data_sz
/Linux-v5.10/mm/
Dpercpu.c1023 int *next_off) in pcpu_is_populated() argument
1035 *next_off = re * PAGE_SIZE / PCPU_MIN_ALLOC_SIZE; in pcpu_is_populated()
1062 int bit_off, bits, next_off; in pcpu_find_block_fit() local
1079 &next_off)) in pcpu_find_block_fit()
1082 bit_off = next_off; in pcpu_find_block_fit()
/Linux-v5.10/fs/jbd2/
Dtransaction.c2451 unsigned int next_off = curr_off + bh->b_size; in jbd2_journal_invalidatepage() local
2454 if (next_off > stop) in jbd2_journal_invalidatepage()
2466 curr_off = next_off; in jbd2_journal_invalidatepage()
/Linux-v5.10/fs/
Dbuffer.c1520 unsigned int next_off = curr_off + bh->b_size; in block_invalidatepage() local
1526 if (next_off > stop) in block_invalidatepage()
1534 curr_off = next_off; in block_invalidatepage()
/Linux-v5.10/fs/reiserfs/
Dinode.c3174 unsigned int next_off = curr_off + bh->b_size; in reiserfs_invalidatepage() local
3177 if (next_off > stop) in reiserfs_invalidatepage()
3189 curr_off = next_off; in reiserfs_invalidatepage()
/Linux-v5.10/drivers/block/
Drbd.c2331 u64 off, next_off; in rbd_obj_init_discard() local
2345 next_off = round_down(obj_req->ex.oe_off + obj_req->ex.oe_len, in rbd_obj_init_discard()
2347 if (off >= next_off) in rbd_obj_init_discard()
2352 off, next_off - off); in rbd_obj_init_discard()
2354 obj_req->ex.oe_len = next_off - off; in rbd_obj_init_discard()
/Linux-v5.10/drivers/atm/
Dzatm.c621 zatm_dev->pool_info[i].next_off = 0; in start_rx()