Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:maxI

36 	const maxI = 500
49 for i := 0; i < maxI; i++ { // ERROR "moved to heap: i$"
62 if len(m) != maxI {
63 panic(fmt.Sprintf("iter %d: maxI = %d, len(m) = %d", iter, maxI, len(m))) // ERROR "iter escapes to heap$" "len\(m\) escapes to heap$" "maxI escapes to heap$" "test1 ... argument does not escape$"
69 const maxI = 500
73 for i := 0; i < maxI; i++ {
86 if len(m) != maxI {
87 panic(fmt.Sprintf("iter %d: maxI = %d, len(m) = %d", iter, maxI, len(m))) // ERROR "iter escapes to heap$" "len\(m\) escapes to heap$" "maxI escapes to heap$" "test2 ... argument does not escape$"
93 const maxI = 500
98 for i := 0; i < maxI; i++ {
112 if *m != maxI {
113 panic(fmt.Sprintf("iter %d: maxI = %d, *m = %d", iter, maxI, *m)) // ERROR "\*m escapes to heap$" "iter escapes to heap$" "maxI escapes to heap$" "test3 ... argument does not escape$"
119 const maxI = 500
124 for i := 0; i < maxI; i++ {
138 if *m != maxI {
139 panic(fmt.Sprintf("iter %d: maxI = %d, *m = %d", iter, maxI, *m)) // ERROR "\*m escapes to heap$" "iter escapes to heap$" "maxI escapes to heap$" "test4 ... argument does not escape$"
158 const maxI = 500
163 for i := 0; i < maxI; i++ {
169 if *m != maxI {
170 panic(fmt.Sprintf("iter %d: maxI = %d, *m = %d", iter, maxI, *m)) // ERROR "\*m escapes to heap$" "iter escapes to heap$" "maxI escapes to heap$" "test5 ... argument does not escape$"
176 const maxI = 500
181 for i := 0; i < maxI; i++ {
187 if *m != maxI {
188 panic(fmt.Sprintf("iter %d: maxI = %d, *m = %d", iter, maxI, *m)) // ERROR "\*m escapes to heap$" "iter escapes to heap$" "maxI escapes to heap$" "test6 ... argument does not escape$"