Searched defs:max_addr (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dcommon.c209 unsigned long long max_addr; local
221 for (max_addr = 0, addr = mbi.mmap_addr;
228 && desc->BaseAddr + desc->Length > max_addr)
229 max_addr = desc->BaseAddr + desc->Length;
232 extended_memory = (max_addr - 0x100000) >> 10;
H A Dboot.c813 unsigned long max_addr; local
837 max_addr = (lh->header == LINUX_MAGIC_SIGNATURE && lh->version >= 0x0203
839 if (moveto + len >= max_addr)
840 moveto = (max_addr - len) & 0xfffff000;
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dlinux.c286 uint32_t moveto, max_addr; local
353 max_addr = (lh->header == LINUX_MAGIC_SIGNATURE &&
356 if (moveto + mfp->f_size >= max_addr)
357 moveto = (max_addr - mfp->f_size) & 0xfffff000;
H A Dmultiboot.c103 max_addr(void) function
/illumos-gate/usr/src/uts/sun4u/io/pci/
H A Dpci_tools.c105 static int pcitool_access(pci_t *pci_p, uint64_t phys_addr, uint64_t max_addr,
113 uint64_t base_addr, uint64_t max_addr, uint8_t size, boolean_t write_flag);
550 * max_addr is the upper bound on the physical space used for bounds checking,
556 pcitool_access(pci_t *pci_p, uint64_t phys_addr, uint64_t max_addr, argument
565 if (phys_addr > max_addr) {
568 phys_addr, max_addr);
631 uint64_t max_addr; local
671 max_addr = base_addr + pci_rp[prg.barnum].size;
676 "addr:0x%llx, max_addr:0x%llx\n",
677 base_addr, prg.offset, prg.phys_addr, max_addr);
809 pcitool_config_request(pci_t *pci_p, pcitool_reg_t *prg, uint64_t base_addr, uint64_t max_addr, uint8_t size, boolean_t write_flag) argument
840 uint64_t max_addr; local
[all...]
/illumos-gate/usr/src/uts/common/io/xge/hal/xgehal/
H A Dxgehal-device.c1759 int max_addr = XGE_HAL_MAX_MAC_ADDRESSES; local
1765 max_addr = XGE_HAL_MAX_MAC_ADDRESSES_HERC;
1767 if ( index >= max_addr )
1797 int max_addr = XGE_HAL_MAX_MAC_ADDRESSES; local
1804 max_addr = XGE_HAL_MAX_MAC_ADDRESSES_HERC;
1806 if ( index >= max_addr )
7148 int max_addr = XGE_HAL_MAX_MAC_ADDRESSES; local
7154 max_addr = XGE_HAL_MAX_MAC_ADDRESSES_HERC;
7156 if ( index >= max_addr )

Completed in 61 milliseconds