blob: 9e5a19711cf473e29ab28a18bc3d75ed84b7b258 [file] [log] [blame]
Max53777012014-06-04 19:07:41 +02001/*
2 * bitXXgen.h
3 *
4 * Copyright (C) 2014 Max <max.suraev@fairwaves.co>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#pragma once
24
25/*! \brief load unaligned n-byte integer (little-endian encoding) into uintXX_t
26 * \param[in] p Buffer where integer is stored
27 * \param[in] n Number of bytes stored in p
28 * \returns XX bit unsigned integer
29 */
30static inline uintXX_t osmo_loadXXle_ext(const void *p, uint8_t n)
31{
32 uint8_t i;
33 uintXX_t r = 0;
34 const uint8_t *q = (uint8_t *)p;
35 for(i = 0; i < n; r |= ((uintXX_t)q[i] << (8 * i)), i++);
36 return r;
37}
38
39/*! \brief load unaligned n-byte integer (big-endian encoding) into uintXX_t
40 * \param[in] p Buffer where integer is stored
41 * \param[in] n Number of bytes stored in p
42 * \returns XX bit unsigned integer
43 */
44static inline uintXX_t osmo_loadXXbe_ext(const void *p, uint8_t n)
45{
46 uint8_t i;
47 uintXX_t r = 0;
48 const uint8_t *q = (uint8_t *)p;
49 for(i = 0; i < n; r |= ((uintXX_t)q[i] << (XX - 8* (1 + i))), i++);
50 return r;
51}
52
53
54/*! \brief store unaligned n-byte integer (little-endian encoding) into uintXX_t
55 * \param[in] x unsigned XX bit integer
56 * \param[out] p Buffer to store integer
57 * \param[in] n Number of bytes to store
58 */
Sylvain Munaut3baa0d62014-06-16 16:38:31 +020059static inline void osmo_storeXXle_ext(uintXX_t x, void *p, uint8_t n)
Max53777012014-06-04 19:07:41 +020060{
61 uint8_t i;
Sylvain Munaut3baa0d62014-06-16 16:38:31 +020062 uint8_t *q = (uint8_t *)p;
63 for(i = 0; i < n; q[i] = (x >> i * 8) & 0xFF, i++);
Max53777012014-06-04 19:07:41 +020064}
65
66/*! \brief store unaligned n-byte integer (big-endian encoding) into uintXX_t
67 * \param[in] x unsigned XX bit integer
68 * \param[out] p Buffer to store integer
69 * \param[in] n Number of bytes to store
70 */
Sylvain Munaut3baa0d62014-06-16 16:38:31 +020071static inline void osmo_storeXXbe_ext(uintXX_t x, void *p, uint8_t n)
Max53777012014-06-04 19:07:41 +020072{
73 uint8_t i;
Sylvain Munaut3baa0d62014-06-16 16:38:31 +020074 uint8_t *q = (uint8_t *)p;
75 for(i = 0; i < n; q[i] = (x >> ((n - 1 - i) * 8)) & 0xFF, i++);
Max53777012014-06-04 19:07:41 +020076}
77
78
79/* Convenience function for most-used cases */
80
81
82/*! \brief load unaligned XX-bit integer (little-endian encoding) */
83static inline uintXX_t osmo_loadXXle(const void *p)
84{
85 return osmo_loadXXle_ext(p, XX / 8);
86}
87
88/*! \brief load unaligned XX-bit integer (big-endian encoding) */
89static inline uintXX_t osmo_loadXXbe(const void *p)
90{
91 return osmo_loadXXbe_ext(p, XX / 8);
92}
93
94
95/*! \brief store unaligned XX-bit integer (little-endian encoding) */
96static inline void osmo_storeXXle(uintXX_t x, void *p)
97{
Sylvain Munaut5469ef82014-06-16 16:39:08 +020098 osmo_storeXXle_ext(x, p, XX / 8);
Max53777012014-06-04 19:07:41 +020099}
100
101/*! \brief store unaligned XX-bit integer (big-endian encoding) */
102static inline void osmo_storeXXbe(uintXX_t x, void *p)
103{
Sylvain Munaut5469ef82014-06-16 16:39:08 +0200104 osmo_storeXXbe_ext(x, p, XX / 8);
Max53777012014-06-04 19:07:41 +0200105}