basix_doc 0.1
|
#include <operators.hpp>
Definition at line 457 of file operators.hpp.
Definition at line 458 of file operators.hpp.
Definition at line 459 of file operators.hpp.
Definition at line 469 of file operators.hpp.
References mmx::derive().
static generic name | ( | ) | [inline, static] |
Definition at line 463 of file operators.hpp.
{ return x - y; }
Definition at line 475 of file operators.hpp.
References mmx::C.
{ C z; sub_mod (z, x, y, p, carry); return z; }
Definition at line 472 of file operators.hpp.
References mmx::C.
{ C z; sub_mod (z, x, y, p); return z; }
static generic set_name | ( | ) | [inline, static] |
Definition at line 461 of file operators.hpp.
References mmx::GEN_MINUS_ASSIGN.
{ return GEN_MINUS_ASSIGN; }
static void set_op | ( | R & | x, |
const C & | y | ||
) | [inline, static] |
Definition at line 465 of file operators.hpp.
{ x -= y; }
static void set_op | ( | R & | x, |
const C1 & | y1, | ||
const C2 & | y2 | ||
) | [inline, static] |
Definition at line 484 of file operators.hpp.
{ sub_mod (x, y1, y2, p); }
Definition at line 481 of file operators.hpp.
{ sub_mod (x, y, p, carry); }
Definition at line 478 of file operators.hpp.
{ sub_mod (x, y, p); }
static void set_op_mod | ( | C & | x, |
const C & | y1, | ||
const C & | y2, | ||
const M & | p, | ||
C & | carry | ||
) | [inline, static] |
Definition at line 487 of file operators.hpp.
{ sub_mod (x, y1, y2, p, carry); }