Go to the documentation of this file. 41 #ifndef __GPP_HEADERFILE__ 42 #define __GPP_HEADERFILE__ 47 #define GPPMUL2(a,b, res, bits) \ 48 gppMul_n_32s((a), (b), &res, bits); 50 #define GPPMUL3(a,b,c, res, bits) \ 51 gppMul_n_32s((a), (b), &_tmp1, bits); \ 52 gppMul_n_32s(_tmp1, (c), &res, bits); 54 #define GPPMUL4(a,b,c,d, res, bits) \ 55 gppMul_n_32s((a), (b), &_tmp1, bits); \ 56 gppMul_n_32s(_tmp1, (c), &_tmp2, bits); \ 57 gppMul_n_32s(_tmp2, (d), &res, bits); 59 #define GPPDIV2(a,b, res, bits) \ 60 gppDiv_n_32s((a), (b), &res, bits); 63 #endif //__GPP_HEADERFILE__