Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadBlock (0.13 sec)

  1. src/cmd/compile/internal/ssa/memcombine.go

    	loads := make([]*Value, n, 8)
    	for i := int64(0); i < n; i++ {
    		loads[i] = r[i].load
    	}
    	loadBlock := mergePoint(root.Block, loads...)
    	if loadBlock == nil {
    		return false
    	}
    	// Find a source position to use.
    	pos := src.NoXPos
    	for _, load := range loads {
    		if load.Block == loadBlock {
    			pos = load.Pos
    			break
    		}
    	}
    	if pos == src.NoXPos {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/encoding/gob/debug.go

    //
    //	uint(lengthOfMessage) Message
    func (deb *debugger) delimitedMessage(indent tab) bool {
    	for {
    		n := deb.loadBlock(true)
    		if n < 0 {
    			return false
    		}
    		deb.dump("Delimited message of length %d", n)
    		deb.message(indent)
    	}
    	return true
    }
    
    // loadBlock preps us to read a message
    // of the length specified next in the input. It returns
    // the length of the block. The argument tells whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top