Searched refs:max_address (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_mac_libcdep.cpp | 21 void RestrictMemoryToMaxAddress(uptr max_address) { in RestrictMemoryToMaxAddress() argument 22 uptr size_to_mmap = GetMaxUserVirtualAddress() + 1 - max_address; in RestrictMemoryToMaxAddress() 23 void *res = MmapFixedNoAccess(max_address, size_to_mmap, "high gap"); in RestrictMemoryToMaxAddress()
|
H A D | sanitizer_mac.h | 63 void RestrictMemoryToMaxAddress(uptr max_address);
|
H A D | sanitizer_mac.cpp | 1140 mach_vm_address_t max_address; member 1149 return err ? 0 : vm_info.max_address; in GetTaskInfoMaxAddress() 1376 (void *)modules[i].max_address(), modules[i].full_name(), in DumpProcessMap()
|
H A D | sanitizer_common.h | 843 uptr max_address() const { return max_address_; } in max_address() function
|
/freebsd/sys/dev/ata/ |
H A D | ata-dma.c | 88 if (ch->dma.max_address == 0) in ata_dmainit() 89 ch->dma.max_address = BUS_SPACE_MAXADDR_32BIT; in ata_dmainit() 94 ch->dma.max_address, BUS_SPACE_MAXADDR, in ata_dmainit() 101 ch->dma.max_address, BUS_SPACE_MAXADDR, in ata_dmainit() 168 ch->dma.max_address, BUS_SPACE_MAXADDR, in ata_dmaalloc() 190 ch->dma.max_address, BUS_SPACE_MAXADDR, in ata_dmaalloc()
|
H A D | ata-all.h | 355 u_int64_t max_address; /* highest DMA'able address */ member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_linux.cpp | 101 uptr max_address = GetMaxUserVirtualAddress(); in GetHighMemEnd() local 104 max_address |= (GetMmapGranularity() << kShadowScale) - 1; in GetHighMemEnd() 105 return max_address; in GetHighMemEnd()
|
/freebsd/usr.sbin/bhyve/amd64/ |
H A D | e820.c | 376 e820_alloc_highest(const uint64_t max_address, const uint64_t length, in e820_alloc_highest() argument 384 end = MIN(max_address, element->end); in e820_alloc_highest()
|
/freebsd/sys/dev/pci/ |
H A D | pci_pci.c | 418 int flags, pci_addr_t max_address) in pcib_alloc_window() argument 424 if (max_address != (rman_res_t)max_address) in pcib_alloc_window() 425 max_address = ~0; in pcib_alloc_window() 427 w->rman.rm_end = max_address; in pcib_alloc_window() 440 if (w->base > max_address || w->limit > max_address) { in pcib_alloc_window() 458 w->base = max_address; in pcib_alloc_window()
|