Home
last modified time | relevance | path

Searched refs:max_addr (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_globals.cpp31 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/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp232 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 Dascii.c85 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 Dvm_map.c2026 * the given address "*addr", with an optional upper bound "max_addr". If the
2037 vm_offset_t *addr, vm_size_t length, vm_offset_t max_addr, in vm_map_alignspace()
2074 (max_addr != 0 && *addr + length > max_addr)) in vm_map_alignspace()
2090 vm_offset_t max_addr, vm_offset_t alignment) in vm_map_find_aligned()
2095 (max_addr != 0 && *addr + length > max_addr)) in vm_map_find_aligned()
2097 return (vm_map_alignspace(map, NULL, 0, addr, length, max_addr, in vm_map_find_aligned()
2113 vm_size_t length, vm_offset_t max_addr, int find_space, in vm_map_find()
2119 rv = vm_map_find_locked(map, object, offset, addr, length, max_addr, in vm_map_find()
2036 vm_map_alignspace(vm_map_t map,vm_object_t object,vm_ooffset_t offset,vm_offset_t * addr,vm_size_t length,vm_offset_t max_addr,vm_offset_t alignment) vm_map_alignspace() argument
2089 vm_map_find_aligned(vm_map_t map,vm_offset_t * addr,vm_size_t length,vm_offset_t max_addr,vm_offset_t alignment) vm_map_find_aligned() argument
2112 vm_map_find(vm_map_t map,vm_object_t object,vm_ooffset_t offset,vm_offset_t * addr,vm_size_t length,vm_offset_t max_addr,int find_space,vm_prot_t prot,vm_prot_t max,int cow) vm_map_find() argument
2127 vm_map_find_locked(vm_map_t map,vm_object_t object,vm_ooffset_t offset,vm_offset_t * addr,vm_size_t length,vm_offset_t max_addr,int find_space,vm_prot_t prot,vm_prot_t max,int cow) vm_map_find_locked() argument
2299 vm_map_find_min(vm_map_t map,vm_object_t object,vm_ooffset_t offset,vm_offset_t * addr,vm_size_t length,vm_offset_t default_addr,vm_offset_t max_addr,int find_space,vm_prot_t prot,vm_prot_t max,int cow) vm_map_find_min() argument
[all...]
H A Dvm_mmap.c1518 vm_offset_t default_addr, max_addr; in vm_mmap_object() local
1587 max_addr = 0; in vm_mmap_object()
1589 max_addr = MAP_32BIT_MAX_ADDR; in vm_mmap_object()
1597 default_addr, max_addr, findspace, prot, maxprot, in vm_mmap_object()
1601 max_addr, findspace, prot, maxprot, docow); in vm_mmap_object()
H A Dvm_map.h491 vm_offset_t max_addr, vm_offset_t alignment);
/freebsd/stand/efi/loader/arch/amd64/
H A Dmultiboot2.h176 multiboot_uint32_t max_addr; member
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y371 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 DMIMGInstructions.td273 class PartialNSAHelper<int num_addrs, int max_addr, RegisterClass LastAddrRC>
277 !if(!ge(num_addrs, max_addr),
278 !listconcat(!listsplat(VGPR_32, !sub(max_addr, 1)), [LastAddrRC]),
281 int VAddrCount = !if(!gt(num_addrs, max_addr), max_addr, num_addrs);
/freebsd/usr.sbin/bsdconfig/share/media/
H A Dtcpip.subr231 local max_addr=4294967295 # 255.255.255.255
237 bcastnum=$(( ($ipnum & $masknum)+$max_addr-$masknum ))