]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/Aarch64/machine/int_mwgwtypes.h
StdLib: Add support for AArch64
[mirror_edk2.git] / StdLib / Include / Aarch64 / machine / int_mwgwtypes.h
diff --git a/StdLib/Include/Aarch64/machine/int_mwgwtypes.h b/StdLib/Include/Aarch64/machine/int_mwgwtypes.h
new file mode 100644 (file)
index 0000000..d3a1784
--- /dev/null
@@ -0,0 +1,82 @@
+/** @file\r
+    Minimum and Greatest Width Integer types.\r
+\r
+    Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
+    This program and the accompanying materials are licensed and made available under\r
+    the terms and conditions of the BSD License that accompanies this distribution.\r
+    The full text of the license may be found at\r
+    http://opensource.org/licenses/bsd-license.php.\r
+\r
+    THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+    WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+    Portions Copyright (c) 2001 The NetBSD Foundation, Inc.\r
+    All rights reserved.\r
+\r
+    This code is derived from software contributed to The NetBSD Foundation\r
+    by Klaus Klein.\r
+\r
+    Redistribution and use in source and binary forms, with or without\r
+    modification, are permitted provided that the following conditions\r
+    are met:\r
+      1.  Redistributions of source code must retain the above copyright\r
+          notice, this list of conditions and the following disclaimer.\r
+      2.  Redistributions in binary form must reproduce the above copyright\r
+          notice, this list of conditions and the following disclaimer in the\r
+          documentation and/or other materials provided with the distribution.\r
+      3.  All advertising materials mentioning features or use of this software\r
+          must display the following acknowledgement:\r
+            This product includes software developed by the NetBSD\r
+            Foundation, Inc. and its contributors.\r
+      4.  Neither the name of The NetBSD Foundation nor the names of its\r
+          contributors may be used to endorse or promote products derived\r
+          from this software without specific prior written permission.\r
+\r
+    THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
+    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
+    TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
+    PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
+    BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
+    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
+    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
+    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
+    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
+    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
+    POSSIBILITY OF SUCH DAMAGE.\r
+\r
+    NetBSD: int_mwgwtypes.h,v 1.5 2005/12/24 20:06:47 perry Exp\r
+**/\r
+#ifndef _AARCH64_INT_MWGWTYPES_H_\r
+#define _AARCH64_INT_MWGWTYPES_H_\r
+\r
+/*\r
+ * 7.18.1 Integer types\r
+ */\r
+\r
+/* 7.18.1.2 Minimum-width integer types */\r
+\r
+typedef CHAR8     int_least8_t;\r
+typedef UINT8     uint_least8_t;\r
+typedef INT16     int_least16_t;\r
+typedef UINT16    uint_least16_t;\r
+typedef INT32     int_least32_t;\r
+typedef UINT32    uint_least32_t;\r
+typedef INT64     int_least64_t;\r
+typedef UINT64    uint_least64_t;\r
+\r
+/* 7.18.1.3 Fastest minimum-width integer types */\r
+typedef INT32     int_fast8_t;\r
+typedef UINT32    uint_fast8_t;\r
+typedef INT32     int_fast16_t;\r
+typedef UINT32    uint_fast16_t;\r
+typedef INT32     int_fast32_t;\r
+typedef UINT32    uint_fast32_t;\r
+typedef INT64     int_fast64_t;\r
+typedef UINT64    uint_fast64_t;\r
+\r
+/* 7.18.1.5 Greatest-width integer types */\r
+\r
+typedef INT64     intmax_t;\r
+typedef UINT64    uintmax_t;\r
+\r
+#endif /* !_AARCH64_INT_MWGWTYPES_H_ */\r