2015-12-15 16:34:55 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-14 21:51:12 +08:00
|
|
|
// Parity functions
|
2015-12-15 16:34:55 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2019-03-09 15:59:13 +08:00
|
|
|
// all functions defined in header file by purpose. Allows compiler optimizations.
|
2017-07-14 21:51:12 +08:00
|
|
|
|
2015-12-15 16:34:55 +08:00
|
|
|
#ifndef __PARITY_H
|
|
|
|
#define __PARITY_H
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "common.h"
|
2015-12-15 16:34:55 +08:00
|
|
|
|
2021-08-21 23:53:54 +08:00
|
|
|
extern const uint8_t g_OddByteParity[256];
|
2015-12-15 16:34:55 +08:00
|
|
|
|
2021-02-24 06:00:29 +08:00
|
|
|
static inline uint8_t oddparity8(const uint8_t x) {
|
2021-08-21 23:53:54 +08:00
|
|
|
return g_OddByteParity[x];
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
2021-02-24 06:00:29 +08:00
|
|
|
static inline uint8_t evenparity8(const uint8_t x) {
|
2021-08-21 23:53:54 +08:00
|
|
|
return !g_OddByteParity[x];
|
2016-01-17 06:05:21 +08:00
|
|
|
}
|
2015-12-15 16:34:55 +08:00
|
|
|
|
2021-07-14 21:01:01 +08:00
|
|
|
static inline uint8_t evenparity16(uint16_t x) {
|
|
|
|
#if !defined __GNUC__
|
|
|
|
x ^= x >> 8;
|
|
|
|
return evenparity8(x);
|
|
|
|
#else
|
|
|
|
return (__builtin_parity(x) & 0xFF);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint8_t oddparity16(uint16_t x) {
|
|
|
|
#if !defined __GNUC__
|
|
|
|
x ^= x >> 8;
|
|
|
|
return oddparity8(x);
|
|
|
|
#else
|
|
|
|
return !__builtin_parity(x);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-02-24 06:00:29 +08:00
|
|
|
static inline uint8_t evenparity32(uint32_t x) {
|
2017-07-14 21:51:12 +08:00
|
|
|
#if !defined __GNUC__
|
2019-03-10 02:19:50 +08:00
|
|
|
x ^= x >> 16;
|
|
|
|
x ^= x >> 8;
|
|
|
|
return evenparity8(x);
|
2017-07-14 21:51:12 +08:00
|
|
|
#else
|
2021-04-17 19:16:39 +08:00
|
|
|
return (__builtin_parity(x) & 0xFF);
|
2017-07-14 21:51:12 +08:00
|
|
|
#endif
|
2015-12-15 16:34:55 +08:00
|
|
|
}
|
|
|
|
|
2021-02-24 06:00:29 +08:00
|
|
|
static inline uint8_t oddparity32(uint32_t x) {
|
2017-07-14 21:51:12 +08:00
|
|
|
#if !defined __GNUC__
|
2019-03-10 02:19:50 +08:00
|
|
|
x ^= x >> 16;
|
|
|
|
x ^= x >> 8;
|
|
|
|
return oddparity8(x);
|
2017-07-14 21:51:12 +08:00
|
|
|
#else
|
2019-03-10 02:19:50 +08:00
|
|
|
return !__builtin_parity(x);
|
2017-07-14 21:51:12 +08:00
|
|
|
#endif
|
2015-12-15 16:34:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __PARITY_H */
|