HomeSort by relevance Sort by last modified time
    Searched refs:Gdtr (Results 1 - 25 of 47) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
X86ReadGdtr.c 26 Reads the current Global Descriptor Table Register(GDTR) descriptor.
28 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
31 If Gdtr is NULL, then ASSERT().
33 @param Gdtr Pointer to a GDTR descriptor.
39 OUT IA32_DESCRIPTOR *Gdtr
42 ASSERT (Gdtr != NULL);
43 InternalX86ReadGdtr (Gdtr);
X86WriteGdtr.c 26 Writes the current Global Descriptor Table Register (GDTR) descriptor.
28 Writes and the current GDTR descriptor specified by Gdtr. This function is
31 If Gdtr is NULL, then ASSERT().
33 @param Gdtr Pointer to a GDTR descriptor.
39 IN CONST IA32_DESCRIPTOR *Gdtr
42 ASSERT (Gdtr != NULL);
43 InternalX86WriteGdtr (Gdtr);
BaseLibInternals.h 589 Reads the current Global Descriptor Table Register(GDTR) descriptor.
591 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
594 @param Gdtr Pointer to a GDTR descriptor.
600 OUT IA32_DESCRIPTOR *Gdtr
604 Writes the current Global Descriptor Table Register (GDTR) descriptor.
606 Writes and the current GDTR descriptor specified by Gdtr. This function is
609 @param Gdtr Pointer to a GDTR descriptor.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
X86ReadGdtr.c 21 Reads the current Global Descriptor Table Register(GDTR) descriptor.
23 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
26 If Gdtr is NULL, then ASSERT().
28 @param Gdtr The pointer to a GDTR descriptor.
34 OUT IA32_DESCRIPTOR *Gdtr
37 ASSERT (Gdtr != NULL);
38 InternalX86ReadGdtr (Gdtr);
X86WriteGdtr.c 21 Writes the current Global Descriptor Table Register (GDTR) descriptor.
23 Writes and the current GDTR descriptor specified by Gdtr. This function is
26 If Gdtr is NULL, then ASSERT().
28 @param Gdtr The pointer to a GDTR descriptor.
34 IN CONST IA32_DESCRIPTOR *Gdtr
37 ASSERT (Gdtr != NULL);
38 InternalX86WriteGdtr (Gdtr);
BaseLibInternals.h 486 Reads the current Global Descriptor Table Register(GDTR) descriptor.
488 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
491 @param Gdtr The pointer to a GDTR descriptor.
497 OUT IA32_DESCRIPTOR *Gdtr
501 Writes the current Global Descriptor Table Register (GDTR) descriptor.
503 Writes and the current GDTR descriptor specified by Gdtr. This function is
506 @param Gdtr The pointer to a GDTR descriptor.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
ReadGdtr.c 20 OUT IA32_DESCRIPTOR *Gdtr
24 mov eax, Gdtr
WriteGdtr.c 20 IN CONST IA32_DESCRIPTOR *Gdtr
24 mov eax, Gdtr
ReadGdtr.S 32 # OUT IA32_DESCRIPTOR *Gdtr
ReadGdtr.asm 32 ; OUT IA32_DESCRIPTOR *Gdtr
WriteGdtr.S 30 # OUT IA32_DESCRIPTOR *Gdtr
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
ReadGdtr.c 20 Reads the current Global Descriptor Table Register(GDTR) descriptor.
22 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
25 @param Gdtr The pointer to a GDTR descriptor.
31 OUT IA32_DESCRIPTOR *Gdtr
35 mov eax, Gdtr
WriteGdtr.c 20 Writes the current Global Descriptor Table Register (GDTR) descriptor.
22 Writes and the current GDTR descriptor specified by Gdtr. This function is
25 @param Gdtr The pointer to a GDTR descriptor.
31 IN CONST IA32_DESCRIPTOR *Gdtr
35 mov eax, Gdtr
ReadGdtr.asm 32 ; OUT IA32_DESCRIPTOR *Gdtr
GccInline.c 1024 Reads the current Global Descriptor Table Register(GDTR) descriptor.
1026 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
1029 @param Gdtr The pointer to a GDTR descriptor.
1035 OUT IA32_DESCRIPTOR *Gdtr
1040 : "=m" (*Gdtr)
1046 Writes the current Global Descriptor Table Register (GDTR) descriptor.
1048 Writes and the current GDTR descriptor specified by Gdtr. This function is
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsulePei/Common/
CommonHeader.h 62 // right before this Gdtr field.
64 IA32_DESCRIPTOR Gdtr;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
ReadGdtr.S 29 # OUT IA32_DESCRIPTOR *Gdtr
ReadGdtr.asm 28 ; OUT IA32_DESCRIPTOR *Gdtr
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
ReadGdtr.asm 30 ; OUT IA32_DESCRIPTOR *Gdtr
GccInline.c 1034 Reads the current Global Descriptor Table Register(GDTR) descriptor.
1036 Reads and returns the current GDTR descriptor and returns it in Gdtr. This
1039 @param Gdtr The pointer to a GDTR descriptor.
1045 OUT IA32_DESCRIPTOR *Gdtr
1050 : "=m" (*Gdtr)
1056 Writes the current Global Descriptor Table Register (GDTR) descriptor.
1058 Writes and the current GDTR descriptor specified by Gdtr. This function is
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/
ApStartup.c 159 Gdtr:
172 mov bx, Gdtr
240 { 0xBB, 0x02, 0x00 }, // mov bx, Gdtr
379 IA32_DESCRIPTOR Gdtr;
397 AsmReadGdtr (&Gdtr);
398 StartupCode->GdtLimit = Gdtr.Limit;
399 StartupCode->GdtBase = (UINT32) Gdtr.Base;
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuMpPei/
CpuMpPei.h 78 IA32_DESCRIPTOR Gdtr; // offset 8 / 16
193 @param Gdtr Pointer to GDT descriptor
198 IN IA32_DESCRIPTOR *Gdtr
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/
ArchExceptionHandler.c 177 "GDTR - %08x %08x, IDTR - %08x %08x\n",
178 SystemContext.SystemContextIa32->Gdtr[0],
179 SystemContext.SystemContextIa32->Gdtr[1],
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/X64/
ArchExceptionHandler.c 208 "GDTR - %016lx %016lx, LDTR - %016lx\n",
209 SystemContext.SystemContextX64->Gdtr[0],
210 SystemContext.SystemContextX64->Gdtr[1],
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Include/Ia32/
ProcessorContext.h 31 #define SOFT_DEBUGGER_REGISTER_GDTR0 0x09 // the low 32bit of GDTR
32 #define SOFT_DEBUGGER_REGISTER_GDTR1 0x0A // the high 32bit of GDTR
183 UINT32 Gdtr[2];
274 UINT64 Gdtr[2];

Completed in 1940 milliseconds

1 2