Searched defs:mInstructionBufferTemplate (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/EbcDxe/Ia32/
H A DEbcSupport.c34 UINT8 mInstructionBufferTemplate[] = { variable
119 UINT8 InstructionBuffer[sizeof(mInstructionBufferTemplate)];
132 // Fill the signature according to mInstructionBufferTemplate
134 for (Index = 0; Index < sizeof(mInstructionBufferTemplate) - sizeof(UINTN); Index++) {
135 if (*(UINTN *)&mInstructionBufferTemplate[Index] == EBC_ENTRYPOINT_SIGNATURE) {
139 if (*(UINTN *)&mInstructionBufferTemplate[Index] == EBC_LL_EBC_ENTRYPOINT_SIGNATURE) {
146 if (CompareMem (InstructionBuffer, mInstructionBufferTemplate, sizeof(mInstructionBufferTemplate)) != 0) {
482 ThunkSize = sizeof(mInstructionBufferTemplate);
484 Ptr = AllocatePool (sizeof(mInstructionBufferTemplate));
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/EbcDxe/X64/
H A DEbcSupport.c34 UINT8 mInstructionBufferTemplate[] = { variable
439 ThunkSize = sizeof(mInstructionBufferTemplate);
441 Ptr = AllocatePool (sizeof(mInstructionBufferTemplate));
461 CopyMem (Ptr, mInstructionBufferTemplate, sizeof(mInstructionBufferTemplate));
466 for (Index = 0; Index < sizeof(mInstructionBufferTemplate) - sizeof(UINTN); Index++) {
515 UINT8 InstructionBuffer[sizeof(mInstructionBufferTemplate)];
528 // Fill the signature according to mInstructionBufferTemplate
530 for (Index = 0; Index < sizeof(mInstructionBufferTemplate) - sizeof(UINTN); Index++) {
531 if (*(UINTN *)&mInstructionBufferTemplate[Inde
[all...]

Completed in 332 milliseconds