/vbox/src/VBox/Runtime/common/table/ |
H A D | avl_Get.cpp.h | 35 * @param Key Key value of the node which is to be found. 38 KAVL_DECL(PKAVLNODECORE) KAVL_FN(Get)(PPKAVLNODECORE ppTree, KAVLKEY Key) argument 44 while (KAVL_NE(pNode->Key, Key)) 46 if (KAVL_G(pNode->Key, Key))
|
H A D | avl_GetBestFit.cpp.h | 34 * Finds the best fitting node in the tree for the given Key value. 37 * @param Key The Key of which is to be found a best fitting match for.. 38 * @param fAbove TRUE: Returned node is have the closest key to Key from above. 39 * FALSE: Returned node is have the closest key to Key from below. 44 KAVL_DECL(PKAVLNODECORE) KAVL_FN(GetBestFit)(PPKAVLNODECORE ppTree, KAVLKEY Key, bool fAbove) argument 51 { /* pNode->Key >= Key */ 52 while (KAVL_NE(pNode->Key, Key)) [all...] |
H A D | avl_Range.cpp.h | 36 * @param Key The Key to find matching range for. 38 KAVL_DECL(PKAVLNODECORE) KAVL_FN(RangeGet)(PPKAVLNODECORE ppTree, register KAVLKEY Key) argument 45 if (KAVL_R_IS_IN_RANGE(pNode->Key, pNode->KeyLast, Key)) 47 if (KAVL_G(pNode->Key, Key)) 74 * @param Key The Key to remove matching range for. 76 RTDECL(PKAVLNODECORE) KAVL_FN(RangeRemove)(PPKAVLNODECORE ppTree, KAVLKEY Key) argument [all...] |
H A D | avl_RemoveBestFit.cpp.h | 34 * Finds the best fitting node in the tree for the given Key value. 38 * @param Key The Key of which is to be found a best fitting match for.. 39 * @param fAbove TRUE: Returned node is have the closest key to Key from above. 40 * FALSE: Returned node is have the closest key to Key from below. 46 KAVL_DECL(PKAVLNODECORE) KAVL_FN(RemoveBestFit)(PPKAVLNODECORE ppTree, KAVLKEY Key, bool fAbove) argument 53 PKAVLNODECORE pNode = KAVL_FN(GetBestFit)(ppTree, Key, fAbove); 64 pNode = KAVL_FN(Remove)(ppTree, pNode->Key);
|
H A D | avl_RemoveNode.cpp.h | 44 KAVLKEY const Key = pNode->Key; local 49 while (KAVL_NE(pCurNode->Key, Key)) 52 if (KAVL_G(pCurNode->Key, Key)) 93 * Simply remove it if it's the only one with they Key, if there are 98 KAVL_FN(Remove)(ppTree, pNode->Key); 135 KAVLNODE *pRemovedNode = KAVL_FN(Remove)(pRoot, pNode->Key);
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/ |
H A D | QueryTable.h | 22 UINT16 Key; member in struct:TABLE_ITEM 41 Given a table and a Key, return the responding info. 44 Table[Index].Key is change from UINT8 to UINT16, 51 Now define Key = 0x7F07, that is to say: High = 0x7F, Low = 0x07. 52 Then all the Key Value between Low and High gets the same string 57 @param[in] Key The query Key. 61 @return the found Key and Info is valid. 68 IN UINT8 Key, 76 @param[in] Key Th [all...] |
H A D | EventLogInfo.c | 23 @param[in] Key Additional information to print. 29 IN CONST UINT8 Key, 37 PRINT_INFO_OPTION (Key, Option); 42 switch (Key) { 64 if (Key <= 0x7f) { 75 @param[in] Key Additional information to print. 81 UINT8 Key, 89 PRINT_INFO_OPTION (Key, Option); 94 if ((Key & 0x01) != 0) { 100 if ((Key 28 DisplaySELAccessMethod( IN CONST UINT8 Key, IN CONST UINT8 Option ) argument 80 DisplaySELLogStatus( UINT8 Key, UINT8 Option ) argument 119 DisplaySysEventLogHeaderFormat( UINT8 Key, UINT8 Option ) argument 151 DisplaySELLogHeaderLen( UINT8 Key, UINT8 Option ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Cipher/ |
H A D | CryptArc4.c | 46 If Key is NULL, then return FALSE. 50 @param[in] Key Pointer to the user-supplied ARC4 key. 61 IN CONST UINT8 *Key, 70 if (Arc4Context == NULL || Key == NULL || (KeySize < 5 || KeySize > 256)) { 76 RC4_set_key (Rc4Key, (UINT32) KeySize, Key); 59 Arc4Init( OUT VOID *Arc4Context, IN CONST UINT8 *Key, IN UINTN KeySize ) argument
|
H A D | CryptAes.c | 46 If Key is NULL, then return FALSE. 50 @param[in] Key Pointer to the user-supplied AES key. 61 IN CONST UINT8 *Key, 70 if (AesContext == NULL || Key == NULL || (KeyLength != 128 && KeyLength != 192 && KeyLength != 256)) { 78 if (AES_set_encrypt_key (Key, (UINT32) KeyLength, AesKey) != 0) { 81 if (AES_set_decrypt_key (Key, (UINT32) KeyLength, AesKey + 1) != 0) { 59 AesInit( OUT VOID *AesContext, IN CONST UINT8 *Key, IN UINTN KeyLength ) argument
|
H A D | CryptTdes.c | 48 If Key is NULL, then return FALSE. 52 @param[in] Key Pointer to the user-supplied TDES key. 63 IN CONST UINT8 *Key, 72 if (TdesContext == NULL || Key == NULL || (KeyLength != 64 && KeyLength != 128 && KeyLength != 192)) { 81 if (DES_is_weak_key ((const_DES_cblock *) Key)) { 85 DES_set_key_unchecked ((const_DES_cblock *) Key, KeySchedule); 93 if (DES_is_weak_key ((const_DES_cblock *) Key + 8)) { 97 DES_set_key_unchecked ((const_DES_cblock *) (Key + 8), KeySchedule + 1); 104 if (DES_is_weak_key ((const_DES_cblock *) Key + 16)) { 108 DES_set_key_unchecked ((const_DES_cblock *) (Key 61 TdesInit( OUT VOID *TdesContext, IN CONST UINT8 *Key, IN UINTN KeyLength ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Hmac/ |
H A D | CryptHmacMd5.c | 43 @param[in] Key Pointer to the user-supplied key. 44 @param[in] KeySize Key size in bytes. 54 IN CONST UINT8 *Key, 69 HMAC_Init_ex (HmacMd5Context, Key, (UINT32) KeySize, EVP_md5(), NULL); 52 HmacMd5Init( OUT VOID *HmacMd5Context, IN CONST UINT8 *Key, IN UINTN KeySize ) argument
|
H A D | CryptHmacSha1.c | 43 @param[in] Key Pointer to the user-supplied key. 44 @param[in] KeySize Key size in bytes. 54 IN CONST UINT8 *Key, 69 HMAC_Init_ex (HmacSha1Context, Key, (UINT32) KeySize, EVP_sha1(), NULL); 52 HmacSha1Init( OUT VOID *HmacSha1Context, IN CONST UINT8 *Key, IN UINTN KeySize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/ |
H A D | CryptDh.c | 230 If KeySize is large enough but Key is NULL, then return FALSE. 235 @param[out] Key Pointer to the buffer to receive generated key. 236 @param[in, out] KeySize On input, the size of Key buffer in bytes. 237 On output, the size of data returned in Key buffer in bytes. 250 OUT UINT8 *Key, 263 if (Key == NULL && *KeySize != 0) { 269 *KeySize = (BOOLEAN) DH_compute_key (Key, Bn, DhContext); 246 DhComputeKey( IN OUT VOID *DhContext, IN CONST UINT8 *PeerPublicKey, IN UINTN PeerPublicKeySize, OUT UINT8 *Key, IN OUT UINTN *KeySize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/ |
H A D | ShellEnvVar.h | 25 CHAR16 *Key; member in struct:__anon12755
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/ |
H A D | DriverConfiguration.c | 50 EFI_INPUT_KEY Key; local 53 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key); 55 if (Key.ScanCode == SCAN_ESC) { 59 switch (Key.UnicodeChar) {
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/ |
H A D | Console.c | 301 @param[out] Key A pointer to the EFI_KEY value of the key that was 313 OUT EFI_INPUT_KEY *Key, OPTIONAL 335 VA_START (Args, Key); 410 VA_START (Args, Key); 459 if (Key != NULL) { 461 gST->ConIn->ReadKeyStroke (gST->ConIn, Key); 311 CreatePopUp( IN UINTN Attribute, OUT EFI_INPUT_KEY *Key, OPTIONAL ... ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/ |
H A D | Console.c | 301 @param[out] Key A pointer to the EFI_KEY value of the key that was 313 OUT EFI_INPUT_KEY *Key, OPTIONAL 335 VA_START (Args, Key); 410 VA_START (Args, Key); 459 if (Key != NULL) { 461 gST->ConIn->ReadKeyStroke (gST->ConIn, Key); 311 CreatePopUp( IN UINTN Attribute, OUT EFI_INPUT_KEY *Key, OPTIONAL ... ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/ |
H A D | ModifyIdentityPolicy.c | 35 EFI_INPUT_KEY Key; local 44 &Key, 47 L"Press Any Key to Continue ...", 337 EFI_INPUT_KEY Key; local 360 &Key, 363 L"Press Any Key to Continue ...", 376 &Key, 379 L"Press Any Key to Continue ...", 394 &Key, 397 L"Press Any Key t [all...] |
H A D | UserProfileAdd.c | 36 EFI_INPUT_KEY Key; local 46 &Key, 55 if (Key.ScanCode == SCAN_NULL) { 56 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) { 63 } else if ((Key.UnicodeChar == CHAR_NULL) || 64 (Key.UnicodeChar == CHAR_TAB) || 65 (Key.UnicodeChar == CHAR_LINEFEED) 69 if (Key.UnicodeChar == CHAR_BACKSPACE) { 74 Name[NameLen] = Key.UnicodeChar; 88 if (Key 309 EFI_INPUT_KEY Key; local [all...] |
H A D | UserProfileDelete.c | 187 EFI_INPUT_KEY Key; local 242 &Key, 245 L"Please Press Any Key to Continue ...", 254 &Key, 257 L"Please Press Any Key to Continue ...",
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMngr/ |
H A D | BootManager.c | 120 // Assigning the returned Key to a global allows the original routine to know what was chosen 206 EFI_INPUT_KEY Key; local 389 gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/ |
H A D | FwVolDriver.h | 86 UINT8 *Key; member in struct:__anon10518 150 @param Key Key is a pointer to a caller allocated 196 IN OUT VOID *Key,
|
H A D | FwVolRead.c | 65 @param Key Key is a pointer to a caller allocated 111 IN OUT VOID *Key, 133 KeyValue = (UINTN *) Key; 319 UINTN Key; local 362 Key = 0; 367 &Key, 381 FfsFileEntry = (FFS_FILE_LIST_ENTRY *) Key; 109 FvGetNextFile( IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This, IN OUT VOID *Key, IN OUT EFI_FV_FILETYPE *FileType, OUT EFI_GUID *NameGuid, OUT EFI_FV_FILE_ATTRIBUTES *Attributes, OUT UINTN *Size ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/FwVol/ |
H A D | FwVolRead.c | 64 @param Key Key is a pointer to a caller allocated 110 IN OUT VOID *Key, 146 KeyValue = (UINTN *)Key; 155 // Key is pointer to FFsFileEntry, so get next one 293 // The Key is really an FfsFileEntry 108 FvGetNextFile( IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This, IN OUT VOID *Key, IN OUT EFI_FV_FILETYPE *FileType, OUT EFI_GUID *NameGuid, OUT EFI_FV_FILE_ATTRIBUTES *Attributes, OUT UINTN *Size ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Hand/ |
H A D | Handle.h | 31 /// The Handle Database Key value when this handle was last created or modified 32 UINT64 Key; member in struct:__anon10929
|