/src/sys/arch/hp300/stand/common/ |
srt0.S | 51 STACK = 0xfffff000 /* below the ROM page */ 81 movl #STACK,%sp 311 movl %sp,_C_LABEL(_ssave) /* and current stack pointer */ 323 movl _C_LABEL(_ssave),%sp /* manually restore stack */
|
/src/sys/dev/ic/ |
aic6360reg.h | 93 #define STACK 0x1d /* Stack */
|
aic6360.c | 205 * Linux also init's the stack to 1-16 and then clears it, 208 /* Push the sequence 0,1,..,15 on the stack */ 210 bus_space_write_1(iot, ioh, DMACNTRL1, 0); /* Reset stack pointer */ 212 bus_space_write_1(iot, ioh, STACK, i); 216 for (i = 0; i < STSIZE && bus_space_read_1(iot, ioh, STACK) == i; i++) 219 AIC_START(("STACK futzed at %d.\n", i));
|
aic79xx.c | 8556 * confusion if the stack implementation 8561 ahd_outb(ahd, STACK, i & 0xFF); 8562 ahd_outb(ahd, STACK, (i >> 8) & 0xFF); 8569 stack_entry = ahd_inb(ahd, STACK) 8570 |(ahd_inb(ahd, STACK) << 8); 8871 printf("STACK:"); 8874 ahd_inb(ahd, STACK)|(ahd_inb(ahd, STACK) << 8); 8878 ahd_outb(ahd, STACK, ahd->saved_stack[i] & 0xFF); 8879 ahd_outb(ahd, STACK, (ahd->saved_stack[i] >> 8) & 0xFF) [all...] |
aic7xxx.c | 6658 printf("STACK:"); 6660 printf(" 0x%x", ahc_inb(ahc, STACK)|(ahc_inb(ahc, STACK) << 8));
|
/src/share/man/man9/ |
Makefile | 55 roundup.9 rssadapt.9 rt_timer.9 rwlock.9 RUN_ONCE.9 STACK.9 \ 862 MLINKS+=STACK.9 STACK_ALLOC.9 \ 863 STACK.9 STACK_MAX.9 \ 864 STACK.9 STACK_ALIGN.9 \ 865 STACK.9 STACK_GROW.9 \ 866 STACK.9 STACK_SHRINK.9
|
/src/games/atc/ |
input.c | 125 } STACK; 127 #define T_RULE stack[level].rule 128 #define T_STATE stack[level].state 129 #define T_STR stack[level].str 130 #define T_POS stack[level].pos 131 #define T_CH stack[level].ch 213 static STACK stack[MAXDEPTH]; variable in typeref:typename:STACK[] 310 func = st[stack[i].state].rule[stack[i].rule].func [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
CMakeLists.txt | 89 # MSVC linker is allocating 1M for the stack by default, which is not 91 # The default stack size for clang is 8M. 93 list(APPEND SANITIZER_TEST_LINK_FLAGS_COMMON -Wl,/STACK:0xC00000)
|
/src/sys/arch/luna68k/stand/boot/ |
locore.S | 198 STACK = 0x800000 203 movl #STACK,%sp | set SP 299 btst #4,%a1@(8) | long (type B) stack frame? 348 tstw %sp@+ | do we need to clean up stack? 421 movl %a0,%sp@(60) | the user stack pointer 451 movl %a0,%sp@(60) | the user stack pointer 544 * necessitating a stack cleanup. A cleanup should only be needed at this 572 tstw %sp@+ | do we need to clean up stack?
|
/src/sys/dev/microcode/aic7xxx/ |
aic79xx.seq | 378 bmov LONGJMP_ADDR, STACK, 2 ret; 380 bmov LONGJMP_ADDR, STACK, 2; 382 bmov STACK, LONGJMP_ADDR, 2 ret;
|
aic7xxx.reg | 671 register STACK {
|
aic7xxx_reg.h | 586 ahc_print_register(NULL, 0, "STACK", 0x6f, regvalue, cur_col, wrap) 1466 #define STACK 0x6f
|
aic79xx.reg | 3395 * Stack 3396 * Window into the stack. Each stack location is 10 bits wide reported 3397 * low byte followed by high byte. There are 8 stack locations. 3399 register STACK {
|
aic79xx_reg.h | 1888 ahd_print_register(NULL, 0, "STACK", 0xf2, regvalue, cur_col, wrap) 3495 #define STACK 0xf2
|
/src/sys/arch/m68k/060sp/dist/ |
fpsp.s | 304 set LOCAL_SIZE, 192 # stack frame size(bytes) 305 set LV, -LOCAL_SIZE # stack offset 307 set EXC_SR, 0x4 # stack status register 308 set EXC_PC, 0x6 # stack pc 609 # - The system stack contains the FP Ovfl exception stack frame # 614 # - The system stack is unchanged # 617 # - The system stack is unchanged # 650 link.w %a6,&-LOCAL_SIZE # init stack frame 656 fmovm.x &0xc0,EXC_FPREGS(%a6) # save fp0-fp1 on stack [all...] |