HomeSort by relevance Sort by last modified time
    Searched defs:STACK_ALIGN (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/lib/libbc/sparc/inc/sparc/
asm_linkage.h 65 #define STACK_ALIGN 8
66 #define SA(X) (((X)+(STACK_ALIGN-1)) & ~(STACK_ALIGN-1))
  /onnv/onnv-gate/usr/src/uts/intel/ia32/sys/
stack.h 111 #define STACK_ALIGN STACK_ALIGN64
120 #define STACK_ALIGN STACK_ALIGN32
132 #if STACK_ALIGN == 4
136 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
138 #elif (STACK_ALIGN == 16) && (_LONG_DOUBLE_ALIGNMENT == 16)
142 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
  /onnv/onnv-gate/usr/src/uts/sparc/sys/
stack.h 119 #define STACK_ALIGN STACK_ALIGN64
130 #define STACK_ALIGN STACK_ALIGN32
141 #if STACK_ALIGN == 8
145 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
147 #elif (STACK_ALIGN == 16) && (_LONG_DOUBLE_ALIGNMENT == 16)
151 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
  /onnv/onnv-gate/usr/src/lib/libc/i386/threads/
machdep.c 34 * before a function call (STACK_ALIGN == 4). We use a 16-byte stack
42 #undef STACK_ALIGN
43 #define STACK_ALIGN 16
61 * Top-of-stack must be rounded down to STACK_ALIGN and
68 stack = (uint32_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1));

Completed in 180 milliseconds