mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-12-05 21:27:13 -06:00
some stuff
This commit is contained in:
@@ -20,6 +20,7 @@
|
|||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#define DONNA_INLINE inline __attribute__((always_inline))
|
#define DONNA_INLINE inline __attribute__((always_inline))
|
||||||
#define DONNA_NOINLINE __attribute__((noinline))
|
#define DONNA_NOINLINE __attribute__((noinline))
|
||||||
|
#undef ALIGN
|
||||||
#define ALIGN(x) __attribute__((aligned(x)))
|
#define ALIGN(x) __attribute__((aligned(x)))
|
||||||
#define ROTL32(a,b) (((a) << (b)) | ((a) >> (32 - b)))
|
#define ROTL32(a,b) (((a) << (b)) | ((a) >> (32 - b)))
|
||||||
#define ROTR32(a,b) (((a) >> (b)) | ((a) << (32 - b)))
|
#define ROTR32(a,b) (((a) >> (b)) | ((a) << (32 - b)))
|
||||||
|
|||||||
1
main.c
1
main.c
@@ -881,7 +881,6 @@ initseed:
|
|||||||
|
|
||||||
DOFILTER(i,pk,{
|
DOFILTER(i,pk,{
|
||||||
if (numwords > 1) {
|
if (numwords > 1) {
|
||||||
//printf("numwords=%d,filter_len=%d\n",numwords,(int)filter_len(i));
|
|
||||||
shiftpk(wpk,pk,filter_len(i));
|
shiftpk(wpk,pk,filter_len(i));
|
||||||
size_t j;
|
size_t j;
|
||||||
for (int w = 1;;) {
|
for (int w = 1;;) {
|
||||||
|
|||||||
Reference in New Issue
Block a user