Fabcoin Core  0.16.2
P2P Digital Currency
sysendian.h
Go to the documentation of this file.
1 /*-
2  * Copyright 2007-2009 Colin Percival
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * This file was originally written by Colin Percival as part of the Tarsnap
27  * online backup system.
28  */
29 #ifndef _SYSENDIAN_H_
30 #define _SYSENDIAN_H_
31 
32 
33 /* If we don't have be64enc, the <sys/endian.h> we have isn't usable. */
34 #if !HAVE_DECL_BE64ENC
35 #undef HAVE_SYS_ENDIAN_H
36 #endif
37 
38 #ifdef HAVE_SYS_ENDIAN_H
39 
40 #include <sys/endian.h>
41 
42 #else
43 
44 #include <stdint.h>
45 #ifdef _MSC_VER
46  #define INLINE __inline
47 #else
48  #define INLINE inline
49 #endif
50 
51 static INLINE uint32_t
52 be32dec(const void *pp)
53 {
54  const uint8_t *p = (uint8_t const *)pp;
55 
56  return ((uint32_t)(p[3]) + ((uint32_t)(p[2]) << 8) +
57  ((uint32_t)(p[1]) << 16) + ((uint32_t)(p[0]) << 24));
58 }
59 
60 static INLINE void
61 be32enc(void *pp, uint32_t x)
62 {
63  uint8_t * p = (uint8_t *)pp;
64 
65  p[3] = x & 0xff;
66  p[2] = (x >> 8) & 0xff;
67  p[1] = (x >> 16) & 0xff;
68  p[0] = (x >> 24) & 0xff;
69 }
70 
71 static INLINE uint64_t
72 be64dec(const void *pp)
73 {
74  const uint8_t *p = (uint8_t const *)pp;
75 
76  return ((uint64_t)(p[7]) + ((uint64_t)(p[6]) << 8) +
77  ((uint64_t)(p[5]) << 16) + ((uint64_t)(p[4]) << 24) +
78  ((uint64_t)(p[3]) << 32) + ((uint64_t)(p[2]) << 40) +
79  ((uint64_t)(p[1]) << 48) + ((uint64_t)(p[0]) << 56));
80 }
81 
82 static INLINE void
83 be64enc(void *pp, uint64_t x)
84 {
85  uint8_t * p = (uint8_t *)pp;
86 
87  p[7] = x & 0xff;
88  p[6] = (x >> 8) & 0xff;
89  p[5] = (x >> 16) & 0xff;
90  p[4] = (x >> 24) & 0xff;
91  p[3] = (x >> 32) & 0xff;
92  p[2] = (x >> 40) & 0xff;
93  p[1] = (x >> 48) & 0xff;
94  p[0] = (x >> 56) & 0xff;
95 }
96 
97 static INLINE uint32_t
98 le32dec(const void *pp)
99 {
100  const uint8_t *p = (uint8_t const *)pp;
101 
102  return ((uint32_t)(p[0]) + ((uint32_t)(p[1]) << 8) +
103  ((uint32_t)(p[2]) << 16) + ((uint32_t)(p[3]) << 24));
104 }
105 
106 static INLINE void
107 le32enc(void *pp, uint32_t x)
108 {
109  uint8_t * p = (uint8_t *)pp;
110 
111  p[0] = x & 0xff;
112  p[1] = (x >> 8) & 0xff;
113  p[2] = (x >> 16) & 0xff;
114  p[3] = (x >> 24) & 0xff;
115 }
116 
117 static INLINE uint64_t
118 le64dec(const void *pp)
119 {
120  const uint8_t *p = (uint8_t const *)pp;
121 
122  return ((uint64_t)(p[0]) + ((uint64_t)(p[1]) << 8) +
123  ((uint64_t)(p[2]) << 16) + ((uint64_t)(p[3]) << 24) +
124  ((uint64_t)(p[4]) << 32) + ((uint64_t)(p[5]) << 40) +
125  ((uint64_t)(p[6]) << 48) + ((uint64_t)(p[7]) << 56));
126 }
127 
128 static INLINE void
129 le64enc(void *pp, uint64_t x)
130 {
131  uint8_t * p = (uint8_t *)pp;
132 
133  p[0] = x & 0xff;
134  p[1] = (x >> 8) & 0xff;
135  p[2] = (x >> 16) & 0xff;
136  p[3] = (x >> 24) & 0xff;
137  p[4] = (x >> 32) & 0xff;
138  p[5] = (x >> 40) & 0xff;
139  p[6] = (x >> 48) & 0xff;
140  p[7] = (x >> 56) & 0xff;
141 }
142 #endif /* !HAVE_SYS_ENDIAN_H */
143 
144 #endif /* !_SYSENDIAN_H_ */
#define INLINE
Definition: sysendian.h:48
#define x(i)