Lines Matching full:limits

11 	for i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
19 for i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
28 for i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
37 for _, i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
45 for i := 1; i < len(a); i++ { // ERROR "Induction variable: limits \[1,\?\), increment 1$"
53 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
61 for i := -10; i < len(a); i += 2 { // ERROR "Induction variable: limits \[-10,8\], increment 2$"
69 …for i := int32(-10); i < int32(len(a)); i += 2 { // ERROR "Induction variable: limits \[-10,8\], i…
77 …for i := int16(-10); i < int16(len(a)); i += 2 { // ERROR "Induction variable: limits \[-10,8\], i…
85 …for i := int8(-10); i < int8(len(a)); i += 2 { // ERROR "Induction variable: limits \[-10,8\], inc…
92 for i := range a { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
100 for i := 0; i < len(a); i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
108 for i := 0; len(a) > i; i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
116 for i := len(a); i > 0; i-- { // ERROR "Induction variable: limits \(0,\?\], increment 1$"
124 for i := len(a); 0 < i; i-- { // ERROR "Induction variable: limits \(0,\?\], increment 1$"
132 for i := len(a) - 1; i >= 0; i-- { // ERROR "Induction variable: limits \[0,\?\], increment 1$"
140 for i := len(a) - 1; 0 <= i; i-- { // ERROR "Induction variable: limits \[0,\?\], increment 1$"
149 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
158 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
170 for i := 0; i < len(a); i += 5 { // ERROR "Induction variable: limits \[0,20\], increment 5$"
179 for i := 0; i < len(a); i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
185 for i := 0; i < len(a); i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
192 for i := range c { // ERROR "Induction variable: limits \[0,128\), increment 1$"
198 for i := range a[:128] { // ERROR "Induction variable: limits \[0,128\), increment 1$"
204 for i := 10; i < 90; i++ { // ERROR "Induction variable: limits \[10,90\), increment 1$"
221 for i := 10; i < 90; i++ { // ERROR "Induction variable: limits \[10,90\), increment 1$"
240 for i := 10; i < 90; i++ { // ERROR "Induction variable: limits \[10,90\), increment 1$"
258 for i := -10; i < 90; i++ { // ERROR "Induction variable: limits \[-10,90\), increment 1$"
271 for i := 89; i > -11; i-- { // ERROR "Induction variable: limits \(-11,89\], increment 1$"
284 for i := 89; i >= -10; i-- { // ERROR "Induction variable: limits \[-10,89\], increment 1$"
298 …for i := min; i < min+50; i++ { // ERROR "Induction variable: limits \[-9223372036854775808,-92233…
306 …for i := max - 50; i < max; i++ { // ERROR "Induction variable: limits \[9223372036854775757,92233…
314 for i := 0; i < 100; i++ { // ERROR "Induction variable: limits \[0,100\), increment 1$"
315 for j := 0; j < i; j++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
325 for i := 0; i < 100; i++ { // ERROR "Induction variable: limits \[0,100\), increment 1$"
326 for j := 0; i > j; j++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
336 for i := 0; i <= 99; i++ { // ERROR "Induction variable: limits \[0,99\], increment 1$"
347 …xInt64 - 9); i < math.MaxInt64-2; i += 4 { // ERROR "Induction variable: limits \[9223372036854775…
350 …xInt64 - 8); i < math.MaxInt64-2; i += 4 { // ERROR "Induction variable: limits \[9223372036854775…
356 …xInt64 - 6); i < math.MaxInt64-2; i += 4 { // ERROR "Induction variable: limits \[9223372036854775…
359 …Int64 - 9); i <= math.MaxInt64-2; i += 4 { // ERROR "Induction variable: limits \[9223372036854775…
362 …Int64 - 8); i <= math.MaxInt64-2; i += 4 { // ERROR "Induction variable: limits \[9223372036854775…
374 …nInt64 + 9); i > math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-922337203685477…
377 …nInt64 + 8); i > math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-922337203685477…
383 …nInt64 + 6); i > math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-922337203685477…
386 …Int64 + 9); i >= math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-922337203685477…
389 …Int64 + 8); i >= math.MinInt64+2; i -= 4 { // ERROR "Induction variable: limits \[-922337203685477…
410 …for i := b; i < a; i += z { // ERROR "Induction variable: limits \[-1547,9223372036854772720\], in…
416 …for i := int64(0); i < int64(len(a)); i++ { // ERROR "Induction variable: limits \[0,\?\), increme…
419 …for i := int64(0); i < int64(len(a))-31337; i++ { // ERROR "Induction variable: limits \[0,\?\), i…
422 …for i := int64(0); i < int64(len(a))+int64(-1<<63); i++ { // ERROR "Induction variable: limits \[0…
426 …for i := int64(0); i < j+123+int64(-1<<63); i++ { // ERROR "Induction variable: limits \[0,\?\), i…
429 …for i := int64(0); i < j+122+int64(-1<<63); i++ { // ERROR "Induction variable: limits \[0,\?\), i…
438 …for i := min; i < max; i++ { // ERROR "Induction variable: limits \[-9223372036854775808,922337203…
455 for i := 0; i <= 8; i += 3 { // ERROR "Induction variable: limits \[0,6\], increment 3"
463 for i := 0; i < 9; i += 3 { // ERROR "Induction variable: limits \[0,6\], increment 3"