/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/ |
D | Tpm2Capability.c | 39 TPMT_PUBLIC_PARMS Parameters; member 626 IN TPMT_PUBLIC_PARMS *Parameters in Tpm2TestParms() argument 642 Buffer = (UINT8 *)&SendBuffer.Parameters; in Tpm2TestParms() 643 WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Parameters->type)); in Tpm2TestParms() 645 switch (Parameters->type) { in Tpm2TestParms() 647 …WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Parameters->parameters.keyedHashDetail.scheme.sch… in Tpm2TestParms() 649 switch (Parameters->parameters.keyedHashDetail.scheme.scheme) { in Tpm2TestParms() 651 …WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Parameters->parameters.keyedHashDetail.scheme.det… in Tpm2TestParms() 655 …WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Parameters->parameters.keyedHashDetail.scheme.det… in Tpm2TestParms() 657 …WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (Parameters->parameters.keyedHashDetail.scheme.det… in Tpm2TestParms() [all …]
|
/device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/ |
D | GrantTable.c | 145 xen_add_to_physmap_t Parameters; in XenGrantTableInit() local 159 Parameters.domid = DOMID_SELF; in XenGrantTableInit() 160 Parameters.idx = Index; in XenGrantTableInit() 161 Parameters.space = XENMAPSPACE_grant_table; in XenGrantTableInit() 162 Parameters.gpfn = (xen_pfn_t) ((UINTN) GrantTable >> EFI_PAGE_SHIFT) + Index; in XenGrantTableInit() 163 ReturnCode = XenHypercallMemoryOp (XENMEM_add_to_physmap, &Parameters); in XenGrantTableInit() 178 xen_remove_from_physmap_t Parameters; in XenGrantTableDeinit() local 185 Parameters.domid = DOMID_SELF; in XenGrantTableDeinit() 186 Parameters.gpfn = (xen_pfn_t) ((UINTN) GrantTable >> EFI_PAGE_SHIFT) + Index; in XenGrantTableDeinit() 188 (UINT64)Parameters.gpfn)); in XenGrantTableDeinit() [all …]
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/BlockIoDxe/ |
D | BiosBlkIo.c | 690 Controller = (UINT32) Drive->Parameters.InterfacePath.Pci.Controller; in BuildEdd30DevicePath() 693 if ((AsciiStrnCmp ("ATAPI", Drive->Parameters.InterfaceType, 5) == 0) || in BuildEdd30DevicePath() 694 (AsciiStrnCmp ("ATA", Drive->Parameters.InterfaceType, 3) == 0) in BuildEdd30DevicePath() 702 Node.Atapi.SlaveMaster = Drive->Parameters.DevicePath.Atapi.Master; in BuildEdd30DevicePath() 703 Node.Atapi.Lun = Drive->Parameters.DevicePath.Atapi.Lun; in BuildEdd30DevicePath() 720 if (AsciiStrnCmp ("SCSI", Drive->Parameters.InterfaceType, 4) == 0) { in BuildEdd30DevicePath() 732 CopyMem (&Node.Scsi.Lun, &Drive->Parameters.DevicePath.Scsi.Lun, sizeof (UINT16)); in BuildEdd30DevicePath() 733 Node.Scsi.Pun = Drive->Parameters.DevicePath.Scsi.Pun; in BuildEdd30DevicePath() 735 } else if (AsciiStrnCmp ("USB", Drive->Parameters.InterfaceType, 3) == 0) { in BuildEdd30DevicePath() 742 Node.Usb.ParentPortNumber = (UINT8) Drive->Parameters.DevicePath.Usb.Reserved; in BuildEdd30DevicePath() [all …]
|
D | BiosInt13.c | 64 BlockMedia->LastBlock = (EFI_LBA) Bios->Parameters.PhysicalSectors - 1; in BiosInitBlockIo() 65 BlockMedia->BlockSize = (UINT32) Bios->Parameters.BytesPerSector; in BiosInitBlockIo() 67 if ((Bios->Parameters.Flags & EDD_DEVICE_REMOVABLE) == EDD_DEVICE_REMOVABLE) { in BiosInitBlockIo() 250 mLegacyDriverUnder1Mb->Parameters.StructureSize = (UINT16) sizeof (EDD_DRIVE_PARAMETERS); in GetDriveParameters() 251 Regs.X.DS = EFI_SEGMENT ((UINTN)(&mLegacyDriverUnder1Mb->Parameters)); in GetDriveParameters() 252 Regs.X.SI = EFI_OFFSET ((UINTN)(&mLegacyDriverUnder1Mb->Parameters)); in GetDriveParameters() 257 SetMem (&Drive->Parameters, sizeof (Drive->Parameters), 0xaf); in GetDriveParameters() 264 &Drive->Parameters, in GetDriveParameters() 265 &mLegacyDriverUnder1Mb->Parameters, in GetDriveParameters() 266 sizeof (Drive->Parameters) in GetDriveParameters() [all …]
|
D | Edd.h | 188 EDD_DRIVE_PARAMETERS Parameters; member
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
D | Mbr.S | 79 # Get Driver Parameters to 0x0000:0x7BFC 90 movb $8, %ah # AH = 8 - Get Drive Parameters Function 92 int $0x13 # Get Drive Parameters
|
D | Mbr.asm | 79 ; Get Driver Parameters to 0x0000:0x7BFC 90 mov ah,8 ; AH = 8 - Get Drive Parameters Function 92 int 13h ; Get Drive Parameters
|
D | Gpt.S | 81 # Get Driver Parameters to 0x0000:0x7BFC 91 movb $8, %ah # ah = 8 - Get Drive Parameters Function 93 int $0x13 # Get Drive Parameters
|
D | Gpt.asm | 79 ; Get Driver Parameters to 0x0000:0x7BFC 89 mov ah,8 ; ah = 8 - Get Drive Parameters Function 91 int 13h ; Get Drive Parameters
|
D | bs16.S | 83 movb $8, %ah # ah = 8 - Get Drive Parameters Function 85 int $0x13 # Get Drive Parameters
|
D | bs16.asm | 81 mov ah,8 ; ah = 8 - Get Drive Parameters Function 83 int 13h ; Get Drive Parameters
|
D | bs32.S | 97 movb $8, %ah # ah = 8 - Get Drive Parameters Function 99 int $0x13 # Get Drive Parameters
|
D | bs32.asm | 96 mov ah,8 ; ah = 8 - Get Drive Parameters Function 98 int 13h ; Get Drive Parameters
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | Parser.py | 628 Parameters, ItemName, GuidName, GuidMacro, GuidValue, BelongsToFunction = [], '', '', '', '', '' 651 Parameters.append(GetParameterName(Parameter)) 653 Parameters = [GetProtocolParameter(Record[0], Index)] 655 for Parameter in Parameters:
|
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/ |
D | UsbSbd.asl | 44 // Arg3: Package Parameters
|
/device/linaro/bootloader/edk2/QuarkSocPkg/ |
D | QuarkSocPkg.dec | 227 …## Intel(R) Quark(TM) Soc X1000 processor MRC Parameters. Default is for Galileo Gen 2 platform.<… 228 # @Prompt Intel(R) Quark(TM) Soc X1000 processor MRC Parameters.
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ |
D | CompareMem.asm | 29 ; Parameters and result.
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/Dsdt/ |
D | Hns.asl | 371 // Arg3: Package Parameters 629 // Arg3: Package Parameters 839 // Arg3: Package Parameters
|
/device/linaro/bootloader/edk2/SecurityPkg/Include/Library/ |
D | Tpm2CommandLib.h | 810 IN TPMT_PUBLIC_PARMS *Parameters
|
/device/linaro/bootloader/arm-trusted-firmware/docs/ |
D | auth-framework.rst | 292 Parameters: 316 Parameters: 507 * Parameters for authentication by hash matching 515 * Parameters for authentication by signature 596 #. Parameters which are used to verify the next image in the current CoT. These
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/Dsdt/ |
D | D05Hns.asl | 469 // Arg3: Package Parameters 1144 // Arg3: Package Parameters
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork1CommandsLib/ |
D | UefiShellNetwork1CommandsLib.uni | 37 #string STR_GEN_PARAM_CON #language en-US "%H%s%N: Parameters conflict.\r\n"
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Hi1610AcpiTables/Dsdt/ |
D | D03Hns.asl | 459 // Arg3: Package Parameters
|
/device/google/marlin/ |
D | WCNSS_qcom_cfg.ini | 209 # Scan Timing Parameters
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | dictnotes.txt | 74 Tunable Dictionary Parameters
|