This commit is contained in:
John M. Schanck 2020-09-09 10:03:19 -04:00 зафіксовано Kris Kwiatkowski
джерело 6c4abb23ec
коміт f74c1e6ad2
3 змінених файлів з 3 додано та 3 видалено

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);