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
|
|
|
|
|
2017-01-25 07:35:11 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-12-15 16:34:55 +08:00
|
|
|
#include <stdint.h>
|
2017-07-14 21:51:12 +08:00
|
|
|
#include <stdbool.h>
|
2015-12-15 16:34:55 +08:00
|
|
|
|
|
|
|
extern const uint8_t OddByteParity[256];
|
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
static inline bool oddparity8(const uint8_t x) {
|
2019-03-10 02:19:50 +08:00
|
|
|
return OddByteParity[x];
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
static inline bool evenparity8(const uint8_t x) {
|
2019-03-10 02:19:50 +08:00
|
|
|
return !OddByteParity[x];
|
2016-01-17 06:05:21 +08:00
|
|
|
}
|
2015-12-15 16:34:55 +08:00
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
static inline bool 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
|
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
|
|
|
}
|
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
static inline bool 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
|
|
|
}
|
|
|
|
|
2017-01-25 07:35:11 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2015-12-15 16:34:55 +08:00
|
|
|
|
|
|
|
#endif /* __PARITY_H */
|