Home
last modified time | relevance | path

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

/third_party/f2fs-tools/fsck/
Ddump.c538 unsigned int start_bidx_of_node(unsigned int node_ofs, in start_bidx_of_node() argument
544 if (node_ofs == 0) in start_bidx_of_node()
547 if (node_ofs <= 2) { in start_bidx_of_node()
548 bidx = node_ofs - 1; in start_bidx_of_node()
549 } else if (node_ofs <= indirect_blks) { in start_bidx_of_node()
550 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1); in start_bidx_of_node()
551 bidx = node_ofs - 2 - dec; in start_bidx_of_node()
553 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1); in start_bidx_of_node()
554 bidx = node_ofs - 5 - dec; in start_bidx_of_node()
564 unsigned int node_ofs; in dump_data_offset() local
[all …]