Home | History | Annotate | Download | only in etc

Lines Matching refs:cir

6 unsigned cir[8][8] = { 
48 cir[y][x] = cir[y-1][(x-1)&7];
55 for (x = 0; x < 8; x++) printf("%2d ", cir[y][x]);
64 gf_mul(sbox(x), cir[y][0]),
65 gf_mul(sbox(x), cir[y][1]),
66 gf_mul(sbox(x), cir[y][2]),
67 gf_mul(sbox(x), cir[y][3]),
68 gf_mul(sbox(x), cir[y][4]),
69 gf_mul(sbox(x), cir[y][5]),
70 gf_mul(sbox(x), cir[y][6]),
71 gf_mul(sbox(x), cir[y][7]));