Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constInterface (0.32 sec)

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

    	return f.constVal(OpConst64F, t, int64(math.Float64bits(c)), true)
    }
    
    func (f *Func) ConstSlice(t *types.Type) *Value {
    	return f.constVal(OpConstSlice, t, constSliceMagic, false)
    }
    func (f *Func) ConstInterface(t *types.Type) *Value {
    	return f.constVal(OpConstInterface, t, constInterfaceMagic, false)
    }
    func (f *Func) ConstNil(t *types.Type) *Value {
    	return f.constVal(OpConstNil, t, constNilMagic, false)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Const32F", aux: "Float32"}, // value is math.Float64frombits(uint64(auxint)) and is exactly representable as float 32
    	{name: "Const64F", aux: "Float64"}, // value is math.Float64frombits(uint64(auxint))
    	{name: "ConstInterface"},           // nil interface
    	{name: "ConstSlice"},               // nil slice
    
    	// Constant-like things
    	{name: "InitMem", zeroWidth: true},                               // memory input to the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top