Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BlockSlice (0.36 sec)

  1. src/cmd/cover/cover.go

    // Sort interface for []block1; used for self-check in addVariables.
    
    type block1 struct {
    	Block
    	index int
    }
    
    type blockSlice []block1
    
    func (b blockSlice) Len() int           { return len(b) }
    func (b blockSlice) Less(i, j int) bool { return b[i].startByte < b[j].startByte }
    func (b blockSlice) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    
    // offset translates a token position into a 0-indexed byte offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/allocators.go

    			mak:      "newSparseMapPos(%s)",
    			resize:   "", // larger-sized sparse maps are ok
    			clear:    "%s.clear()",
    			minLog:   5,
    			maxLog:   32,
    		},
    	}
    	deriveds := []derived{
    		{
    			name: "BlockSlice",
    			typ:  "[]*Block",
    			base: "ValueSlice",
    		},
    		{
    			name: "IntSlice",
    			typ:  "[]int",
    			base: "Int64Slice",
    		},
    		{
    			name: "Int32Slice",
    			typ:  "[]int32",
    			base: "Int64Slice",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top