dmi: check both the AC and ID flags at the same time
[syslinux.git] / libfat / ulint.h
blobc2fadb72fb9a79e6d127236cf660efd3be6a4dfe
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
8 * USA; either version 2 of the License, or (at your option) any later
9 * version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
14 * ulint.h
16 * Basic operations on unaligned, littleendian integers
19 #ifndef ULINT_H
20 #define ULINT_H
22 #include <inttypes.h>
24 /* These are unaligned, littleendian integer types */
26 typedef uint8_t le8_t; /* 8-bit byte */
27 typedef uint8_t le16_t[2]; /* 16-bit word */
28 typedef uint8_t le32_t[4]; /* 32-bit dword */
30 /* Read/write these quantities */
32 static inline unsigned char read8(le8_t * _p)
34 return *_p;
37 static inline void write8(le8_t * _p, uint8_t _v)
39 *_p = _v;
42 #if defined(__i386__) || defined(__x86_64__)
44 /* Littleendian architectures which support unaligned memory accesses */
46 static inline unsigned short read16(le16_t * _p)
48 return *((const uint16_t *)_p);
51 static inline void write16(le16_t * _p, unsigned short _v)
53 *((uint16_t *) _p) = _v;
56 static inline unsigned int read32(le32_t * _p)
58 return *((const uint32_t *)_p);
61 static inline void write32(le32_t * _p, uint32_t _v)
63 *((uint32_t *) _p) = _v;
66 #else
68 /* Generic, mostly portable versions */
70 static inline unsigned short read16(le16_t * _pp)
72 uint8_t *_p = *_pp;
73 uint16_t _v;
75 _v = _p[0];
76 _v |= _p[1] << 8;
77 return _v;
80 static inline void write16(le16_t * _pp, uint16_t _v)
82 uint8_t *_p = *_pp;
84 _p[0] = _v & 0xFF;
85 _p[1] = (_v >> 8) & 0xFF;
88 static inline unsigned int read32(le32_t * _pp)
90 uint8_t *_p = *_pp;
91 uint32_t _v;
93 _v = _p[0];
94 _v |= _p[1] << 8;
95 _v |= _p[2] << 16;
96 _v |= _p[3] << 24;
97 return _v;
100 static inline void write32(le32_t * _pp, uint32_t _v)
102 uint8_t *_p = *_pp;
104 _p[0] = _v & 0xFF;
105 _p[1] = (_v >> 8) & 0xFF;
106 _p[2] = (_v >> 16) & 0xFF;
107 _p[3] = (_v >> 24) & 0xFF;
110 #endif
112 #endif /* ULINT_H */