Searched refs:Length (Results 1 - 25 of 800) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
H A DScanMem8Wrapper.c32 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 DSetMemWrapper.c31 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 DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
H A DScanMem8Wrapper.c32 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 DSetMemWrapper.c31 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 DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
H A DScanMem8Wrapper.c32 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 DSetMemWrapper.c31 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/BaseMemoryLibOptPei/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
H A DScanMem8Wrapper.c32 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 DSetMemWrapper.c31 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/BaseMemoryLibRepStr/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibSse2/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiMemoryLib/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryLib/
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
H A DZeroMemWrapper.c31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 ASSERT (!(Buffer == NULL && Length > 0));
50 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
51 return InternalMemZeroMem (Buffer, Length);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ipf/
H A DFlushCacheRange.c22 Flushes the cache lines specified by Address and Length. If Address is not aligned
24 If Address + Length is not aligned on a cache line boundary, then the entire cache
25 line containing Address + Length - 1 is flushed. This function may choose to flush
27 Length is 0, the no cache lines are flushed. Address is returned.
30 If Length is greater than (MAX_ADDRESS - Address + 1), then ASSERT().
37 @param Length The number of bytes to invalidate from the instruction cache.
46 IN UINTN Length
49 ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
50 return InternalFlushCacheRange (Address, Length);

Completed in 67 milliseconds

1234567891011>>