/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ |
H A D | ScanMem16Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem16( IN CONST VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | ScanMem32Wrapper.c | 31 This function searches the target buffer specified by Buffer and Length from the lowest 34 then NULL is returned. If Length is 0, then NULL is returned. 36 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is not aligned on a 32-bit boundary, then ASSERT(). 39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 42 @param Length The number of bytes in Buffer to scan. 52 IN UINTN Length, 56 if (Length == 0) { 62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 63 ASSERT ((Length 50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | ScanMem64Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | ScanMem8Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 41 @param Length The number of bytes in Buffer to scan. 51 IN UINTN Length, 55 if (Length == 0) { 59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 61 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value); 68 This function searches the target buffer specified by Buffer and Length fro 49 ScanMem8( IN CONST VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 87 ScanMemN( IN CONST VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |
H A D | SetMem.c | 27 @param Length The number of bytes to set. 37 IN UINTN Length, 49 while (Length-- > 0) { 35 InternalMemSetMem( OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument
|
H A D | SetMem16Wrapper.c | 30 This function fills Length bytes of Buffer with the 16-bit value specified by 31 Value, and returns Buffer. Value is repeated every 16-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | SetMem32Wrapper.c | 30 This function fills Length bytes of Buffer with the 32-bit value specified by 31 Value, and returns Buffer. Value is repeated every 32-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 32-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | SetMem64Wrapper.c | 30 This function fills Length bytes of Buffer with the 64-bit value specified by 31 Value, and returns Buffer. Value is repeated every 64-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | SetMemWrapper.c | 31 This function fills Length bytes of Buffer with Value, and returns Buffer. 33 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 36 @param Length The number of bytes to set. 37 @param Value The value with which to fill Length bytes of Buffer. 46 IN UINTN Length, 50 if (Length == 0) { 54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 56 return InternalMemSetMem (Buffer, Length, Value); 62 This function fills Length bytes of Buffer with the UINTN sized value specified by 63 Value, and returns Buffer. Value is repeated every sizeof(UINTN) bytes for Length 44 SetMem( OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 80 SetMemN( OUT VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibMmx/ |
H A D | ScanMem16Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem16( IN CONST VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | ScanMem32Wrapper.c | 31 This function searches the target buffer specified by Buffer and Length from the lowest 34 then NULL is returned. If Length is 0, then NULL is returned. 36 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is not aligned on a 32-bit boundary, then ASSERT(). 39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 42 @param Length The number of bytes in Buffer to scan. 52 IN UINTN Length, 56 if (Length == 0) { 62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 63 ASSERT ((Length 50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | ScanMem64Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | ScanMem8Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 41 @param Length The number of bytes in Buffer to scan. 51 IN UINTN Length, 55 if (Length == 0) { 59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 61 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value); 68 This function searches the target buffer specified by Buffer and Length fro 49 ScanMem8( IN CONST VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 87 ScanMemN( IN CONST VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |
H A D | SetMem16Wrapper.c | 30 This function fills Length bytes of Buffer with the 16-bit value specified by 31 Value, and returns Buffer. Value is repeated every 16-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | SetMem32Wrapper.c | 30 This function fills Length bytes of Buffer with the 32-bit value specified by 31 Value, and returns Buffer. Value is repeated every 32-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 32-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | SetMem64Wrapper.c | 30 This function fills Length bytes of Buffer with the 64-bit value specified by 31 Value, and returns Buffer. Value is repeated every 64-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | SetMemWrapper.c | 31 This function fills Length bytes of Buffer with Value, and returns Buffer. 33 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 36 @param Length The number of bytes to set. 37 @param Value The value with which to fill Length bytes of Buffer. 46 IN UINTN Length, 50 if (Length == 0) { 54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 56 return InternalMemSetMem (Buffer, Length, Value); 62 This function fills Length bytes of Buffer with the UINTN sized value specified by 63 Value, and returns Buffer. Value is repeated every sizeof(UINTN) bytes for Length 44 SetMem( OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 80 SetMemN( OUT VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptDxe/ |
H A D | ScanMem16Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem16( IN CONST VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | ScanMem32Wrapper.c | 31 This function searches the target buffer specified by Buffer and Length from the lowest 34 then NULL is returned. If Length is 0, then NULL is returned. 36 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is not aligned on a 32-bit boundary, then ASSERT(). 39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 42 @param Length The number of bytes in Buffer to scan. 52 IN UINTN Length, 56 if (Length == 0) { 62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 63 ASSERT ((Length 50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | ScanMem64Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 39 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 43 @param Length The number of bytes in Buffer to scan. 53 IN UINTN Length, 57 if (Length == 0) { 63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 64 ASSERT ((Length 51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | ScanMem8Wrapper.c | 32 This function searches the target buffer specified by Buffer and Length from the lowest 35 then NULL is returned. If Length is 0, then NULL is returned. 37 If Length > 0 and Buffer is NULL, then ASSERT(). 38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 41 @param Length The number of bytes in Buffer to scan. 51 IN UINTN Length, 55 if (Length == 0) { 59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 61 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value); 68 This function searches the target buffer specified by Buffer and Length fro 49 ScanMem8( IN CONST VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 88 ScanMemN( IN CONST VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |
H A D | SetMem16Wrapper.c | 30 This function fills Length bytes of Buffer with the 16-bit value specified by 31 Value, and returns Buffer. Value is repeated every 16-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 16-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument [all...] |
H A D | SetMem32Wrapper.c | 30 This function fills Length bytes of Buffer with the 32-bit value specified by 31 Value, and returns Buffer. Value is repeated every 32-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 32-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument [all...] |
H A D | SetMem64Wrapper.c | 30 This function fills Length bytes of Buffer with the 64-bit value specified by 31 Value, and returns Buffer. Value is repeated every 64-bits in for Length 34 If Length > 0 and Buffer is NULL, then ASSERT(). 35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 37 If Length is not aligned on a 64-bit boundary, then ASSERT(). 40 @param Length The number of bytes in Buffer to fill. 41 @param Value The value with which to fill Length bytes of Buffer. 50 IN UINTN Length, 54 if (Length == 0) { 59 ASSERT ((Length 48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument [all...] |
H A D | SetMemWrapper.c | 31 This function fills Length bytes of Buffer with Value, and returns Buffer. 33 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). 36 @param Length The number of bytes to set. 37 @param Value The value with which to fill Length bytes of Buffer. 46 IN UINTN Length, 50 if (Length == 0) { 54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); 56 return InternalMemSetMem (Buffer, Length, Value); 62 This function fills Length bytes of Buffer with the UINTN sized value specified by 63 Value, and returns Buffer. Value is repeated every sizeof(UINTN) bytes for Length 44 SetMem( OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value ) argument 80 SetMemN( OUT VOID *Buffer, IN UINTN Length, IN UINTN Value ) argument [all...] |