/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/ |
ScanMem16Wrapper.c | 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem32Wrapper.c | 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem64Wrapper.c | 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem16Wrapper.c | 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem32Wrapper.c | 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem64Wrapper.c | 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/ |
ScanMem16Wrapper.c | 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem32Wrapper.c | 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem64Wrapper.c | 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem16Wrapper.c | 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem32Wrapper.c | 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem64Wrapper.c | 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/ |
ScanMem16Wrapper.c | 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem32Wrapper.c | 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem64Wrapper.c | 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem16Wrapper.c | 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem32Wrapper.c | 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem64Wrapper.c | 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/ |
ScanMem16Wrapper.c | 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem32Wrapper.c | 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
ScanMem64Wrapper.c | 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem16Wrapper.c | 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem32Wrapper.c | 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value); [all...] |
SetMem64Wrapper.c | 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
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
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/ |
ScanMem16Wrapper.c | 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); [all...] |