Lines Matching full:append
26 _ = append([]byte(nil), x...)
35 _ = append([]int(nil), x...)
44 _ = append([]*byte(nil), x...)
55 _ = append([]struct24(nil), x...)
66 x = append(x, j)
75 x = append(x, byte(j))
85 x = append(x, s)
97 x = append(x, y...)
113 blackhole = append(blackhole, y...)
131 x = append(x, str...)
148 x = append(x, j)
163 x = append(x, 1, f())
165 t.Error("append failed: ", x[0], x[1])
171 x = append(x[1:], x...) // p > q in runtimeˇappendslice.
209 // BenchmarkAppendInPlace tests the performance of append
231 sByte = append(sByte, 0x77)
240 s1Ptr = append(s1Ptr, 0x77)
249 s2Ptr = append(s2Ptr, [2]uintptr{0x77, 0x88})
258 s3Ptr = append(s3Ptr, [3]uintptr{0x77, 0x88, 0x99})
267 s4Ptr = append(s4Ptr, [4]uintptr{0x77, 0x88, 0x99, 0xAA})
281 sByte = append(sByte, 0x77)
291 s1Ptr = append(s1Ptr, 0x77)
301 s2Ptr = append(s2Ptr, [2]uintptr{0x77, 0x88})
311 s3Ptr = append(s3Ptr, [3]uintptr{0x77, 0x88, 0x99})
321 s4Ptr = append(s4Ptr, [4]uintptr{0x77, 0x88, 0x99, 0xAA})