Lines Matching full:write
75 cf.write("/* GENERATED CODE. DO NOT EDIT. */\n\n")
77 cf.write("/* Sizes and offsets specified in 4-byte units.\n")
78 cf.write(" * All addresses 4-byte aligned.\n")
79 cf.write(" */\n")
81 cf.write("struct data_seg { uint64_t addr; uint32_t sz; uint32_t off; };\n\n")
83 cf.write("static struct data_seg zefi_dsegs[] = {\n")
85 cf.write(" { 0x%x, %d, %d },\n"
87 cf.write("};\n\n")
89 cf.write("struct zero_seg { uint64_t addr; uint32_t sz; };\n\n")
91 cf.write("static struct zero_seg zefi_zsegs[] = {\n")
93 cf.write(" { 0x%x, %d },\n"
95 cf.write("};\n\n")
97 cf.write("static uintptr_t zefi_entry = 0x%xUL;\n" % (entry_addr))
100 …cf.write("static uintptr_t zefi_bootargs = 0x%xUL;\n" % (symtab.get_symbol_by_name(BOOTARGS_SYM)[0…
131 df.write(data_blob)