forked from dogecoinfoundation/libdogecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.h
118 lines (98 loc) · 2.79 KB
/
common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Copyright (c) 2014 The Bitcoin Core developers
// Copyright (c) 2024 bluezr
// Copyright (c) 2024 The Dogecoin Foundation
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef __LIBDOGECOIN_COMMON_H__
#define __LIBDOGECOIN_COMMON_H__
#include <dogecoin/dogecoin.h>
LIBDOGECOIN_BEGIN_DECL
#if defined(HAVE_CONFIG_H)
#include "libdogecoin-config.h"
#endif
#include <stdint.h>
#include <string.h>
#include <dogecoin/portable_endian.h>
#include <dogecoin/utils.h>
LIBDOGECOIN_API static inline uint16_t read_le16(const unsigned char* ptr)
{
uint16_t x;
memcpy_safe((char*)&x, ptr, 2);
return le16toh(x);
}
LIBDOGECOIN_API static inline uint32_t read_le32(const unsigned char* ptr)
{
uint32_t x;
memcpy_safe((char*)&x, ptr, 4);
return le32toh(x);
}
LIBDOGECOIN_API static inline uint64_t read_le64(const unsigned char* ptr)
{
uint64_t x;
memcpy_safe((char*)&x, ptr, 8);
return le64toh(x);
}
LIBDOGECOIN_API static inline void write_le8(unsigned char* ptr, uint8_t x)
{
uint8_t v = htole8(x);
memcpy_safe(ptr, (char*)&v, 1);
}
LIBDOGECOIN_API static inline void write_le16(unsigned char* ptr, uint16_t x)
{
uint16_t v = htole16(x);
memcpy_safe(ptr, (char*)&v, 2);
}
LIBDOGECOIN_API static inline void write_le32(unsigned char* ptr, uint32_t x)
{
uint32_t v = htole32(x);
memcpy_safe(ptr, (char*)&v, 4);
}
LIBDOGECOIN_API static inline void write_le64(unsigned char* ptr, uint64_t x)
{
uint64_t v = htole64(x);
memcpy_safe(ptr, (char*)&v, 8);
}
LIBDOGECOIN_API static inline uint32_t read_be32(const unsigned char* ptr)
{
uint32_t x;
memcpy_safe((char*)&x, ptr, 4);
return be32toh(x);
}
LIBDOGECOIN_API static inline uint64_t read_be64(const unsigned char* ptr)
{
uint64_t x;
memcpy_safe((char*)&x, ptr, 8);
return be64toh(x);
}
LIBDOGECOIN_API static inline void write_be32(unsigned char* ptr, uint32_t x)
{
uint32_t v = htobe32(x);
memcpy_safe(ptr, (char*)&v, 4);
}
LIBDOGECOIN_API static inline void write_be64(unsigned char* ptr, uint64_t x)
{
uint64_t v = htobe64(x);
memcpy_safe(ptr, (char*)&v, 8);
}
/** Return the smallest number n such that (x >> n) == 0 (or 64 if the highest bit in x is set. */
LIBDOGECOIN_API static inline uint64_t count_bits(uint64_t x)
{
#if HAVE_BUILTIN_CLZL
if (sizeof(unsigned long) >= sizeof(uint64_t)) {
return x ? 8 * sizeof(unsigned long) - __builtin_clzl(x) : 0;
}
#endif
#if HAVE_BUILTIN_CLZLL
if (sizeof(unsigned long long) >= sizeof(uint64_t)) {
return x ? 8 * sizeof(unsigned long long) - __builtin_clzll(x) : 0;
}
#endif
int ret = 0;
while (x) {
x >>= 1;
++ret;
}
return ret;
}
LIBDOGECOIN_END_DECL
#endif // __LIBDOGECOIN_COMMON_H__