-
Notifications
You must be signed in to change notification settings - Fork 4
/
be_byteshift.h
70 lines (58 loc) · 1.37 KB
/
be_byteshift.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
/*
* Copyright (c) 2017 Red Hat, Inc.
*
* This file is licensed to you under your choice of the GNU Lesser
* General Public License, version 2.1 or any later version (LGPLv2.1 or
* later), or the Apache License 2.0.
*/
#pragma once
#include <endian.h>
#include <stdint.h>
#include <string.h>
static inline void __put_unaligned_be32(uint32_t val, uint8_t *p)
{
*p++ = val >> 24;
*p++ = val >> 16;
*p++ = val >> 8;
*p++ = val;
}
static inline void put_unaligned_be32(uint32_t val, void *p)
{
__put_unaligned_be32(val, p);
}
static inline void __put_unaligned_be16(uint16_t val, uint8_t *p)
{
*p++ = val >> 8;
*p++ = val;
}
static inline void put_unaligned_be16(uint16_t val, void *p)
{
__put_unaligned_be16(val, (uint8_t*)p);
}
static inline uint16_t __get_unaligned_be16(const uint8_t *p)
{
return p[0] << 8 | p[1];
}
static inline uint16_t get_unaligned_be16(const void *p)
{
return __get_unaligned_be16((uint8_t*)p);
}
static inline uint32_t __get_unaligned_be32(const uint8_t *p)
{
return p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
}
static inline uint32_t get_unaligned_be32(const void *p)
{
return __get_unaligned_be32(p);
}
static inline uint64_t get_unaligned_be64(const void *p)
{
uint64_t val;
memcpy(&val, p, sizeof(val));
return be64toh(val);
}
static inline void put_unaligned_be64(uint64_t val, void *p)
{
val = htobe64(val);
memcpy(p, &val, sizeof(val));
}