Home | History | Annotate | Download | only in core

Lines Matching full:curaddr

87 	estate.curaddr += 
132 estate.curaddr = (estate.curaddr + sizeof(long) - 1) & ~(sizeof(long) - 1);
142 printf("shdr *, size %lX, curaddr %lX\n",
143 estate.toread, estate.curaddr);
146 /* Start reading at the curaddr and make that the shdr */
147 shdr = (Elf32_Shdr *)phys_to_virt(estate.curaddr);
162 estate.curaddr = (estate.curaddr + 4095) & ~4095;
215 printf("db sym, size %lX, curaddr %lX\n",
216 estate.toread, estate.curaddr);
219 symtab_load = estate.curaddr;
221 *((long *)phys_to_virt(estate.curaddr)) = estate.toread;
222 estate.curaddr += sizeof(long);
243 printf("db str, size %lX, curaddr %lX\n",
244 estate.toread, estate.curaddr);
247 symstr_load = estate.curaddr;
249 *((long *)phys_to_virt(estate.curaddr)) = estate.toread;
250 estate.curaddr += sizeof(long);