]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Ebc/ProcessorBind.h
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Include / Ebc / ProcessorBind.h
index 566c896392e3914300028eea8239394bd5b95726..2ddab9995eb7869607f89559e90632bd15c57bc5 100644 (file)
@@ -24,68 +24,68 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
 ///\r
 /// 1-byte signed value\r
 ///\r
-typedef signed char           INT8;\r
+typedef signed char INT8;\r
 ///\r
 /// Logical Boolean.  1-byte value containing 0 for FALSE or a 1 for TRUE.  Other\r
 /// values are undefined.\r
 ///\r
-typedef unsigned char         BOOLEAN;\r
+typedef unsigned char BOOLEAN;\r
 ///\r
 /// 1-byte unsigned value.\r
 ///\r
-typedef unsigned char         UINT8;\r
+typedef unsigned char UINT8;\r
 ///\r
 /// 1-byte Character.\r
 ///\r
-typedef char                  CHAR8;\r
+typedef char CHAR8;\r
 ///\r
 /// 2-byte signed value.\r
 ///\r
-typedef short                 INT16;\r
+typedef short INT16;\r
 ///\r
 /// 2-byte unsigned value.\r
 ///\r
-typedef unsigned short        UINT16;\r
+typedef unsigned short UINT16;\r
 ///\r
 /// 2-byte Character.  Unless otherwise specified all strings are stored in the\r
 /// UTF-16 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards.\r
 ///\r
-typedef unsigned short        CHAR16;\r
+typedef unsigned short CHAR16;\r
 ///\r
 /// 4-byte signed value.\r
 ///\r
-typedef int                   INT32;\r
+typedef int INT32;\r
 ///\r
 /// 4-byte unsigned value.\r
 ///\r
-typedef unsigned int          UINT32;\r
+typedef unsigned int UINT32;\r
 ///\r
 /// 8-byte signed value.\r
 ///\r
-typedef __int64               INT64;\r
+typedef __int64 INT64;\r
 ///\r
 /// 8-byte unsigned value.\r
 ///\r
-typedef unsigned __int64      UINT64;\r
+typedef unsigned __int64 UINT64;\r
 \r
 ///\r
 /// Signed value of native width.  (4 bytes on supported 32-bit processor instructions,\r
 /// 8 bytes on supported 64-bit processor instructions)\r
 /// "long" type scales to the processor native size with EBC compiler\r
 ///\r
-typedef long                  INTN;\r
+typedef long INTN;\r
 ///\r
 /// The unsigned value of native width.  (4 bytes on supported 32-bit processor instructions;\r
 /// 8 bytes on supported 64-bit processor instructions)\r
 /// "long" type scales to the processor native size with the EBC compiler.\r
 ///\r
-typedef unsigned long         UINTN;\r
+typedef unsigned long UINTN;\r
 \r
 ///\r
 /// A value of native width with the highest bit set.\r
 /// Scalable macro to set the most significant bit in a natural number.\r
 ///\r
-#define MAX_BIT     ((UINTN)((1ULL << (sizeof (INTN) * 8 - 1))))\r
+#define MAX_BIT  ((UINTN)((1ULL << (sizeof (INTN) * 8 - 1))))\r
 ///\r
 /// A value of native width with the two highest bits set.\r
 /// Scalable macro to set the most 2 significant bits in a natural number.\r
@@ -95,12 +95,12 @@ typedef unsigned long         UINTN;
 ///\r
 /// Maximum legal EBC address\r
 ///\r
-#define MAX_ADDRESS   ((UINTN)(~0ULL >> (64 - sizeof (INTN) * 8)))\r
+#define MAX_ADDRESS  ((UINTN)(~0ULL >> (64 - sizeof (INTN) * 8)))\r
 \r
 ///\r
 /// Maximum usable address at boot time (48 bits using 4 KB pages)\r
 ///\r
-#define MAX_ALLOC_ADDRESS   MAX_ADDRESS\r
+#define MAX_ALLOC_ADDRESS  MAX_ADDRESS\r
 \r
 ///\r
 /// Maximum legal EBC INTN and UINTN values.\r
@@ -111,18 +111,18 @@ typedef unsigned long         UINTN;
 ///\r
 /// Minimum legal EBC INTN value.\r
 ///\r
-#define MIN_INTN   (((INTN)-MAX_INTN) - 1)\r
+#define MIN_INTN  (((INTN)-MAX_INTN) - 1)\r
 \r
 ///\r
 /// The stack alignment required for EBC\r
 ///\r
-#define CPU_STACK_ALIGNMENT   sizeof(UINTN)\r
+#define CPU_STACK_ALIGNMENT  sizeof(UINTN)\r
 \r
 ///\r
 /// Page allocation granularity for EBC\r
 ///\r
-#define DEFAULT_PAGE_ALLOCATION_GRANULARITY   (0x1000)\r
-#define RUNTIME_PAGE_ALLOCATION_GRANULARITY   (0x1000)\r
+#define DEFAULT_PAGE_ALLOCATION_GRANULARITY  (0x1000)\r
+#define RUNTIME_PAGE_ALLOCATION_GRANULARITY  (0x1000)\r
 \r
 ///\r
 /// Modifier to ensure that all protocol member functions and EFI intrinsics\r
@@ -130,9 +130,9 @@ typedef unsigned long         UINTN;
 /// EFI intrinsics are required to modify their member functions with EFIAPI.\r
 ///\r
 #ifdef EFIAPI\r
-  ///\r
-  /// If EFIAPI is already defined, then we use that definition.\r
-  ///\r
+///\r
+/// If EFIAPI is already defined, then we use that definition.\r
+///\r
 #else\r
 #define EFIAPI\r
 #endif\r
@@ -146,11 +146,10 @@ typedef unsigned long         UINTN;
 \r
   @return The pointer to the first instruction of a function given a function pointer.\r
 **/\r
-#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)\r
+#define FUNCTION_ENTRY_POINT(FunctionPointer)  (VOID *)(UINTN)(FunctionPointer)\r
 \r
 #ifndef __USER_LABEL_PREFIX__\r
 #define __USER_LABEL_PREFIX__\r
 #endif\r
 \r
 #endif\r
-\r