#include <gpp.h>
Go to the source code of this file.
Defines | 
| #define  | GPPDIV2(a, b, res, bits)   gppDiv_n_32s((a), (b), &res, bits); | 
| #define  | GPPMUL2(a, b, res, bits)   gppMul_n_32s((a), (b), &res, bits); | 
| #define  | GPPMUL3(a, b, c, res, bits) | 
| #define  | GPPMUL4(a, b, c, d, res, bits) | 
Define Documentation
      
        
          | #define GPPDIV2 | 
          ( | 
            | 
          a,  | 
        
        
           | 
           | 
            | 
          b,  | 
        
        
           | 
           | 
            | 
          res,  | 
        
        
           | 
           | 
            | 
          bits  | 
        
        
           | 
          ) | 
           |    gppDiv_n_32s((a), (b), &res, bits); | 
        
      
 
Definition at line 59 of file GPP.h.
 
 
      
        
          | #define GPPMUL2 | 
          ( | 
            | 
          a,  | 
        
        
           | 
           | 
            | 
          b,  | 
        
        
           | 
           | 
            | 
          res,  | 
        
        
           | 
           | 
            | 
          bits  | 
        
        
           | 
          ) | 
           |    gppMul_n_32s((a), (b), &res, bits); | 
        
      
 
Definition at line 47 of file GPP.h.
 
 
      
        
          | #define GPPMUL3 | 
          ( | 
            | 
          a,  | 
        
        
           | 
           | 
            | 
          b,  | 
        
        
           | 
           | 
            | 
          c,  | 
        
        
           | 
           | 
            | 
          res,  | 
        
        
           | 
           | 
            | 
          bits  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:gppMul_n_32s((a), (b), &_tmp1, bits);  \
        gppMul_n_32s(_tmp1, (c), &res, bits);
 
Definition at line 50 of file GPP.h.
 
 
      
        
          | #define GPPMUL4 | 
          ( | 
            | 
          a,  | 
        
        
           | 
           | 
            | 
          b,  | 
        
        
           | 
           | 
            | 
          c,  | 
        
        
           | 
           | 
            | 
          d,  | 
        
        
           | 
           | 
            | 
          res,  | 
        
        
           | 
           | 
            | 
          bits  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:gppMul_n_32s((a), (b), &_tmp1, bits);  \
        gppMul_n_32s(_tmp1, (c), &_tmp2, bits);  \
        gppMul_n_32s(_tmp2, (d), &res, bits);
 
Definition at line 54 of file GPP.h.