Lines Matching +full:a +full:- +full:za +full:- +full:z0 +full:- +full:9 +full:_
5 # SPDX-License-Identifier: Apache-2.0
26 Note - this function requires config global variable to be initialized.
47 parser.add_argument("-k", "--kernel", required=True,
49 parser.add_argument("-o", "--output", required=True,
51 parser.add_argument("-d", "--debug", action="store_true",
73 pattern = r'(^[a-zA-Z_][a-zA-Z0-9_]*)'
94 for nsym, symbol in enumerate(symtab.iter_symbols()): # pylint: disable=unused-variable
116 entry.offset = entry.addr - first_addr
126 print("/* AUTO-GENERATED by gen_symtab.py, do not edit! */", file=wf)
139 # Append a dummy entry at the end to facilitate the binary search
140 if symtab_list[-1].size == 0:
141 dummy_offset = f"{hex(symtab_list[-1].offset)} + sizeof(uintptr_t)"
143 dummy_offset = f"{hex(symtab_list[-1].offset + symtab_list[-1].size)}"