/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/ |
H A D | nulltrap.c | 6 void *stack; local 46 __asm__ __volatile__ ( "movl %%esp, %0" : "=r" ( stack ) ); 47 printf ( "NULL method called from %p (stack %p)\n", 48 __builtin_return_address ( 0 ), stack ); 49 DBG_HD ( stack, 256 );
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/ |
H A D | MathDivU64x64.c | 38 ; Original local stack when calling _aulldiv 55 ; Set up the local stack for NULL Reminder pointer 61 ; Set up the local stack for Divisor parameter 69 ; Set up the local stack for Dividend parameter 82 ; Adjust stack local
|
H A D | MathMultS64x64.c | 35 ; Original local stack when calling _allmul 52 ; Set up the local stack for Multiplicand parameter 60 ; Set up the local stack for Multiplier parameter 73 ; Adjust stack local
|
H A D | MathReminderU64x64.c | 37 ; Original local stack when calling _aullrem 54 ; Set up the local stack for Reminder pointer 60 ; Set up the local stack for Divisor parameter 68 ; Set up the local stack for Dividend parameter 87 ; Adjust stack local
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/CRT/Ia32/ |
H A D | lldiv.c | 39 ; Arguments are passed on the stack: 45 ; NOTE: this routine removes the parameters from the stack. 47 ; Original local stack when calling _alldiv 64 ; Set up the local stack for NULL Reminder pointer 70 ; Set up the local stack for Divisor parameter 78 ; Set up the local stack for Dividend parameter 91 ; Adjust stack local
|
H A D | llmul.c | 35 ; Original local stack when calling _allmul 52 ; Set up the local stack for Multiplicand parameter 60 ; Set up the local stack for Multiplier parameter 73 ; Adjust stack local
|
H A D | llrem.c | 37 ; Original local stack when calling _allrem 54 ; Set up the local stack for Reminder pointer 60 ; Set up the local stack for Divisor parameter 68 ; Set up the local stack for Dividend parameter 87 ; Adjust stack local
|
H A D | ulldiv.c | 38 ; Original local stack when calling _aulldiv 55 ; Set up the local stack for NULL Reminder pointer 61 ; Set up the local stack for Divisor parameter 69 ; Set up the local stack for Dividend parameter 82 ; Adjust stack local
|
H A D | ullrem.c | 37 ; Original local stack when calling _aullrem 54 ; Set up the local stack for Reminder pointer 60 ; Set up the local stack for Divisor parameter 68 ; Set up the local stack for Dividend parameter 87 ; Adjust stack local
|
H A D | lldvrm.c | 37 ; Original local stack when calling _alldvrm 56 ; NOTE: this routine removes the parameters from the stack. 60 ; Set up the local stack for Reminder pointer 66 ; Set up the local stack for Divisor parameter 74 ; Set up the local stack for Dividend parameter 94 ; Adjust stack local
|
H A D | ulldvrm.c | 37 ; Original local stack when calling _aulldvrm 56 ; NOTE: this routine removes the parameters from the stack. 60 ; Set up the local stack for Remainder pointer 66 ; Set up the local stack for Divisor parameter 74 ; Set up the local stack for Dividend parameter 94 ; Adjust stack local
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/syslinux/ |
H A D | com32_call.c | 175 int __asmcall com32_cfarcall ( uint32_t proc, physaddr_t stack, size_t stacksz ) { argument 178 copy_user_to_rm_stack ( phys_to_user ( stack ), stacksz );
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | pratom.h | 109 ** LIFO linked-list (stack) 123 ** Create a stack, a LIFO linked list 125 ** stack_name: a pointer to string containing the name of the stack 127 ** A pointer to the created stack, if successful, else NULL. 134 ** Push an element on the top of the stack 136 ** stack: pointer to the stack 137 ** stack_elem: pointer to the stack element 141 NSPR_API(void) PR_StackPush(PRStack *stack, PRStackElem *stack_elem); 146 ** Remove the element on the top of the stack 154 NSPR_API(PRStackElem *) PR_StackPop(PRStack *stack); variable 168 NSPR_API(PRStatus) PR_DestroyStack(PRStack *stack); variable [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/ |
H A D | Makefile | 43 fasttrap/tst.stack.exe := LDLIBS += -ldtrace
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prfdcach.c | 66 PRStack *stack; member in struct:_PR_Fd_Cache 95 PR_ASSERT(NULL != _pr_fd_cache.stack); 96 pop = PR_StackPop(_pr_fd_cache.stack); 165 PR_StackPush(_pr_fd_cache.stack, (PRStackElem*)(&fd->higher)); 224 PR_StackPush(_pr_fd_cache.stack, (PRStackElem*)(&fd->higher)); 236 if (was_using_stack) /* was using stack - feed into cache */ 239 while (NULL != (pop = PR_StackPop(_pr_fd_cache.stack))) 285 _pr_fd_cache.stack = PR_CreateStack("FD"); 286 PR_ASSERT(NULL != _pr_fd_cache.stack); 302 while ((pop = PR_StackPop(_pr_fd_cache.stack)) ! [all...] |
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
H A D | xptcinvoke_amd64_darwin.cpp | 146 // Load parameters to stack, if necessary 147 PRUint64 *stack = (PRUint64 *) __builtin_alloca(nr_stack * 8); local 150 invoke_copy_to_stack(stack, paramCount, params, gpregs, fpregs);
|
H A D | xptcinvoke_x86_64_linux.cpp | 146 // Load parameters to stack, if necessary 147 PRUint64 *stack = (PRUint64 *) __builtin_alloca(nr_stack * 8); local 150 invoke_copy_to_stack(stack, paramCount, params, gpregs, fpregs);
|
/vbox/src/VBox/GuestHost/OpenGL/include/state/ |
H A D | cr_transform.h | 35 CRmatrix *top; /* points into stack */ 36 CRmatrix *stack; /* array [maxDepth] of CRmatrix */ member in struct:__anon16247 38 GLuint maxDepth; /* size of stack[] array */ 71 DECLEXPORT(void) crStateInitMatrixStack(CRMatrixStack *stack, int maxDepth);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | pratom.c | 326 * (or an equivalent), the stack operations are implemented by use of PRLock 332 PRStack *stack; local 338 if ((stack = PR_NEW(PRStack)) == NULL) { 342 stack->prstk_name = (char *) PR_Malloc(strlen(stack_name) + 1); 343 if (stack->prstk_name == NULL) { 344 PR_DELETE(stack); 347 strcpy(stack->prstk_name, stack_name); 349 stack->prstk_name = NULL; 352 stack->prstk_lock = PR_NewLock(); 353 if (stack 386 PR_StackPush(PRStack *stack, PRStackElem *stack_elem) argument 396 PR_StackPop(PRStack *stack) argument [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/ |
H A D | prcthr.c | 284 ** Return the thread stack pointer of the given thread. 398 PRThreadType type, PRThreadPriority priority, PRThreadStack *stack) 401 #pragma unused (type, priority, stack) 397 PR_AttachThreadGCAble( PRThreadType type, PRThreadPriority priority, PRThreadStack *stack) argument
|
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/ |
H A D | rbtree.h | 69 struct wine_rb_stack stack; member in struct:wine_rb_tree 79 static inline void wine_rb_stack_clear(struct wine_rb_stack *stack) argument 81 stack->count = 0; 84 static inline void wine_rb_stack_push(struct wine_rb_stack *stack, struct wine_rb_entry **entry) argument 86 stack->entries[stack->count++] = entry; 91 struct wine_rb_stack *stack = &tree->stack; local 93 if (size > stack->size) 95 size_t new_size = stack 146 wine_rb_fixup(struct wine_rb_stack *stack) argument [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | rbtree.h | 63 struct wine_rb_stack stack; member in struct:wine_rb_tree 73 static inline void wine_rb_stack_clear(struct wine_rb_stack *stack) argument 75 stack->count = 0; 78 static inline void wine_rb_stack_push(struct wine_rb_stack *stack, struct wine_rb_entry **entry) argument 80 stack->entries[stack->count++] = entry; 85 struct wine_rb_stack *stack = &tree->stack; local 87 if (size > stack->size) 89 size_t new_size = stack 140 wine_rb_fixup(struct wine_rb_stack *stack) argument [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/ |
H A D | rbtree.h | 69 struct wine_rb_stack stack; member in struct:wine_rb_tree 79 static inline void wine_rb_stack_clear(struct wine_rb_stack *stack) argument 81 stack->count = 0; 84 static inline void wine_rb_stack_push(struct wine_rb_stack *stack, struct wine_rb_entry **entry) argument 86 stack->entries[stack->count++] = entry; 91 struct wine_rb_stack *stack = &tree->stack; local 93 if (size > stack->size) 95 size_t new_size = stack 146 wine_rb_fixup(struct wine_rb_stack *stack) argument [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/i86pc/os/ |
H A D | dtrace_subr.c | 45 dtrace_invop(uintptr_t addr, uintptr_t *stack, uintptr_t eax) argument 51 if ((rval = hdlr->dtih_func(addr, stack, eax)) != 0)
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/intel/dtrace/ |
H A D | dtrace_isa.c | 30 #include <sys/stack.h> 69 * Hop from interrupt stack to thread stack. 138 * loop to account for a circular stack. 228 * If there's no user context we still need to zero the stack. 316 * If there's no user context we still need to zero the stack. 416 uintptr_t *stack; local 433 * use the pointer that it passed to the stack as the 435 * the stack. When using this stack, w [all...] |