Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pointerMap (0.14 sec)

  1. src/internal/fmtsort/sort_test.go

    	},
    	{
    		map[bool]string{true: "true", false: "false"},
    		"false:false true:true",
    	},
    	{
    		chanMap(),
    		"CHAN0:0 CHAN1:1 CHAN2:2",
    	},
    	{
    		pointerMap(),
    		"PTR0:0 PTR1:1 PTR2:2",
    	},
    	{
    		unsafePointerMap(),
    		"UNSAFEPTR0:0 UNSAFEPTR1:1 UNSAFEPTR2:2",
    	},
    	{
    		map[toy]string{{7, 2}: "72", {7, 1}: "71", {3, 4}: "34"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    }
    
    // Generates live pointer value maps for arguments and local variables. The
    // this argument and the in arguments are always assumed live. The vars
    // argument is a slice of *Nodes.
    func (lv *liveness) pointerMap(liveout bitvec.BitVec, vars []*ir.Name, args, locals bitvec.BitVec) {
    	var slotsSeen map[int64]*ir.Name
    	checkForDuplicateSlots := base.Debug.MergeLocals != 0
    	if checkForDuplicateSlots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top