HomeSort by: relevance | last modified time | path
    Searched defs:highaddr (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.sbin/installboot/arch/
pmax.c 314 Elf32_Addr lowaddr, highaddr; local in function:load_bootstrap
329 nsegs = highaddr = 0;
349 if (le32toh(phdr.p_paddr) + le32toh(phdr.p_filesz) > highaddr)
350 highaddr = le32toh(phdr.p_paddr) +
356 *len = roundup(highaddr - lowaddr, PMAX_BOOT_BLOCK_BLOCKSIZE);
  /src/sys/arch/evbmips/mipssim/
machdep.c 233 size_t highaddr; local in function:mach_init_memory
262 for (highaddr = addr = MIPSSIM_MORE_MEM_BASE;
270 highaddr = addr;
278 if (highaddr != MIPSSIM_MORE_MEM_BASE) {
280 mem_clusters[1].size = highaddr - MIPSSIM_MORE_MEM_BASE;
  /src/sys/arch/pmax/stand/smallnet/setnetimage/
setnetimage.c 84 Elf32_Addr lowaddr, highaddr; local in function:main
137 nsegs = highaddr = 0;
157 if (phdr.p_paddr + phdr.p_filesz > highaddr)
158 highaddr = phdr.p_paddr + phdr.p_filesz;
163 printf("lowaddr = 0x%08x, highaddr = 0x%08x\n", lowaddr, highaddr);
168 destlen = highaddr - lowaddr;
189 printf("Compressing %d bytes...", highaddr - lowaddr); fflush(stdout);
191 highaddr - lowaddr, Z_BEST_COMPRESSION);

Completed in 13 milliseconds