Lines Matching refs:length
125 length := slice.Len()
126 out := make([]*depSet, length)
127 for i := 0; i < length; i++ {
256 length := slice.Len()
258 for readIndex := 0; readIndex < length; readIndex++ {
288 length := slice.Len()
290 for readIndex := 0; readIndex < length; readIndex++ {
310 length := slice.Len()
311 for i, j := 0, length-1; i < j; i, j = i+1, j-1 {
326 length := slice.Len()
327 if length == 0 {
330 out := reflect.MakeSlice(slice.Type(), length, length)
331 for i := 0; i < length; i++ {
332 out.Index(i).Set(slice.Index(length - 1 - i))
344 length := slice.Len()
345 if length == 0 {
348 out := reflect.MakeSlice(slice.Type(), length, length)