| 109 | } |
| 110 | |
| 111 | static inline struct gf128 __pure /* XXX - __pure2 instead */ |
| 112 | gf128_add(struct gf128 a, struct gf128 b) |
| 113 | { |
| 114 | a.v[0] ^= b.v[0]; |
| 115 | a.v[1] ^= b.v[1]; |
| 116 | |
| 117 | return a; |
| 118 | } |
| 119 | |
| 120 | void gf128_genmultable(struct gf128 h, struct gf128table *t); |
| 121 | void gf128_genmultable4(struct gf128 h, struct gf128table4 *t); |
no outgoing calls
no test coverage detected