/src/sys/arch/atari/stand/bootxx/ |
bootxx.c | 179 u_char *bstart = (u_char *)(LOADADDR3); local in function:load_booter 199 while ((bsize = read(fd, bstart, 1024)) > 0) { 200 bstart += bsize;
|
/src/sys/arch/sparc/stand/boot/ |
boot.c | 58 paddr_t bstart, bend; /* physical start & end address of the boot program */ variable in typeref:typename:paddr_t 124 if (pmap_extract((vaddr_t)start - (16*1024), &bstart) != 0) 127 bend = roundup(bstart, 0x400000); 146 if (pa < bstart && len >= size && (bstart - pa) >= size) 216 if (pa + size >= bstart) {
|
/src/sys/arch/hpc/stand/hpcboot/ |
memory.cpp | 322 paddr_t bstart, bend; local in function:MemoryManager_VirtualCopy::searchBank 325 bstart = _bank[banknum].addr; 328 pstart = _search_guess ? _search_guess : bstart; 331 if (pstart < bstart || pstart >= pend)
|
/src/sys/dev/ic/ |
i82586.c | 820 uint16_t bstart, bend; local in function:i82586_drop_frames 823 if (i82586_get_rbd_list(sc, &bstart, &bend, &pktlen) == 0) 825 i82586_release_rbd_list(sc, bstart, bend); 1006 uint16_t bstart, bend; local in function:ie_readframe 1009 if (i82586_get_rbd_list(sc, &bstart, &bend, &pktlen) == 0) { 1014 m = ieget(sc, bstart, pktlen); 1015 i82586_release_rbd_list(sc, bstart, bend);
|