Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConstInt32 (0.22 sec)

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

    	return s.f.ConstInt8(t, c)
    }
    func (s *state) constInt16(t *types.Type, c int16) *ssa.Value {
    	return s.f.ConstInt16(t, c)
    }
    func (s *state) constInt32(t *types.Type, c int32) *ssa.Value {
    	return s.f.ConstInt32(t, c)
    }
    func (s *state) constInt64(t *types.Type, c int64) *ssa.Value {
    	return s.f.ConstInt64(t, c)
    }
    func (s *state) constFloat32(t *types.Type, c float64) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	return f.constVal(OpConst8, t, int64(c), true)
    }
    func (f *Func) ConstInt16(t *types.Type, c int16) *Value {
    	return f.constVal(OpConst16, t, int64(c), true)
    }
    func (f *Func) ConstInt32(t *types.Type, c int32) *Value {
    	return f.constVal(OpConst32, t, int64(c), true)
    }
    func (f *Func) ConstInt64(t *types.Type, c int64) *Value {
    	return f.constVal(OpConst64, t, c, true)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top