func reflect.MakeSlice

6 uses

	reflect (current package)
		value.go#L458: 		slice := MakeSlice(toRType(t.In(n)), m, m)
		value.go#L3133: func MakeSlice(typ Type, len, cap int) Value {

	encoding/asn1
		asn1.go#L646: 	ret = reflect.MakeSlice(sliceType, numElements, numElements)
		asn1.go#L950: 			val.Set(reflect.MakeSlice(sliceType, len(innerBytes), len(innerBytes)))

	encoding/json
		decode.go#L588: 		v.Set(reflect.MakeSlice(v.Type(), 0, 0))

	fmt
		scan.go#L1040: 			v.Set(reflect.MakeSlice(typ, len(str), len(str)))