/third_party/f2fs-tools/fsck/ |
H A D | node.h | 23 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 D | node.c | 64 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 D | dir.c | 119 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 D | fsck.c | 166 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 D | dump.c | 74 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 D | f2fs.h | 334 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 D | svga_dump.py | 217 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 D | yaml_hl.py | 7 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 D | differential_fuzz_mutator.js | 183 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 D | pem.c | 268 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 D | pem.h | 36 /** 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 D | api_exec_init.py | 75 footer = """ 94 print(footer)
|
H A D | gl_marshal_h.py | 35 footer = """ 52 print(footer)
|
H A D | gl_gentable.py | 87 footer = """ 164 print(footer)
|
/third_party/skia/third_party/icu/ |
H A D | make_data_cpp.py | 32 header, line_begin, line_end, footer = fmt 42 o.write(footer.format(name))
|
/third_party/gn/misc/ |
H A D | help_as_html.py | 96 footer = '</div></body></html>' 100 print(header + '\n'.join(output) + footer)
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_lower_subgroups.c | 268 * 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 D | WriteNumberFormatSerialTestData.java | 41 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 D | WriteNumberFormatSerialTestData.java | 38 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 D | f2fs_format.c | 866 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 D | generate_opcode_h.py | 22 footer = """ 169 fobj.write(footer)
|
/third_party/f2fs-tools/include/ |
H A D | f2fs_fs.h | 691 #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 D | banner.h | 48 char *header, *footer; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | AggressiveAntiDepBreaker.cpp | 304 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 D | WriteIndicCharts.java | 55 static String footer = " </table>\n"+ field in WriteIndicCharts 188 os.write(footer); in writeIICharts() 287 os.write(footer); in writeCharts()
|