/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Cipher/ |
D | CryptAes.c | 115 IN CONST UINT8 *Input, in AesEcbEncrypt() argument 125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) { in AesEcbEncrypt() 135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT); in AesEcbEncrypt() 136 Input += AES_BLOCK_SIZE; in AesEcbEncrypt() 172 IN CONST UINT8 *Input, in AesEcbDecrypt() argument 182 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) { in AesEcbDecrypt() 192 AES_ecb_encrypt (Input, Output, AesKey + 1, AES_DECRYPT); in AesEcbDecrypt() 193 Input += AES_BLOCK_SIZE; in AesEcbDecrypt() 232 IN CONST UINT8 *Input, in AesCbcEncrypt() argument 244 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0) { in AesCbcEncrypt() [all …]
|
D | CryptTdes.c | 141 IN CONST UINT8 *Input, in TdesEcbEncrypt() argument 151 …if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) { in TdesEcbEncrypt() 159 (const_DES_cblock *) Input, in TdesEcbEncrypt() 166 Input += TDES_BLOCK_SIZE; in TdesEcbEncrypt() 202 IN CONST UINT8 *Input, in TdesEcbDecrypt() argument 212 …if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) { in TdesEcbDecrypt() 220 (const_DES_cblock *) Input, in TdesEcbDecrypt() 227 Input += TDES_BLOCK_SIZE; in TdesEcbDecrypt() 266 IN CONST UINT8 *Input, in TdesCbcEncrypt() argument 278 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0) { in TdesCbcEncrypt() [all …]
|
D | CryptArc4.c | 108 IN CONST UINT8 *Input, in Arc4Encrypt() argument 118 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) { in Arc4Encrypt() 124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output); in Arc4Encrypt() 154 IN UINT8 *Input, in Arc4Decrypt() argument 164 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) { in Arc4Decrypt() 170 RC4 (Rc4Key, (UINT32) InputSize, Input, Output); in Arc4Decrypt()
|
D | CryptTdesNull.c | 76 IN CONST UINT8 *Input, in TdesEcbEncrypt() argument 102 IN CONST UINT8 *Input, in TdesEcbDecrypt() argument 129 IN CONST UINT8 *Input, in TdesCbcEncrypt() argument 157 IN CONST UINT8 *Input, in TdesCbcDecrypt() argument
|
D | CryptAesNull.c | 76 IN CONST UINT8 *Input, in AesEcbEncrypt() argument 102 IN CONST UINT8 *Input, in AesEcbDecrypt() argument 129 IN CONST UINT8 *Input, in AesCbcEncrypt() argument 157 IN CONST UINT8 *Input, in AesCbcDecrypt() argument
|
D | CryptArc4Null.c | 77 IN CONST UINT8 *Input, in Arc4Encrypt() argument 103 IN UINT8 *Input, in Arc4Decrypt() argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/ |
D | RmPkg.py | 54 Input = stdin.readline() 55 Input = Input.replace('\r', '').replace('\n', '') 56 if Input.upper() != 'Y': 248 Input = stdin.readline() 249 Input = Input.replace('\r', '').replace('\n', '') 250 if Input.upper() != 'Y': 260 Input = stdin.readline() 261 Input = Input.replace('\r', '').replace('\n', '') 262 if Input.upper() != 'Y':
|
D | InstallPkg.py | 80 Input = stdin.readline() 81 Input = Input.replace('\r', '').replace('\n', '') 82 if Input == '': 84 Input = Input.replace('\r', '').replace('\n', '') 85 return InstallNewPackage(WorkspaceDir, Input, False) 106 Input = stdin.readline() 107 Input = Input.replace('\r', '').replace('\n', '') 108 if Input == '': 110 Input = Input.replace('\r', '').replace('\n', '') 111 return InstallNewModule(WorkspaceDir, Input, PathList) [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | GenFdsGlobalVariable.py | 343 def NeedsUpdate(Output, Input): argument 347 if Input == None or len(Input) == 0: 355 for F in Input: 365 def GenerateSection(Output, Input, Type=None, CompressionType=None, Guid=None, argument 402 if not GenFdsGlobalVariable.NeedsUpdate(Output, list(Input) + [CommandFile]): 408 Cmd += Input 411 if GenFdsGlobalVariable.NeedsUpdate(Output, list(Input) + [CommandFile]): 412 …balVariable.DebugLogger(EdkLogger.DEBUG_5, "%s needs update because of newer %s" % (Output, Input)) 429 def GenerateFfs(Output, Input, Type, Guid, Fixed=False, CheckSum=False, Align=None, argument 447 for I in range(0, len(Input)): [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/ |
D | GetPowerOfTwo.c | 27 IN UINT64 Input in GetPowerOfTwo() argument 50 mov ecx, dword ptr Input[4] in GetPowerOfTwo() 56 mov ecx, dword ptr Input[0] in GetPowerOfTwo()
|
D | GetPowerOfTwo.asm | 31 ; IN UINT64 Input 53 mov ecx, [esp + 8] ; dword ptr Input[4] 59 mov ecx, [esp + 4] ; dword ptr Input[0]
|
D | GetPowerOfTwo.S | 32 # IN UINT64 Input 54 movl 8(%esp), %ecx # dword ptr Input[4] 60 movl 4(%esp), %ecx # dword ptr Input[0]
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Cipher/ |
D | CryptTdesNull.c | 76 IN CONST UINT8 *Input, in TdesEcbEncrypt() argument 102 IN CONST UINT8 *Input, in TdesEcbDecrypt() argument 129 IN CONST UINT8 *Input, in TdesCbcEncrypt() argument 157 IN CONST UINT8 *Input, in TdesCbcDecrypt() argument
|
D | CryptAesNull.c | 76 IN CONST UINT8 *Input, in AesEcbEncrypt() argument 102 IN CONST UINT8 *Input, in AesEcbDecrypt() argument 129 IN CONST UINT8 *Input, in AesCbcEncrypt() argument 157 IN CONST UINT8 *Input, in AesCbcDecrypt() argument
|
D | CryptArc4Null.c | 77 IN CONST UINT8 *Input, in Arc4Encrypt() argument 103 IN UINT8 *Input, in Arc4Decrypt() argument
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/ |
D | D05Iort.asl | 138 [0004] Input base : 00000000 169 [0004] Input base : 00000000 200 [0004] Input base : 00000000 231 [0004] Input base : 00000000 262 [0004] Input base : 00000000 293 [0004] Input base : 00000000 324 [0004] Input base : 00000000 355 [0004] Input base : 00000000 386 [0004] Input base : 00000000 415 [0004] Input base : 00008000 [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/ |
D | TerminalDxe.uni | 2 // Terminal module installs Simple Text Input(ex)/Out protocols for serial devices. 4 // This module will install Simple Text Input (Ex) protocol and Simple Test Output 20 #string STR_MODULE_ABSTRACT #language en-US "Terminal module installs Simple Text Input… 22 #string STR_MODULE_DESCRIPTION #language en-US "This module will install Simple Text Input…
|
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/ |
D | IpSecDriver.c | 233 if (UdpSrv->Input != NULL && ControllerHandle == UdpSrv->Input->UdpHandle) { in IpSecStop() 234 UdpIoFreeIo (UdpSrv->Input); in IpSecStop() 235 UdpSrv->Input = NULL; in IpSecStop() 243 if (UdpSrv->Input == NULL && UdpSrv->Output == NULL) { in IpSecStop() 260 if (UdpSrv->Input != NULL && ControllerHandle == UdpSrv->Input->UdpHandle) { in IpSecStop() 261 UdpIoFreeIo (UdpSrv->Input); in IpSecStop() 262 UdpSrv->Input = NULL; in IpSecStop() 270 if (UdpSrv->Input == NULL && UdpSrv->Output == NULL) { in IpSecStop()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/ |
D | UsbKbDxe.uni | 2 // USB Keyboard Driver that manages USB keyboard and produces Simple Text Input(Ex) Protocol. 5 // Simple Text Input Protocol and Simple Text Input Ex Protocol on USB keyboard devices. 28 …RACT #language en-US "Manages USB keyboard and produces Simple Text Input(Ex) Protocol" 30 …otocol and Device Path Protocol, and produces Simple Text Input Protocol and Simple Text Input Ex …
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Hi1610AcpiTables/ |
D | D03Iort.asl | 59 [0004] Input base : 00000000 90 [0004] Input base : 00000000 121 [0004] Input base : 00000000 152 [0004] Input base : 00000000 183 [0004] Input base : 00000000 214 [0004] Input base : 00000000 245 [0004] Input base : 00000000 276 [0004] Input base : 00000000 305 [0004] Input base : 00000000 334 [0004] Input base : 0000e000 [all …]
|
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/ |
D | PwdCredentialProviderStrings.uni | 24 #string STR_INPUT_PASSWORD #language en-US "Please Input Password" 25 #language fr-FR "Please Input Password(French)" 30 #string STR_INPUT_PASSWORD_AGAIN #language en-US "Input Password Again" 31 … #language fr-FR "Input Password Again (French)"
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
D | BuildEngine.py | 86 def AddInput(self, Input): argument 87 if Input not in self.Inputs: 88 self.Inputs.append(Input) 113 def __init__(self, Type, Input, Output, Command, ExtraDependency=None): argument 115 if not Input: 116 Input = [] 165 for File in Input: 286 for Input in TargetDesc.Inputs: 287 if Input.Ext not in BuildRuleOrder or BuildRuleOrder.index(Input.Ext) > Index: 441 Input = self._RuleInfo[Family, self._InputFile] [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/ |
D | OrderedCollectionTest.c | 47 static FILE *Input, *Output; variable 514 Input = stdin; in SetupInputOutput() 516 Input = fopen (InputName, "r"); in SetupInputOutput() 517 if (Input == NULL) { in SetupInputOutput() 566 while (fgets (Line, sizeof Line, Input) != NULL) { in main() 590 if (Input != stdin) { in main() 647 if (RetVal == EXIT_SUCCESS && ferror (Input)) { in main()
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/ |
D | Iort.asl | 92 [0004] Input base : 00000000 123 [0004] Input base : 00000000 154 [0004] Input base : 00000000 185 [0004] Input base : 00000000 214 [0004] Input base : 00004000 243 [0004] Input base : 00008000
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenBootSector/ |
D | GenBootSector.c | 113 BOOL Input; member 350 if (!PathInfo->Input && (PathInfo->Type == PathUsb)) { in GetBootSectorOffset() 381 if (PathInfo->Input || PathInfo->Type != PathFile) { in GetFileHandle() 616 if (!PathInfo->Input && (DriveInfo.DriveType->Type == DRIVE_FIXED)) { in GetPathInfo() 635 if (PathInfo->Input) { in GetPathInfo() 696 InputPathInfo.Input = TRUE; in main() 711 OutputPathInfo.Input = FALSE; in main()
|