Branch data Line data Source code
1 : : // Copyright (c) 2014-2020 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #ifndef BITCOIN_CRYPTO_COMMON_H
6 : : #define BITCOIN_CRYPTO_COMMON_H
7 : :
8 : : #include <compat/endian.h>
9 : :
10 : : #include <cstdint>
11 : : #include <cstring>
12 : :
13 : 10562 : uint16_t static inline ReadLE16(const unsigned char* ptr)
14 : : {
15 : 10562 : uint16_t x;
16 : 10562 : memcpy(&x, ptr, 2);
17 : 10562 : return le16toh_internal(x);
18 : : }
19 : :
20 : 140277131 : uint32_t static inline ReadLE32(const unsigned char* ptr)
21 : : {
22 : 140277131 : uint32_t x;
23 [ + + ]: 133602340 : memcpy(&x, ptr, 4);
24 [ + + ]: 133602340 : return le32toh_internal(x);
25 : : }
26 : :
27 : 302057611 : uint64_t static inline ReadLE64(const unsigned char* ptr)
28 : : {
29 : 302057611 : uint64_t x;
30 [ + + ]: 302057611 : memcpy(&x, ptr, 8);
[ + + + + ]
31 [ + + ]: 302057611 : return le64toh_internal(x);
[ + + + + ]
32 : : }
33 : :
34 : 357 : void static inline WriteLE16(unsigned char* ptr, uint16_t x)
35 : : {
36 : 357 : uint16_t v = htole16_internal(x);
37 : 357 : memcpy(ptr, &v, 2);
38 : 357 : }
39 : :
40 : 304083887 : void static inline WriteLE32(unsigned char* ptr, uint32_t x)
41 : : {
42 : 304083887 : uint32_t v = htole32_internal(x);
43 : 304083887 : memcpy(ptr, &v, 4);
44 : 304083887 : }
45 : :
46 : 16290810 : void static inline WriteLE64(unsigned char* ptr, uint64_t x)
47 : : {
48 : 16290810 : uint64_t v = htole64_internal(x);
49 : 16290810 : memcpy(ptr, &v, 8);
50 : 16290810 : }
51 : :
52 : 2062 : uint16_t static inline ReadBE16(const unsigned char* ptr)
53 : : {
54 : 2062 : uint16_t x;
55 [ # # # # : 2062 : memcpy(&x, ptr, 2);
# # # # ]
56 [ # # # # : 2062 : return be16toh_internal(x);
# # # # #
# # # ]
57 : : }
58 : :
59 : 8080725 : uint32_t static inline ReadBE32(const unsigned char* ptr)
60 : : {
61 : 8080725 : uint32_t x;
62 [ + + # # ]: 2859210 : memcpy(&x, ptr, 4);
[ # # # # ]
[ + - + -
+ - + - ]
63 [ + + # # ]: 2859210 : return be32toh_internal(x);
[ # # # # ]
[ + - + -
+ - + - ]
64 : : }
65 : :
66 : 1399302030 : uint64_t static inline ReadBE64(const unsigned char* ptr)
67 : : {
68 : 1492588832 : uint64_t x;
69 : 93286802 : memcpy(&x, ptr, 8);
70 : 93286802 : return be64toh_internal(x);
71 : : }
72 : :
73 : 0 : void static inline WriteBE16(unsigned char* ptr, uint16_t x)
74 : : {
75 : 0 : uint16_t v = htobe16_internal(x);
76 : 0 : memcpy(ptr, &v, 2);
77 : 0 : }
78 : :
79 : 180281607 : void static inline WriteBE32(unsigned char* ptr, uint32_t x)
80 : : {
81 : 180281607 : uint32_t v = htobe32_internal(x);
82 : 180281607 : memcpy(ptr, &v, 4);
83 : 180281607 : }
84 : :
85 : 839602663 : void static inline WriteBE64(unsigned char* ptr, uint64_t x)
86 : : {
87 : 839602663 : uint64_t v = htobe64_internal(x);
88 : 839602663 : memcpy(ptr, &v, 8);
89 : 839602663 : }
90 : :
91 : : #endif // BITCOIN_CRYPTO_COMMON_H
|