mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-08 05:51:26 +00:00
7371c4a516
cryptographically secure random number generator, if available, instead of the current time. - Changed the random number generator from Lee Killough's algorithm to the SFMT607 variant of the Mersenne Twister. SVN r1507 (trunk)
46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
#ifndef SFMT_PARAMS1279_H
|
|
#define SFMT_PARAMS1279_H
|
|
|
|
#define POS1 7
|
|
#define SL1 14
|
|
#define SL2 3
|
|
#define SR1 5
|
|
#define SR2 1
|
|
#define MSK1 0xf7fefffdU
|
|
#define MSK2 0x7fefcfffU
|
|
#define MSK3 0xaff3ef3fU
|
|
#define MSK4 0xb5ffff7fU
|
|
#define PARITY1 0x00000001U
|
|
#define PARITY2 0x00000000U
|
|
#define PARITY3 0x00000000U
|
|
#define PARITY4 0x20000000U
|
|
|
|
|
|
/* PARAMETERS FOR ALTIVEC */
|
|
#if defined(__APPLE__) /* For OSX */
|
|
#define ALTI_SL1 (vector unsigned int)(SL1, SL1, SL1, SL1)
|
|
#define ALTI_SR1 (vector unsigned int)(SR1, SR1, SR1, SR1)
|
|
#define ALTI_MSK (vector unsigned int)(MSK1, MSK2, MSK3, MSK4)
|
|
#define ALTI_MSK64 \
|
|
(vector unsigned int)(MSK2, MSK1, MSK4, MSK3)
|
|
#define ALTI_SL2_PERM \
|
|
(vector unsigned char)(3,21,21,21,7,0,1,2,11,4,5,6,15,8,9,10)
|
|
#define ALTI_SL2_PERM64 \
|
|
(vector unsigned char)(3,4,5,6,7,29,29,29,11,12,13,14,15,0,1,2)
|
|
#define ALTI_SR2_PERM \
|
|
(vector unsigned char)(7,0,1,2,11,4,5,6,15,8,9,10,17,12,13,14)
|
|
#define ALTI_SR2_PERM64 \
|
|
(vector unsigned char)(15,0,1,2,3,4,5,6,17,8,9,10,11,12,13,14)
|
|
#else /* For OTHER OSs(Linux?) */
|
|
#define ALTI_SL1 {SL1, SL1, SL1, SL1}
|
|
#define ALTI_SR1 {SR1, SR1, SR1, SR1}
|
|
#define ALTI_MSK {MSK1, MSK2, MSK3, MSK4}
|
|
#define ALTI_MSK64 {MSK2, MSK1, MSK4, MSK3}
|
|
#define ALTI_SL2_PERM {3,21,21,21,7,0,1,2,11,4,5,6,15,8,9,10}
|
|
#define ALTI_SL2_PERM64 {3,4,5,6,7,29,29,29,11,12,13,14,15,0,1,2}
|
|
#define ALTI_SR2_PERM {7,0,1,2,11,4,5,6,15,8,9,10,17,12,13,14}
|
|
#define ALTI_SR2_PERM64 {15,0,1,2,3,4,5,6,17,8,9,10,11,12,13,14}
|
|
#endif /* For OSX */
|
|
#define IDSTR "SFMT-1279:7-14-3-5-1:f7fefffd-7fefcfff-aff3ef3f-b5ffff7f"
|
|
|
|
#endif /* SFMT_PARAMS1279_H */
|