| /hypervisor/debug/ |
| A D | console.c | 40 const char *end = NULL; in parse_hvdbg_cmdline() local 49 end = start + 1; in parse_hvdbg_cmdline() 50 while ((*end != ' ') && ((*end) != '\0')) in parse_hvdbg_cmdline() 51 end++; in parse_hvdbg_cmdline() 53 if (!handle_dbg_cmd(start, (int32_t)(end - start))) { in parse_hvdbg_cmdline() 55 if (strncmp(start, "USE_INIT_IPI", (size_t)(end - start)) == 0) { in parse_hvdbg_cmdline() 59 start = end; in parse_hvdbg_cmdline()
|
| /hypervisor/common/ |
| A D | delay.c | 12 uint64_t end, delta; in udelay() local 16 end = cpu_ticks() + delta; in udelay() 19 while (cpu_ticks() < end) { in udelay()
|
| /hypervisor/boot/ |
| A D | boot.c | 22 uint64_t start = ~0UL, end = 0UL; in get_boot_mods_range() local 29 if (hva2hpa(abi->mods[i].start + abi->mods[i].size) > end) { in get_boot_mods_range() 30 end = hva2hpa(abi->mods[i].start + abi->mods[i].size); in get_boot_mods_range() 34 *p_end = end; in get_boot_mods_range()
|
| A D | acpi_base.c | 180 void *first, *end, *iterator; in local_parse_madt() local 186 end = (void *)madt_ptr + madt_ptr->header.length; in local_parse_madt() 188 for (iterator = first; (iterator) < (end); iterator += entry->length) { in local_parse_madt() 224 uint64_t entry, end; in parse_madt_ioapic() local 229 end = (uint64_t)madt + madt->header.length; in parse_madt_ioapic() 231 for (entry = (uint64_t)(madt + 1); entry < end; entry += ioapic->header.length) { in parse_madt_ioapic()
|
| /hypervisor/arch/x86/guest/ |
| A D | ve820.c | 33 uint64_t start, end, length; in find_space_from_ve820() local 36 end = round_page_down(entry->baseaddr + entry->length); in find_space_from_ve820() 37 length = (end > start) ? (end - start) : 0UL; in find_space_from_ve820() 40 && (end > round_min_addr) && (start < round_max_addr)) { in find_space_from_ve820() 41 if (((start >= min_addr) && ((start + round_size) <= min(end, round_max_addr))) in find_space_from_ve820() 42 || ((start < min_addr) && ((min_addr + round_size) <= min(end, round_max_addr)))) { in find_space_from_ve820() 43 gpa = (end > round_max_addr) ? (round_max_addr - round_size) : (end - round_size); in find_space_from_ve820()
|
| A D | ept.c | 218 uint64_t end = mr_base_gpa + mr_size, address = mr_base_gpa; in ept_is_valid_mr() local 220 while (address < end) { in ept_is_valid_mr()
|
| /hypervisor/include/arch/x86/asm/guest/ |
| A D | vept.h | 11 #define RESERVED_BITS(start, end) (((1UL << (end - start + 1)) - 1) << start) argument
|
| /hypervisor/arch/x86/ |
| A D | e820.c | 51 uint64_t start, end, length; in e820_alloc_memory() local 54 end = round_page_down(entry->baseaddr + entry->length); in e820_alloc_memory() 55 length = (end > start) ? (end - start) : 0UL; in e820_alloc_memory() 74 if ((hv_e820_entries_nr < E820_MAX_ENTRIES) && (end <= max_addr)) { in e820_alloc_memory() 78 new_entry->baseaddr = end - size; in e820_alloc_memory()
|
| A D | mmu.c | 272 uint64_t end = entry->baseaddr + entry->length; in init_paging() local 273 if (end < MEM_4G) { in init_paging() 274 low32_max_ram = max(end, low32_max_ram); in init_paging() 277 high64_max_ram = max(end, high64_max_ram); in init_paging()
|
| /hypervisor/dm/ |
| A D | io_req.c | 652 uint64_t address, size, base, end; in hv_emulate_mmio() local 670 end = mmio_handler->range_end; in hv_emulate_mmio() 672 if (((address + size) <= base) || (address >= end)) { in hv_emulate_mmio() 675 if ((address >= base) && ((address + size) <= end)) { in hv_emulate_mmio() 816 uint64_t start, uint64_t end) in find_match_mmio_node() argument 832 __func__, vm->vm_id, start, end); in find_match_mmio_node() 876 uint64_t end, void *handler_private_data, bool hold_lock) in register_mmio_emulation_handler() argument 881 if ((read_write != NULL) && (end > start)) { in register_mmio_emulation_handler() 890 mmio_node->range_end = end; in register_mmio_emulation_handler() 907 uint64_t start, uint64_t end) in unregister_mmio_emulation_handler() argument [all …]
|
| /hypervisor/include/dm/ |
| A D | io_req.h | 277 uint64_t end, void *handler_private_data, bool hold_lock); 289 uint64_t start, uint64_t end);
|
| A D | vpci.h | 171 uint64_t end; member
|
| /hypervisor/acpi_parser/ |
| A D | dmar_parse.c | 86 char *end; in get_drhd_dev_scope_cnt() local 90 end = (char *)drhd + drhd->header.length; in get_drhd_dev_scope_cnt() 92 while (start < end) { in get_drhd_dev_scope_cnt()
|
| /hypervisor/quirks/ |
| A D | security_vm_fixup.c | 235 uint8_t *end = (uint8_t *)hpa2hva(SMBIOS_EPS_SEARCH_END); in mem_search_smbios_eps() local 243 for (p = start; p < end; p += 16) { in mem_search_smbios_eps() 254 return (p < end); in mem_search_smbios_eps()
|
| /hypervisor/dm/vpci/ |
| A D | vdev.c | 100 return ((base >= res->start) && (base <= res->end)); in is_pci_mem_bar_base_valid() 165 res->start, res->end, vdev->vbars[idx].size); in pci_vdev_update_vbar_base()
|
| A D | vpci.c | 238 vm->vpci.res32.end = MMIO32_END; in init_vpci() 240 vm->vpci.res64.end = MMIO64_END; in init_vpci() 246 vm->vpci.res32.end = USER_VM_VIRT_PCI_MEMLIMIT32; in init_vpci() 248 vm->vpci.res64.end = USER_VM_VIRT_PCI_MEMLIMIT64; in init_vpci()
|
| /hypervisor/arch/x86/boot/ |
| A D | trampoline.S | 215 .end
|
| /hypervisor/lib/crypto/mbedtls/ |
| A D | ChangeLog | 1001 minimum key size for end-entity certificates with RSA keys. Found by 1124 * The PEM parser now accepts a trailing space at end of lines (#226). 1126 end of the default config.h by defining MBEDTLS_USER_CONFIG_FILE on the 1531 * Accept spaces at end of line or end of buffer in base64_decode(). 1588 CA for use as an end entity certificate. (This had been removed in 2001 * Accept spaces at end of line or end of buffer in base64_decode(). 2286 * Handle existence of OpenSSL Trust Extensions at end of X.509 DER blob 2339 * Handle existence of OpenSSL Trust Extensions at end of X.509 DER blob
|