Adding upstream version 1.9.14.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ddf4b25f8f
commit
49fcf7364a
88 changed files with 62468 additions and 0 deletions
33
nist/nist.h
Normal file
33
nist/nist.h
Normal file
|
@ -0,0 +1,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);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue