basix_doc 0.1
|
#include <operators.hpp>
Definition at line 401 of file operators.hpp.
Definition at line 402 of file operators.hpp.
Definition at line 403 of file operators.hpp.
Definition at line 417 of file operators.hpp.
References mmx::derive().
static generic name | ( | ) | [inline, static] |
static C neutral | ( | ) | [inline, static] |
Definition at line 407 of file operators.hpp.
{ return 0; }
Definition at line 411 of file operators.hpp.
{ return x + y; }
Definition at line 420 of file operators.hpp.
References mmx::C.
{ C z; add_mod (z, x, y, p); return z; }
Definition at line 423 of file operators.hpp.
References mmx::C.
{ C z; add_mod (z, x, y, p, carry); return z; }
static generic set_name | ( | ) | [inline, static] |
Definition at line 405 of file operators.hpp.
References mmx::GEN_PLUS_ASSIGN.
{ return GEN_PLUS_ASSIGN; }
static void set_neutral | ( | R & | r | ) | [inline, static] |
static void set_op | ( | R & | x, |
const C1 & | y1, | ||
const C2 & | y2 | ||
) | [inline, static] |
static void set_op | ( | R & | x, |
const C & | y | ||
) | [inline, static] |
Definition at line 413 of file operators.hpp.
{ x += y; }
Definition at line 426 of file operators.hpp.
{ add_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 435 of file operators.hpp.
{ add_mod (x, y1, y2, p, carry); }
Definition at line 432 of file operators.hpp.
{ add_mod (x, y1, y2, p); }
Definition at line 429 of file operators.hpp.
{ add_mod (x, y, p, carry); }