Searched defs:Buffer (Results 51 - 75 of 359) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibSse2/
H A DScanMem32Wrapper.c31 This function searches the target buffer specified by Buffer and Length from the lowest
36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
41 @param Buffer The pointer to the target buffer to scan.
42 @param Length The number of bytes in Buffer to scan.
51 IN CONST VOID *Buffer,
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DScanMem64Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
42 @param Buffer The pointer to the target buffer to scan.
43 @param Length The number of bytes in Buffer to scan.
52 IN CONST VOID *Buffer,
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument
[all...]
H A DScanMem8Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
40 @param Buffer The pointer to the target buffer to scan.
41 @param Length The number of bytes in Buffer to scan.
50 IN CONST VOID *Buffer,
58 ASSERT (Buffer != NULL);
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 an
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 DSetMem16Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument
[all...]
H A DSetMem32Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DSetMem64Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 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().
35 @param Buffer The memory to set.
37 @param Value The value with which to fill Length bytes of Buffer.
39 @return Buffer.
45 OUT VOID *Buffer,
51 return Buffer;
54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
56 return InternalMemSetMem (Buffer, Lengt
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/PeiMemoryLib/
H A DScanMem16Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
42 @param Buffer The pointer to the target buffer to scan.
43 @param Length The number of bytes in Buffer to scan.
52 IN CONST VOID *Buffer,
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 ScanMem16( IN CONST VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument
[all...]
H A DScanMem32Wrapper.c31 This function searches the target buffer specified by Buffer and Length from the lowest
36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
41 @param Buffer The pointer to the target buffer to scan.
42 @param Length The number of bytes in Buffer to scan.
51 IN CONST VOID *Buffer,
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DScanMem64Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
42 @param Buffer The pointer to the target buffer to scan.
43 @param Length The number of bytes in Buffer to scan.
52 IN CONST VOID *Buffer,
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument
[all...]
H A DScanMem8Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
40 @param Buffer The pointer to the target buffer to scan.
41 @param Length The number of bytes in Buffer to scan.
50 IN CONST VOID *Buffer,
58 ASSERT (Buffer != NULL);
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 an
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 DSetMem16Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument
[all...]
H A DSetMem32Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DSetMem64Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 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().
35 @param Buffer The memory to set.
37 @param Value The value with which to fill Length bytes of Buffer.
39 @return Buffer.
45 OUT VOID *Buffer,
51 return Buffer;
54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
56 return InternalMemSetMem (Buffer, Lengt
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...]
H A DMemLib.c50 @param Buffer Memory to set.
54 @return Buffer.
60 OUT VOID *Buffer,
66 Buffer,
70 return Buffer;
59 InternalMemSetMem( OUT VOID *Buffer, IN UINTN Size, IN UINT8 Value ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryLib/
H A DScanMem16Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
42 @param Buffer The pointer to the target buffer to scan.
43 @param Length The number of bytes in Buffer to scan.
52 IN CONST VOID *Buffer,
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 ScanMem16( IN CONST VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument
[all...]
H A DScanMem32Wrapper.c31 This function searches the target buffer specified by Buffer and Length from the lowest
36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
41 @param Buffer The pointer to the target buffer to scan.
42 @param Length The number of bytes in Buffer to scan.
51 IN CONST VOID *Buffer,
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
50 ScanMem32( IN CONST VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DScanMem64Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
42 @param Buffer The pointer to the target buffer to scan.
43 @param Length The number of bytes in Buffer to scan.
52 IN CONST VOID *Buffer,
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 ScanMem64( IN CONST VOID *Buffer, IN UINTN Length, IN UINT64 Value ) argument
[all...]
H A DScanMem8Wrapper.c32 This function searches the target buffer specified by Buffer and Length from the lowest
37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
40 @param Buffer The pointer to the target buffer to scan.
41 @param Length The number of bytes in Buffer to scan.
50 IN CONST VOID *Buffer,
58 ASSERT (Buffer != NULL);
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 an
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 DSetMem16Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem16( OUT VOID *Buffer, IN UINTN Length, IN UINT16 Value ) argument
[all...]
H A DSetMem32Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem32( OUT VOID *Buffer, IN UINTN Length, IN UINT32 Value ) argument
[all...]
H A DSetMem64Wrapper.c30 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
32 bytes of Buffer.
34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
39 @param Buffer The pointer to the target buffer to fill.
40 @param Length The number of bytes in Buffer to fill.
41 @param Value The value with which to fill Length bytes of Buffer.
43 @return Buffer
48 SetMem64( OUT VOID *Buffer, IN UINTN Length, IN UINT64 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().
35 @param Buffer Memory to set.
37 @param Value The value with which to fill Length bytes of Buffer.
39 @return Buffer.
45 OUT VOID *Buffer,
51 return Buffer;
54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
56 return InternalMemSetMem (Buffer, Lengt
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/BaseSerialPortLibNull/
H A DBaseSerialPortLibNull.c42 Writes NumberOfBytes data bytes from Buffer to the serial device.
45 If Buffer is NULL, then ASSERT().
48 @param Buffer The pointer to the data buffer to be written.
59 IN UINT8 *Buffer,
71 specified by Buffer. The number of bytes actually read is returned.
73 If Buffer is NULL, then ASSERT().
76 @param Buffer The pointer to the data buffer to store the data read from the serial device.
86 OUT UINT8 *Buffer,
58 SerialPortWrite( IN UINT8 *Buffer, IN UINTN NumberOfBytes ) argument
85 SerialPortRead( OUT UINT8 *Buffer, IN UINTN NumberOfBytes ) argument

Completed in 76 milliseconds

1234567891011>>