summaryrefslogtreecommitdiffstats
path: root/nist/nist.h
blob: b5962cd87498988f9adf992055b38065971f293c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * Supply function prototypes for the test suite.
 */
int PackTestF (int *ARRAY, int ArraySize, char *C);
int PackTestL (int *ARRAY, int ArraySize, char *C);

int ApproximateEntropy (int mmin, int mmax, int n, int *ARRAY);
int BlockFrequency (int ArraySize, int m, int *ARRAY);
int CumulativeSums (int n, int *ARRAY);
int DiscreteFourierTransform (int N, int *ARRAY);
int Frequency (int n, int *ARRAY);
int LempelZivCompression (int n, int *ARRAY, int *DATA, int *pt, int *PT);
int LinearComplexity (int M, int N, int *ARRAY, int PT);
int LongestRunOfOnes (int n, int *ARRAY);
int NonOverlappingTemplateMatchings (int m, int n, int *ARRAY);
int OverlappingTemplateMatchings (int m, int n, int *ARRAY);
int RandomExcursions (int n, int *ARRAY);
int RandomExcursionsVariant (int n, int *ARRAY);
int Rank (int n, int *ARRAY);
int Runs (int n, int *ARRAY);
int Serial (int m, int n, int *ARRAY, int PT);
int UNIVERSAL (int n, int *ARRAY);
int Universal (int n, int *ARRAY);

double psi2 (int m, int n, int *ARRAY, int PT);
/**
 * From dfft.c
 */
void __ogg_fdrffti(int n, double *wsave, int *ifac);
void __ogg_fdrfftf(int n,double *r,double *wsave,int *ifac);

char *GetBaseDir(void);