| /freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_globals.cpp | 31 ElfW(Addr) min_addr = -1ull, max_addr = 0; in CheckCodeModel() 38 if (max_addr < hi) in CheckCodeModel() 39 max_addr = hi; in CheckCodeModel() 42 if (max_addr - min_addr > 1ull << 32) { in CheckCodeModel() 46 if (max_addr > 1ull << 48) { in CheckCodeModel()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/interception/ |
| H A D | interception_win.cpp | 366 static void *AllocateTrampolineRegion(uptr min_addr, uptr max_addr, in AllocateTrampolineRegion() argument 378 if (max_addr > max_virtual_addr) in AllocateTrampolineRegion() 379 max_addr = max_virtual_addr; in AllocateTrampolineRegion() 390 while (lo_addr >= min_addr || hi_addr <= max_addr) { in AllocateTrampolineRegion() 395 else if (hi_addr > max_addr) in AllocateTrampolineRegion() 433 (void *)min_addr, (void *)max_addr, (void *)func_addr, granularity); in AllocateTrampolineRegion() 457 uptr max_addr = func_address + kTrampolineRangeLimit - size; in AllocateMemoryForTrampoline() local 475 max_addr = (uptr)module_info.lpBaseOfDll + kTrampolineRangeLimit - size; in AllocateMemoryForTrampoline() 482 if (max_addr < func_address) in AllocateMemoryForTrampoline() 483 max_addr = ~(uptr)0; in AllocateMemoryForTrampoline() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 232 uint64_t &min_addr, uint64_t &max_addr) { in updateSectionLoadAddress() argument 245 if (upper > max_addr) in updateSectionLoadAddress() 246 max_addr = upper; in updateSectionLoadAddress() 265 if (upper > max_addr) in updateSectionLoadAddress() 266 max_addr = upper; in updateSectionLoadAddress()
|
| /freebsd/contrib/elftoolchain/elfcopy/ |
| H A D | ascii.c | 85 uint64_t max_addr; in create_srec() local 117 max_addr = 0; in create_srec() 130 if ((uint64_t) sh.sh_addr > max_addr) in create_srec() 131 max_addr = sh.sh_addr; in create_srec() 137 if (max_addr <= 0xFFFF) in create_srec() 139 else if (max_addr <= 0xFFFFFF) in create_srec()
|
| /freebsd/sys/vm/ |
| H A D | vm_map.c | 2059 vm_offset_t *addr, vm_size_t length, vm_offset_t max_addr, in vm_map_alignspace() argument 2096 (max_addr != 0 && *addr + length > max_addr)) in vm_map_alignspace() 2112 vm_offset_t max_addr, vm_offset_t alignment) in vm_map_find_aligned() argument 2117 (max_addr != 0 && *addr + length > max_addr)) in vm_map_find_aligned() 2119 return (vm_map_alignspace(map, NULL, 0, addr, length, max_addr, in vm_map_find_aligned() 2135 vm_size_t length, vm_offset_t max_addr, int find_space, in vm_map_find() argument 2141 rv = vm_map_find_locked(map, object, offset, addr, length, max_addr, in vm_map_find() 2150 vm_size_t length, vm_offset_t max_addr, int find_space, in vm_map_find_locked() argument 2171 (map->flags & MAP_IS_SUB_MAP) == 0 && max_addr == 0 && in vm_map_find_locked() 2245 (max_addr == 0 || max_addr > MAP_32BIT_MAX_ADDR) ? in vm_map_find_locked() [all …]
|
| H A D | vm_mmap.c | 1573 vm_offset_t default_addr, max_addr; in vm_mmap_object() local 1654 max_addr = 0; in vm_mmap_object() 1656 max_addr = MAP_32BIT_MAX_ADDR; in vm_mmap_object() 1664 default_addr, max_addr, findspace, prot, maxprot, in vm_mmap_object() 1668 max_addr, findspace, prot, maxprot, docow); in vm_mmap_object()
|
| H A D | vm_map.h | 492 vm_offset_t max_addr, vm_offset_t alignment);
|
| /freebsd/stand/efi/loader/arch/amd64/ |
| H A D | multiboot2.h | 176 multiboot_uint32_t max_addr; member
|
| /freebsd/sys/dev/aic7xxx/aicasm/ |
| H A D | aicasm_gram.y | 371 u_int max_addr; variable 374 max_addr = scb_or_sram_symbol->info.rinfo->address 379 if (sym_max_addr > max_addr)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | MIMGInstructions.td | 275 class PartialNSAHelper<int num_addrs, int max_addr, RegisterClass LastAddrRC> 279 !if(!ge(num_addrs, max_addr), 280 !listconcat(!listsplat(VGPR_32, !sub(max_addr, 1)), [LastAddrRC]), 283 int VAddrCount = !if(!gt(num_addrs, max_addr), max_addr, num_addrs);
|
| /freebsd/usr.sbin/bsdconfig/share/media/ |
| H A D | tcpip.subr | 231 local max_addr=4294967295 # 255.255.255.255 237 bcastnum=$(( ($ipnum & $masknum)+$max_addr-$masknum ))
|