Home
last modified time | relevance | path

Searched refs:end (Results 1 – 18 of 18) sorted by relevance

/hypervisor/debug/
A Dconsole.c40 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 Ddelay.c12 uint64_t end, delta; in udelay() local
16 end = cpu_ticks() + delta; in udelay()
19 while (cpu_ticks() < end) { in udelay()
/hypervisor/boot/
A Dboot.c22 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 Dacpi_base.c180 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 Dve820.c33 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 Dept.c218 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 Dvept.h11 #define RESERVED_BITS(start, end) (((1UL << (end - start + 1)) - 1) << start) argument
/hypervisor/arch/x86/
A De820.c51 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 Dmmu.c272 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 Dio_req.c652 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 Dio_req.h277 uint64_t end, void *handler_private_data, bool hold_lock);
289 uint64_t start, uint64_t end);
A Dvpci.h171 uint64_t end; member
/hypervisor/acpi_parser/
A Ddmar_parse.c86 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 Dsecurity_vm_fixup.c235 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 Dvdev.c100 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 Dvpci.c238 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 Dtrampoline.S215 .end
/hypervisor/lib/crypto/mbedtls/
A DChangeLog1001 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

Completed in 27 milliseconds