mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
31 lines
735 B
PHP
31 lines
735 B
PHP
|
#ifndef PQCLEAN_DILITHIUM2_AVX2_CDECL
|
||
|
#define PQCLEAN_DILITHIUM2_AVX2_CDECL
|
||
|
|
||
|
#define _16XQ 0
|
||
|
#define _16XQINV 16
|
||
|
#define _16XV 32
|
||
|
#define _16XFLO 48
|
||
|
#define _16XFHI 64
|
||
|
#define _16XMONTSQLO 80
|
||
|
#define _16XMONTSQHI 96
|
||
|
#define _16XMASK 112
|
||
|
#define _ZETAS_EXP 128
|
||
|
#define _ZETAS_INV_EXP 528
|
||
|
|
||
|
|
||
|
/* The C ABI on MacOS exports all symbols with a leading
|
||
|
* underscore. This means that any symbols we refer to from
|
||
|
* C files (functions) can't be found, and all symbols we
|
||
|
* refer to from ASM also can't be found (nttconsts.c).
|
||
|
*
|
||
|
* This define helps us get around this
|
||
|
*/
|
||
|
|
||
|
#if defined(__WIN32__) || defined(__APPLE__)
|
||
|
#define cdecl(s) _##s
|
||
|
#else
|
||
|
#define cdecl(s) s
|
||
|
#endif
|
||
|
|
||
|
#endif
|