| /misc/config_tools/board_inspector/extractors/ |
| A D | 30-memory.py | 17 end = "0x{:016x}".format(e820_entry.end) 18 size = e820_entry.end - e820_entry.start + 1 19 add_child(memory_node, "range", start=start, end=end, size=str(size))
|
| A D | 40-acpi-tables.py | 101 end = "0x{:016x}".format(entry.address + entry.size - 1) 103 … region = add_child(memory_node, "range", None, id="CRL Binary", start=start, end=end, size=size) 133 end = "0x{:016x}".format(entry.address + entry.size - 1) 135 …region = add_child(memory_node, "range", None, id="TCC Error Log", start=start, end=end, size=size)
|
| /misc/debug_tools/acrn_crashlog/acrnprobe/ |
| A D | startupreason.c | 37 char *start, *p1, *p2, *end; in get_cmdline_bootreason() local 65 end = MIN(p1, p2); in get_cmdline_bootreason() 67 end = MAX(p1, p2); in get_cmdline_bootreason() 69 if (!end) in get_cmdline_bootreason() 70 end = cmdline + size; in get_cmdline_bootreason() 72 const size_t len = MIN((size_t)(end - start), (size_t)(limit - 1)); in get_cmdline_bootreason()
|
| A D | crash_reclassify.c | 133 char *end; in _get_data() local 146 end = strchr(value, '\n'); in _get_data() 147 if (!end) in _get_data() 150 size = MIN(max_size, (size_t)(end - value)); in _get_data()
|
| /misc/efi-stub/ |
| A D | malloc.c | 63 EFI_PHYSICAL_ADDRESS start, end; in emalloc_reserved_aligned() local 70 end = start + (desc->NumberOfPages << EFI_PAGE_SHIFT); in emalloc_reserved_aligned() 73 if ((end <= MEM_ADDR_1MB) && (maxaddr > MEM_ADDR_1MB)) in emalloc_reserved_aligned() 96 if ((start + size <= end) && (start + size <= maxaddr)) { in emalloc_reserved_aligned() 133 EFI_PHYSICAL_ADDRESS start, end; in dump_e820() local 140 end = start + (desc->NumberOfPages << EFI_PAGE_SHIFT); in dump_e820() 142 Print(L"[%d]start:%lx, end:%lx, type:%d\n", i, start, end, desc->Type); in dump_e820()
|
| /misc/config_tools/static_allocators/ |
| A D | gpa.py | 105 if other.end < self.start: 107 if self.end < other.start: 114 if other.start >= self.start and other.end <= self.end: 239 end = node.get('max') 259 end = node.get('max') 263 if window.start >= range.start and window.end <= range.end: 284 end = resource.get('max') 304 end = resource.get('max') 326 end = resource_hostbridge.get('max') 328 if int(end,16) < 4 * SIZE_G: [all …]
|
| /misc/config_tools/board_inspector/legacy/ |
| A D | parser_lib.py | 19 def print_yel(msg, warn=False, end=True): argument 26 if end: 29 print("\033[1;33mWarning\033[0m: "+msg, end="") 31 if end: 34 print("\033[1;33m{}\033[0m".format(msg), end="")
|
| A D | misc.py | 150 print("\t", end="", file=config) 157 print("{}, ".format(irq), end="", file=config) 220 print("\t{}".format(processor_id), end="", file=config) 224 print(", {}".format(processor_id), end="", file=config)
|
| A D | dmar.py | 381 file=config, end="") 386 file=config, end="") 391 file=config, end="") 396 file=config, end="")
|
| /misc/config_tools/board_config/ |
| A D | vbar_base_h.py | 53 end=int(match.group("end"), 16)) 60 if other.end < self.start: 62 if self.end < other.start: 264 … mmioRange = [MmioWindow(start=acrn_config_utilities.SIZE_2G, end=acrn_config_utilities.SIZE_4G-1)] 324 if w2.start <= w1.start <= w2.end and w2.start <= w1.end <= w2.end: 339 if cur.start <= last.end + 1: 340 last = MmioWindow(start=last.start, end=max(last.end, cur.end)) 354 window = MmioWindow(start=w.start, end=w.start+size-1) 357 window = MmioWindow(start=u.end+1, end=u.end+size) 404 mmiolist_per_vm[vm_i].append(MmioWindow(start = 0xffff0000 , end = 0xffffffff)) [all …]
|
| A D | pci_devices_h.py | 29 print("#define %-32s" % tmp_sub_name, end="", file=config)
|
| /misc/config_tools/board_inspector/memmapparser/ |
| A D | e820.py | 28 self.__class__.__name__, self.start, self.end, name_of_types.get(self.type)) 42 end = int(read_file(os.path.join(sysfs_memmap_path, i, "end")), base=16) 45 acc.append(E820Entry(start, end, ty))
|
| /misc/debug_tools/acrn_crashlog/usercrash/ |
| A D | crash_dump.c | 276 char *end; in get_key_value() local 296 end = strchr(msg, '\n'); in get_key_value() 297 if (end == NULL) in get_key_value() 298 end = data + size; in get_key_value() 300 len = end - start; in get_key_value()
|
| /misc/config_tools/board_inspector/acpiparser/ |
| A D | rtct.py | 185 end = addr + length 186 while addr < end: 196 end = addr + length 199 while addr < end: 220 end = addr + length 223 while addr < end:
|
| A D | dmar.py | 40 end = addr + length 45 while addr < end: 178 end = addr + length 185 while addr < end:
|
| A D | apic.py | 243 end = addr + length 246 while addr < end:
|
| A D | asf.py | 243 end = addr + length 249 while addr < end:
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | visitors.py | 21 print(f"{indent}{tree.label}", end="") 24 print(f" = {hex(tree.value)}", end="") 27 print(f" = '{tree.value}'", end="") 29 …rint(f" (deferred at {hex(tree.deferred_range[0])}, length {hex(tree.deferred_range[1])})", end="") 31 print(f" {tree.factory.label}: {tree.factory.seq}", end="")
|
| /misc/packaging/ |
| A D | gen_acrn_deb.py | 81 end = lines.index('#Build info End\n') 82 del lines[(start + 1):(end - 1)] 92 end = lines.index('#ACRN parameters End\n') 93 del lines[(start + 1):(end - 1)]
|
| /misc/debug_tools/acrn_crashlog/common/ |
| A D | cmdutils.c | 215 goto end; in exec_out2mem() 226 end: in exec_out2mem()
|
| A D | fsutils.c | 402 char *end; in file_read_string() local 421 end = strchr(string, '\n'); in file_read_string() 422 if (end) in file_read_string() 423 *end = 0; in file_read_string() 976 goto end; in dir_recursive() 1009 end: in dir_recursive()
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/src/ |
| A D | style.scss | 14 justify-content: flex-end;
|
| /misc/config_tools/configurator/packages/configurator/src/pages/ |
| A D | Welcome.vue | 11 <div class="d-flex justify-content-center border-end-sm col-sm">
|
| /misc/debug_tools/acrn_trace/scripts/ |
| A D | irq_analyze.py | 77 TSC end %d, TSC begin %d" \
|
| /misc/sample_application/uservm/ |
| A D | userApp.cpp | 242 …nt>::iterator i = (*latencies.latencyValues).begin(); i != (*latencies.latencyValues).end(); i++) { in dump_data()
|