Home | History | Annotate | Download | only in math

Lines Matching refs:gf2_8

2  * gf2_8.c
49 #include "gf2_8.h"
51 /* gf2_8_shift() moved to gf2_8.h as an inline function */
53 inline gf2_8
54 gf2_8_multiply(gf2_8 x, gf2_8 y) {
55 gf2_8 z = 0;
72 gf2_8
73 gf2_8_compute_inverse(gf2_8 x) {
78 if (gf2_8_multiply((gf2_8) i, x) == 1)
79 return (gf2_8) i;