Home
last modified time | relevance | path

Searched refs:footer (Results 1 - 25 of 43) sorted by relevance

12

/third_party/f2fs-tools/fsck/
H A Dnode.h23 return ((node)->footer.nid == (node)->footer.ino); in IS_INODE()
29 nid_t ino = le32_to_cpu(node_blk->footer.ino); in ADDRS_PER_PAGE()
130 return le32_to_cpu(node_blk->footer.ino); in ino_of_node()
135 return le64_to_cpu(node_blk->footer.cp_ver); in cpver_of_node()
156 return le32_to_cpu(node_blk->footer.next_blkaddr); in next_blkaddr_of_node()
161 return le32_to_cpu(node_blk->footer.flag) & (1 << type); in is_node()
166 unsigned int flag = le32_to_cpu(rn->footer.flag); in set_cold_node()
172 rn->footer.flag = cpu_to_le32(flag); in set_cold_node()
H A Dnode.c64 raw_node->footer.cp_ver = cpu_to_le64(cp_ver); in f2fs_rebuild_qf_inode()
126 node_blk->footer.nid = cpu_to_le32(dn->nid); in new_node_block()
127 node_blk->footer.ino = f2fs_inode->footer.ino; in new_node_block()
128 node_blk->footer.flag = cpu_to_le32(ofs << OFFSET_BIT_SHIFT); in new_node_block()
129 node_blk->footer.cp_ver = ckpt->checkpoint_ver; in new_node_block()
153 update_nat_blkaddr(sbi, le32_to_cpu(f2fs_inode->footer.ino), in new_node_block()
H A Ddir.c119 nid_t ino = le32_to_cpu(dir->footer.ino); in find_in_level()
234 nid_t pino = le32_to_cpu(parent->footer.ino); in f2fs_add_link()
339 nid_t ino = le32_to_cpu(inode->footer.ino); in make_empty_dir()
380 nid_t ino = le32_to_cpu(inode->footer.ino); in page_symlink()
530 node_blk->footer.ino = cpu_to_le32(de->ino); in init_inode_block()
531 node_blk->footer.nid = cpu_to_le32(de->ino); in init_inode_block()
532 node_blk->footer.flag = 0; in init_inode_block()
533 node_blk->footer.cp_ver = ckpt->checkpoint_ver; in init_inode_block()
555 nid_t ino = le32_to_cpu(node->footer.ino); in convert_inline_dentry()
747 le32_to_cpu(child->footer in f2fs_create()
[all...]
H A Dfsck.c166 ASSERT_MSG("Summary footer is not for node segment"); in is_valid_ssa_node_blk()
174 FIX_MSG("Summary footer indicates a node segment: 0x%x", segno); in is_valid_ssa_node_blk()
175 sum_blk->footer.entry_type = SUM_TYPE_NODE; in is_valid_ssa_node_blk()
246 if (le32_to_cpu(node_blk->footer.nid) != nid) in is_valid_summary()
250 if (node_blk->footer.nid == node_blk->footer.ino) { in is_valid_summary()
291 ASSERT_MSG("Summary footer is not for data segment"); in is_valid_ssa_data_blk()
299 FIX_MSG("Summary footer indicates a data segment: 0x%x", segno); in is_valid_ssa_data_blk()
300 sum_blk->footer.entry_type = SUM_TYPE_DATA; in is_valid_ssa_data_blk()
422 node_blk->footer in sanity_check_nid()
[all...]
H A Ddump.c74 le32_to_cpu(node_block->footer.flag) >> in nat_dump()
95 le32_to_cpu(node_block->footer.flag) >> in nat_dump()
563 if (le32_to_cpu(node_blk->footer.ino) != nid || in dump_node_scan_disk()
564 le32_to_cpu(node_blk->footer.nid) != nid) in dump_node_scan_disk()
567 MSG(0, "node_blk.footer.flag [0x%x]\n", le32_to_cpu(node_blk->footer.flag)); in dump_node_scan_disk()
568 MSG(0, "node_blk.footer.cp_ver [%x]\n", (u32)(cpver_of_node(node_blk))); in dump_node_scan_disk()
603 DBG(1, "node_blk.footer.ino [0x%x]\n", le32_to_cpu(node_blk->footer.ino)); in dump_node()
604 DBG(1, "node_blk.footer in dump_node()
[all...]
H A Df2fs.h334 unsigned flag = le32_to_cpu(node_blk->footer.flag); in ofs_of_node()
624 #define IS_SUM_NODE_SEG(footer) (footer.entry_type == SUM_TYPE_NODE)
625 #define IS_SUM_DATA_SEG(footer) (footer.entry_type == SUM_TYPE_DATA)
/third_party/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py217 for id, header, body, footer in cmds:
233 if footer is not None:
234 print ' while(body + sizeof(%s) <= next) {' % footer
235 print ' dump_%s((const %s *)body);' % (footer, footer)
236 print ' body += sizeof(%s);' % footer
325 for id, header, body, footer in cmds:
329 if footer is not None:
330 names.add(footer)
/third_party/PyYAML/examples/yaml-highlight/
H A Dyaml_hl.py7 def __init__(self, header=None, footer=None,
10 self.footer = footer
97 if self.style.footer:
98 self.output.write(self.style.footer)
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Ddifferential_fuzz_mutator.js183 const footer = thisMutator.getSectionFooter(path);
184 thisMutator.insertBeforeSkip(path, footer);
187 // Additionally we print one footer in the end.
190 const footer = thisMutator.getSectionFooter(path);
191 path.node.body.push(footer);
/third_party/mbedtls/library/
H A Dpem.c268 int mbedtls_pem_read_buffer(mbedtls_pem_context *ctx, const char *header, const char *footer, in mbedtls_pem_read_buffer() argument
294 s2 = (unsigned char *) strstr((const char *) data, footer); in mbedtls_pem_read_buffer()
314 end += strlen(footer); in mbedtls_pem_read_buffer()
494 int mbedtls_pem_write_buffer(const char *header, const char *footer, in mbedtls_pem_write_buffer() argument
503 add_len = strlen(header) + strlen(footer) + (((use_len > 2) ? (use_len - 2) : 0) / 64) + 1; in mbedtls_pem_write_buffer()
534 memcpy(p, footer, strlen(footer)); in mbedtls_pem_write_buffer()
535 p += strlen(footer); in mbedtls_pem_write_buffer()
/third_party/mbedtls/include/mbedtls/
H A Dpem.h36 /** No PEM header or footer found. */
84 * \param footer footer string to seek and expect
104 int mbedtls_pem_read_buffer(mbedtls_pem_context *ctx, const char *header, const char *footer,
142 * \param footer The footer string to write.
163 int mbedtls_pem_write_buffer(const char *header, const char *footer,
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dapi_exec_init.py75 footer = """
94 print(footer)
H A Dgl_marshal_h.py35 footer = """
52 print(footer)
H A Dgl_gentable.py87 footer = """
164 print(footer)
/third_party/skia/third_party/icu/
H A Dmake_data_cpp.py32 header, line_begin, line_end, footer = fmt
42 o.write(footer.format(name))
/third_party/gn/misc/
H A Dhelp_as_html.py96 footer = '</div></body></html>'
100 print(header + '\n'.join(output) + footer)
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_lower_subgroups.c268 * footer: in lower_instr()
281 struct ir3_block *footer = ir3_block_create(ir); in lower_instr() local
282 list_add(&footer->node, &exit->node); in lower_instr()
287 link_blocks(header, footer, 1); in lower_instr()
291 link_blocks_physical(exit, footer, 1); in lower_instr()
293 link_blocks(footer, header, 0); in lower_instr()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DWriteNumberFormatSerialTestData.java41 static final String footer ="\n final static byte[][] content = {generalInstance, currencyInstance, percentInstance, scientificInstance};\n"+ field in WriteNumberFormatSerialTestData
56 file.write(footer.getBytes()); in main()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DWriteNumberFormatSerialTestData.java38 static final String footer ="\n final static byte[][] content = {generalInstance, currencyInstance, percentInstance, scientificInstance};\n"+ field in WriteNumberFormatSerialTestData
53 file.write(footer.getBytes()); in main()
/third_party/f2fs-tools/mkfs/
H A Df2fs_format.c866 SET_SUM_TYPE((&sum->footer), SUM_TYPE_DATA); in f2fs_write_check_point_pack()
999 SET_SUM_TYPE((&sum->footer), SUM_TYPE_NODE); in f2fs_write_check_point_pack()
1026 SET_SUM_TYPE((&sum->footer), SUM_TYPE_NODE); in f2fs_write_check_point_pack()
1038 SET_SUM_TYPE((&sum->footer), SUM_TYPE_NODE); in f2fs_write_check_point_pack()
1192 next_blkaddr = le32_to_cpu(raw_node->footer.next_blkaddr); in f2fs_discard_obsolete_dnode()
1224 raw_node->footer.nid = sb->root_ino; in f2fs_write_root_inode()
1225 raw_node->footer.ino = sb->root_ino; in f2fs_write_root_inode()
1226 raw_node->footer.cp_ver = cpu_to_le64(1); in f2fs_write_root_inode()
1227 raw_node->footer.next_blkaddr = cpu_to_le32( in f2fs_write_root_inode()
1387 raw_node->footer in f2fs_write_qf_inode()
[all...]
/third_party/python/Tools/scripts/
H A Dgenerate_opcode_h.py22 footer = """
169 fobj.write(footer)
/third_party/f2fs-tools/include/
H A Df2fs_fs.h691 #define GET_SUM_TYPE(footer) ((footer)->entry_type)
692 #define SET_SUM_TYPE(footer, type) ((footer)->entry_type = type)
1125 struct node_footer footer; member
1328 struct summary_footer footer; member
1693 raw_node->footer.nid = sb->qf_ino[qtype]; in f2fs_init_qf_inode()
1694 raw_node->footer.ino = sb->qf_ino[qtype]; in f2fs_init_qf_inode()
1695 raw_node->footer.cp_ver = cpu_to_le64(1); in f2fs_init_qf_inode()
/third_party/cups-filters/filter/
H A Dbanner.h48 char *header, *footer; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp304 const char *footer) {
316 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
351 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DWriteIndicCharts.java55 static String footer = " </table>\n"+ field in WriteIndicCharts
188 os.write(footer); in writeIICharts()
287 os.write(footer); in writeCharts()

Completed in 19 milliseconds

12