Home | History | Annotate | Download | only in ken

Lines Matching refs:t1

16 testi(i int, t1,t2,t3 int) {
17 n := ((t1*3) + t2)*2 + t3;
19 print("itest ", t1,t2,t3,pass,
25 index(t1,t2,t3 int) int {
26 return ((t1*3) + t2)*2 + t3;
30 testu(u uint, t1,t2,t3 int) {
31 n := index(t1,t2,t3);
33 print("utest ", t1,t2,t3,pass,
68 for t1:=0; t1<3; t1++ { // +int, -int, uint
71 switch t1 {
85 switch t1 {
86 case 0: testi(i,t1,t2,t3);
87 case 1: testi(i,t1,t2,t3);
88 case 2: testu(u,t1,t2,t3);