Searched refs:ASSERT (Results 1 - 25 of 825) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DSetJump.c2 Internal ASSERT () functions for SetJump.
21 Worker function that checks ASSERT condition for JumpBuffer
23 Checks ASSERT condition for JumpBuffer.
25 If JumpBuffer is NULL, then ASSERT().
26 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
37 ASSERT (JumpBuffer != NULL);
39 ASSERT (((UINTN)JumpBuffer & (BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT - 1)) == 0);
H A DX86FxSave.c27 If Buffer is NULL, then ASSERT().
28 If Buffer is not aligned on a 16-byte boundary, then ASSERT().
39 ASSERT (Buffer != NULL);
40 ASSERT (0 == ((UINTN)Buffer & 0xf));
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/BaseResetSystemLibNull/
H A DBaseResetSystemLibNull.c2 Null Reset System Library instance that only generates ASSERT() conditions.
34 ASSERT (FALSE);
49 ASSERT (FALSE);
64 ASSERT (FALSE);
78 ASSERT (FALSE);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/
H A DCompareMemWrapper.c35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
60 ASSERT (DestinationBuffer != NULL);
61 ASSERT (SourceBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
H A DScanMem16Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 16-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem32Wrapper.c36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, 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().
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem64Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem16Wrapper.c34 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().
37 If Length is not aligned on a 16-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem32Wrapper.c34 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().
37 If Length is not aligned on a 32-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem64Wrapper.c34 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().
37 If Length is not aligned on a 64-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibMmx/
H A DCompareMemWrapper.c35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
60 ASSERT (DestinationBuffer != NULL);
61 ASSERT (SourceBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
H A DScanMem16Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 16-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem32Wrapper.c36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, 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().
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem64Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem16Wrapper.c34 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().
37 If Length is not aligned on a 16-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem32Wrapper.c34 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().
37 If Length is not aligned on a 32-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem64Wrapper.c34 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().
37 If Length is not aligned on a 64-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptDxe/
H A DCompareMemWrapper.c35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
60 ASSERT (DestinationBuffer != NULL);
61 ASSERT (SourceBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
H A DScanMem16Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 16-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem32Wrapper.c36 If Length > 0 and Buffer is NULL, then ASSERT().
37 If Buffer is not aligned on a 32-bit boundary, 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().
60 ASSERT (Buffer != NULL);
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DScanMem64Wrapper.c37 If Length > 0 and Buffer is NULL, then ASSERT().
38 If Buffer is not aligned on a 64-bit boundary, 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().
61 ASSERT (Buffer != NULL);
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem16Wrapper.c34 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().
37 If Length is not aligned on a 16-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem32Wrapper.c34 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().
37 If Length is not aligned on a 32-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
H A DSetMem64Wrapper.c34 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().
37 If Length is not aligned on a 64-bit boundary, then ASSERT().
58 ASSERT (Buffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptPei/
H A DCompareMemWrapper.c35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
60 ASSERT (DestinationBuffer != NULL);
61 ASSERT (SourceBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));

Completed in 1580 milliseconds

1234567891011>>