node_ofs         3248 fs/f2fs/f2fs.h block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode);
node_ofs          590 fs/f2fs/gc.c   block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode)
node_ofs          595 fs/f2fs/gc.c   	if (node_ofs == 0)
node_ofs          598 fs/f2fs/gc.c   	if (node_ofs <= 2) {
node_ofs          599 fs/f2fs/gc.c   		bidx = node_ofs - 1;
node_ofs          600 fs/f2fs/gc.c   	} else if (node_ofs <= indirect_blks) {
node_ofs          601 fs/f2fs/gc.c   		int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
node_ofs          602 fs/f2fs/gc.c   		bidx = node_ofs - 2 - dec;
node_ofs          604 fs/f2fs/gc.c   		int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
node_ofs          605 fs/f2fs/gc.c   		bidx = node_ofs - 5 - dec;