Searched defs:Length (Results 51 - 75 of 340) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiMemoryLib/
H A DScanMem32Wrapper.c31 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 DScanMem64Wrapper.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().
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 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 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
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 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
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 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
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 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/UefiMemoryLib/
H A DScanMem16Wrapper.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().
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 DScanMem32Wrapper.c31 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 DScanMem64Wrapper.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().
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 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 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
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 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
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 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
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 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/IntelFrameworkPkg/Include/Framework/
H A DHob.h31 UINT64 Length; member in struct:__anon10567
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDriverSupportedEfiVersion.h37 UINT32 Length; member in struct:_EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Hmac/
H A DCryptHmacMd5.c181 UINT32 Length; local
193 HMAC_Final (HmacMd5Context, HmacValue, &Length);
H A DCryptHmacSha1.c181 UINT32 Length; local
193 HMAC_Final (HmacSha1Context, HmacValue, &Length);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Include/Guid/
H A DLegacyDevOrder.h34 /// Length = sizeof (UINT16) + sizeof (Data)
36 UINT16 Length; member in struct:__anon10442
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/DxeCapsuleLib/
H A DDxeCapsuleLib.c60 UINT32 Length; local
79 Length = CapsuleHeader->CapsuleImageSize - CapsuleHeader->HeaderSize;
81 while (Length != 0) {
86 if (FvImage->FvLength > (UINTN) Length) {
134 Length -= (UINT32) FvImage->FvLength;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DMd5.h27 UINT64 Length; member in struct:_MD5_CTX
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiSmbusLibSmbus2Ppi/
H A DPeiSmbusLib.c47 the Length byte, word, or a block of data.
52 SMBUS Command, SMBUS Data Length, and PEC.
53 @param Length Signifies the number of bytes that this operation will
58 length of this buffer is identified by Length.
69 IN UINTN Length,
87 &Length,
94 return Length;
66 InternalSmBusExec( IN EFI_SMBUS_OPERATION SmbusOperation, IN UINTN SmBusAddress, IN UINTN Length, IN OUT VOID *Buffer, OUT RETURN_STATUS *Status OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DSmbiosView.h28 UINT16 Length; // total structure length member in struct:__anon12883
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTSubstringTuple.cpp45 nsTSubstringTuple_CharT::Length() const function in class:nsTSubstringTuple_CharT
49 len = mHead->Length();
51 len = TO_SUBSTRING(mFragA).Length();
53 return len + TO_SUBSTRING(mFragB).Length();
59 * to be equal to or greater than the value returned by the Length()
68 NS_ASSERTION(bufLen >= b.Length(), "buffer too small");
69 PRUint32 headLen = bufLen - b.Length();
78 NS_ASSERTION(a.Length() == headLen, "buffer incorrectly sized");
79 char_traits::copy(buf, a.Data(), a.Length());
82 char_traits::copy(buf + headLen, b.Data(), b.Length());
[all...]

Completed in 180 milliseconds

1234567891011>>