Searched refs:Stack (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/
H A DIpfThunk.i40 #define Stack RevFlatStack + 4
41 #define RevThunkStack Stack + LOW_STACK_SIZE
H A DThunk.c50 @param Stack Base address of stack
62 IN VOID *Stack,
97 EfiIaEntryPoint (IntTypeVariable, &DwordRegs, ((UINTN) Stack + StackSize), StackSize);
321 Stack16 = (UINT16 *) (IntThunk->Stack + LOW_STACK_SIZE);
336 // Stack for reverse thunk flat mode.
407 the Stack argument
414 @param Stack Caller allocated stack used to pass arguments
415 @param StackSize Size of Stack in bytes
429 IN VOID *Stack,
465 Stack16 = (UINT16 *) (IntThunk->Stack
57 BiosIntCall( IN UINT16 BiosInt, IN UINT16 Segment, IN UINT16 Offset, IN EFI_IA32_REGISTER_SET *Regs, IN VOID *Stack, IN UINTN StackSize ) argument
424 LegacyBiosFarCall86( IN EFI_LEGACY_BIOS_PROTOCOL *This, IN UINT16 Segment, IN UINT16 Offset, IN EFI_IA32_REGISTER_SET *Regs, IN VOID *Stack, IN UINTN StackSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Dependency/
H A DDependency.c30 @param Stack Reference to EVAL_STACK_ENTRY that contains PPI GUID to check
39 IN EVAL_STACK_ENTRY *Stack
49 if (Stack->Operator == NULL) {
50 return Stack->Result;
58 CopyMem(&PpiGuid, Stack->Operator, sizeof(EFI_GUID));
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenDepex.py167 Stack = []
174 Stack.append(Token)
176 if '(' not in Stack:
182 while len(Stack) > 0:
183 if Stack[-1] == '(':
184 Stack.pop()
186 self.PostfixNotation.append(Stack.pop())
196 while len(Stack) > 0:
197 if Stack[-1] == "(" or self.OpcodePriority[Token] >= self.OpcodePriority[Stack[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmPeriodicSmiLib/
H A DSmmPeriodicSmiLib.c79 VOID *Stack; member in struct:__anon12457
319 if (PeriodicSmiLibraryHandler->Stack != NULL) {
321 PeriodicSmiLibraryHandler->Stack,
324 PeriodicSmiLibraryHandler->Stack = NULL;
573 if (PeriodicSmiLibraryHandler->Stack == NULL) {
692 } else if (PeriodicSmiLibraryHandler->Stack == NULL) {
694 // If Stack is NULL then call DispatchFunction using current stack passing
710 // If Stack is not NULL then call DispatchFunction switching to the allocated stack
716 (UINT8 *)PeriodicSmiLibraryHandler->Stack + PeriodicSmiLibraryHandler->StackSize
965 PeriodicSmiLibraryHandler->Stack
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
H A DThunk.c90 the Stack argument
97 @param Stack Caller allocated stack used to pass arguments
98 @param StackSize Size of Stack in bytes
112 IN VOID *Stack,
126 return InternalLegacyBiosFarCall (This, Segment, Offset, Regs, Stack, StackSize);
149 the Stack argument
156 @param Stack Caller allocated stack used to pass arguments
157 @param StackSize Size of Stack in bytes
171 IN VOID *Stack,
262 if (Stack !
107 LegacyBiosFarCall86( IN EFI_LEGACY_BIOS_PROTOCOL *This, IN UINT16 Segment, IN UINT16 Offset, IN EFI_IA32_REGISTER_SET *Regs, IN VOID *Stack, IN UINTN StackSize ) argument
166 InternalLegacyBiosFarCall( IN EFI_LEGACY_BIOS_PROTOCOL *This, IN UINT16 Segment, IN UINT16 Offset, IN EFI_IA32_REGISTER_SET *Regs, IN VOID *Stack, IN UINTN StackSize ) argument
[all...]
H A DLegacyBiosInterface.h271 CHAR8 Stack[LOW_STACK_SIZE]; member in struct:__anon10426
274 // Stack for flat mode after reverse thunk
323 CHAR8 Stack[LOW_STACK_SIZE]; member in struct:__anon10427
389 CHAR8 Stack[LOW_STACK_SIZE]; member in struct:__anon10428
392 // Stack for flat mode after reverse thunk
780 the Stack argument
787 @param Stack Caller allocated stack used to pass arguments
788 @param StackSize Size of Stack in bytes
802 IN VOID *Stack,
1491 the Stack argumen
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptPkcs7.c422 STACK_OF(X509) *Stack;
443 Stack = NULL;
468 Stack = PKCS7_get0_signers(Pkcs7, NULL, PKCS7_BINARY);
469 if (Stack == NULL) {
488 Status = X509PopCertificate (Stack, &SingleCert, &SingleCertSize);
545 if (Stack != NULL) {
546 sk_X509_pop_free(Stack, X509_free);
/vbox/src/VBox/Debugger/
H A DVBoxDbgStatsQt4.cpp964 DBGGUISTATSSTACK Stack;
965 Stack.a[0].pNode = pNode;
966 Stack.a[0].iChild = -1;
967 Stack.iTop = 0;
968 while (Stack.iTop >= 0)
971 PDBGGUISTATSNODE pNode = Stack.a[Stack.iTop].pNode;
972 uint32_t iChild = ++Stack.a[Stack.iTop].iChild;
976 Stack
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_call.c178 ppxe.Stack.segment_address = rm_ds;
179 ppxe.Stack.Physical_address = rm_ds_phys;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DExpression.c61 @param Stack On input: old stack; On output: new stack
72 IN OUT EFI_HII_VALUE **Stack,
82 Size = Size + (*StackEnd - *Stack);
92 // Copy from Old Stack to the New Stack
96 *Stack,
97 (*StackEnd - *Stack) * sizeof (EFI_HII_VALUE)
101 // Free The Old Stack
103 FreePool (*Stack);
107 // Make the Stack pointe
71 GrowStack( IN OUT EFI_HII_VALUE **Stack, IN OUT EFI_HII_VALUE **StackPtr, IN OUT EFI_HII_VALUE **StackEnd ) argument
130 PushStack( IN OUT EFI_HII_VALUE **Stack, IN OUT EFI_HII_VALUE **StackPtr, IN OUT EFI_HII_VALUE **StackEnd, IN EFI_HII_VALUE *Data ) argument
179 PopStack( IN EFI_HII_VALUE *Stack, IN OUT EFI_HII_VALUE **StackPtr, OUT EFI_HII_VALUE *Data ) argument
302 GrowConditionalStack( IN OUT FORM_EXPRESSION ***Stack, IN OUT FORM_EXPRESSION ***StackPtr, IN OUT FORM_EXPRESSION ***StackEnd, IN UINTN MemberSize ) argument
361 PushConditionalStack( IN OUT FORM_EXPRESSION ***Stack, IN OUT FORM_EXPRESSION ***StackPtr, IN OUT FORM_EXPRESSION ***StackEnd, IN FORM_EXPRESSION **Data ) argument
405 PopConditionalStack( IN FORM_EXPRESSION **Stack, IN OUT FORM_EXPRESSION ***StackPtr, OUT FORM_EXPRESSION **Data ) argument
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/generated/
H A Ddt_grammar.c581 # define YYSTACK_RELOCATE(Stack) \
585 YYCOPY (&yyptr->Stack, Stack, yysize); \
586 Stack = &yyptr->Stack; \
587 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
1464 YYFPRINTF (stderr, "Stack now");
1978 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuDxe/Ia32/
H A DCpuAsm.S101 # Stack:
132 # Stack:
166 # Stack:
H A DCpuAsm.asm99 ; Stack:
130 ; Stack:
164 ; Stack:
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
H A DMisc.c301 "The Stack is \n\r\tSegment Addr = 0x%X\n\r\tPhysical Addr = 0x%X\n\r\tSeg Size = 0x%X\n\r",
302 (UINT16) DisplayPointer->Stack.Seg_Addr,
303 (UINT32) DisplayPointer->Stack.Phy_Addr,
304 (UINT16) DisplayPointer->Stack.Seg_Size)
322 "The Stack is \n\r\tSegment Addr = 0x%X\n\r\tPhysical Addr = 0x%X\n\r\tSeg Size = 0x%X\n\r",
392 DEBUG ((DEBUG_NET, "Stack segment size in bytes = 0x%X\n\r", DisplayPointer->StackSize));
728 Buffer, // Reference to Stack
729 Size // Size of the Stack
917 Buffer, // Reference to Stack
918 6 // Size of the Stack
[all...]
H A DPxe.h189 NEWSEGDESC_T Stack; member in struct:__anon10380
209 UINT16 StackSize; ///< Stack segment size in bytes.
/vbox/src/VBox/VMM/testcase/
H A DtstX86-1A.asm2026 ; @uses Stack, flags and eax/rax.
2070 ; @uses Stack, flags and eax/rax.
2572 ; @uses xCX, xAX, Stack.
2598 ; @uses xCX, xAX, Stack.
2699 ; @uses xCX, xDX, xAX, Stack.
2726 ; @uses xCX, xDX, xAX, Stack.
2887 ; Stack underflow - TOP and ST0 unmodified.
3006 ; Stack underflow, both operands - no pop or change.
3012 ; Stack underflow, one operand - no pop or change.
3109 ; Stack underflo
[all...]
/vbox/src/VBox/VMM/VMMRC/
H A DTRPMRCHandlersA.asm96 dd 0 ; c - #SS - F - Y - Stack-Segment fault.
137 dd 0 ; c - #SS - F - Y - Stack-Segment fault.
196 ; Stack:
221 ; Stack:
736 ; Stack:
1117 ; Stack:
H A DCPUMRCA.asm203 ; @param selSS [esp + 20] Stack selector for handler
204 ; @param pEsp [esp + 24] Stack address for handler
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/
H A DLegacyBios.h1139 the Stack argument
1146 @param[in] Stack The caller allocated stack used to pass arguments.
1147 @param[in] StackSize The size of Stack in bytes.
1158 IN VOID *Stack,
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuDxe/X64/
H A DCpuAsm.S110 # Stack:
H A DCpuAsm.asm99 ; Stack:
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dpxe_api.h103 SEGSEL_t StackSeg; /**< Stack segment selector */
104 UINT16_t StackSize; /**< Stack segment size */
210 /** Stack segment descriptor */
211 SEGDESC_t Stack; member in struct:s_PXE
/vbox/src/VBox/Runtime/common/misc/
H A Dlockvalidator.cpp2899 RTLOCKVALDDSTACK Stack; local
2900 int rc = rtLockValidatorDdDoDetection(&Stack, pRec, pThreadSelf);
2908 rc = rtLockValidatorDdDoDetection(&Stack, pRec, pThreadSelf);
2919 rcLockValidatorDoDeadlockComplaining(&Stack, pRec, pThreadSelf, pSrcPos, rc);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Ddbghelp.h852 MINIDUMP_MEMORY_DESCRIPTOR Stack; member in struct:_MINIDUMP_THREAD
1270 * Stack management *

Completed in 142 milliseconds

12