Home | History | Annotate | Download | only in ken

Lines Matching refs:testi

16 testi(i int, t1,t2,t3 int) {
48 testi( int(1234) << 0, 0,0,0);
49 testi( int(1234) >> 0, 0,0,1);
50 testi( int(1234) << 5, 0,1,0);
51 testi( int(1234) >> 5, 0,1,1);
53 testi(int(-1234) << 0, 1,0,0);
54 testi(int(-1234) >> 0, 1,0,1);
55 testi(int(-1234) << 5, 1,1,0);
56 testi(int(-1234) >> 5, 1,1,1);
86 case 0: testi(i,t1,t2,t3);
87 case 1: testi(i,t1,t2,t3);