Searched defs:NewStack (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Arm/
H A DInternalSwitchStack.c22 specified by EntryPoint using the new stack specified by NewStack,
30 @param NewStack The new Location of the stack
39 IN VOID *NewStack
47 new stack specified by NewStack, and passes in the parameters specified
55 If NewStack is NULL, then ASSERT().
62 @param NewStack A pointer to the new stack to use for the EntryPoint
73 IN VOID *NewStack,
78 InternalSwitchStackAsm (EntryPoint, Context1, Context2, NewStack);
69 InternalSwitchStack( IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1, OPTIONAL IN VOID *Context2, OPTIONAL IN VOID *NewStack, IN VA_LIST Marker ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ebc/
H A DSwitchStack.c21 new stack specified by NewStack and passing in the parameters specified
29 If NewStack is NULL, then ASSERT().
36 @param NewStack A pointer to the new stack to use for the EntryPoint
47 IN VOID *NewStack,
43 InternalSwitchStack( IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1, OPTIONAL IN VOID *Context2, OPTIONAL IN VOID *NewStack, IN VA_LIST Marker ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/
H A DInternalSwitchStack.c21 new stack specified by NewStack and passing in the parameters specified
29 If NewStack is NULL, then ASSERT().
36 @param NewStack A pointer to the new stack to use for the EntryPoint
47 IN VOID *NewStack,
54 JumpBuffer.Esp = (UINTN)NewStack - sizeof (VOID*);
43 InternalSwitchStack( IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1, OPTIONAL IN VOID *Context2, OPTIONAL IN VOID *NewStack, IN VA_LIST Marker ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ipf/
H A DInternalSwitchStack.c21 new stack specified by NewStack and passing in the parameters specified
29 If NewStack is NULL, then ASSERT().
36 @param NewStack A pointer to the new stack to use for the EntryPoint
47 IN VOID *NewStack,
63 AsmSwitchStackAndBackingStore (EntryPoint, Context1, Context2, NewStack, NewBsp);
43 InternalSwitchStack( IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1, OPTIONAL IN VOID *Context2, OPTIONAL IN VOID *NewStack, IN VA_LIST Marker ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DSwitchStack.c21 new stack specified by NewStack and passing in the parameters specified
24 supports a variable number of arguments following the NewStack parameter.
30 If NewStack is NULL, then ASSERT().
37 @param NewStack A pointer to the new stack to use for the EntryPoint
52 IN VOID *NewStack,
59 ASSERT (NewStack != NULL);
64 ASSERT (((UINTN)NewStack & (CPU_STACK_ALIGNMENT - 1)) == 0);
66 VA_START (Marker, NewStack);
68 InternalSwitchStack (EntryPoint, Context1, Context2, NewStack, Marker);
48 SwitchStack( IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1, OPTIONAL IN VOID *Context2, OPTIONAL IN VOID *NewStack, ... ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Dispatcher/
H A DDependency.c45 BOOLEAN *NewStack; local
53 NewStack = AllocatePool (Size * sizeof (BOOLEAN));
54 if (NewStack == NULL) {
63 NewStack,
77 mDepexEvaluationStackPointer = NewStack + (mDepexEvaluationStackPointer - mDepexEvaluationStack);
78 mDepexEvaluationStack = NewStack;
79 mDepexEvaluationStackEnd = NewStack + Size;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DDependency.c55 BOOLEAN *NewStack; local
63 NewStack = AllocatePool (Size * sizeof (BOOLEAN));
64 if (NewStack == NULL) {
73 NewStack,
87 mDepexEvaluationStackPointer = NewStack + (mDepexEvaluationStackPointer - mDepexEvaluationStack);
88 mDepexEvaluationStack = NewStack;
89 mDepexEvaluationStackEnd = NewStack + Size;
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Sec/
H A DSecMain.c711 VOID *NewStack; local
722 NewStack = (VOID*)(UINTN)PermanentMemoryBase;
725 DebugAgentContext.StackMigrateOffset = (UINTN)NewStack - (UINTN)OldStack;
738 CopyMem (NewStack, OldStack, CopySize >> 1);
744 IdtDescriptor.Base = IdtDescriptor.Base - (UINTN)OldStack + (UINTN)NewStack;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DExpression.c78 EFI_HII_VALUE *NewStack; local
85 NewStack = AllocatePool (Size * sizeof (EFI_HII_VALUE));
86 if (NewStack == NULL) {
95 NewStack,
109 *StackPtr = NewStack + (*StackPtr - *Stack);
110 *Stack = NewStack;
111 *StackEnd = NewStack + Size;
310 FORM_EXPRESSION **NewStack; local
317 NewStack = AllocatePool (Size * MemberSize);
318 if (NewStack
[all...]

Completed in 49 milliseconds