Home
last modified time | relevance | path

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

/external/f2fs-tools/fsck/
Ddump.c539 unsigned int start_bidx_of_node(unsigned int node_ofs, in start_bidx_of_node() argument
545 if (node_ofs == 0) in start_bidx_of_node()
548 if (node_ofs <= 2) { in start_bidx_of_node()
549 bidx = node_ofs - 1; in start_bidx_of_node()
550 } else if (node_ofs <= indirect_blks) { in start_bidx_of_node()
551 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1); in start_bidx_of_node()
552 bidx = node_ofs - 2 - dec; in start_bidx_of_node()
554 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1); in start_bidx_of_node()
555 bidx = node_ofs - 5 - dec; in start_bidx_of_node()
565 unsigned int node_ofs; in dump_data_offset() local
[all …]