Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constEmptyString (0.66 sec)

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

    	return f.constVal(OpConstInterface, t, constInterfaceMagic, false)
    }
    func (f *Func) ConstNil(t *types.Type) *Value {
    	return f.constVal(OpConstNil, t, constNilMagic, false)
    }
    func (f *Func) ConstEmptyString(t *types.Type) *Value {
    	v := f.constVal(OpConstString, t, constEmptyStringMagic, false)
    	v.Aux = StringToAux("")
    	return v
    }
    func (f *Func) ConstOffPtrSP(t *types.Type, c int64, sp *Value) *Value {
    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/ssagen/ssa.go

    func (s *state) constInterface(t *types.Type) *ssa.Value {
    	return s.f.ConstInterface(t)
    }
    func (s *state) constNil(t *types.Type) *ssa.Value { return s.f.ConstNil(t) }
    func (s *state) constEmptyString(t *types.Type) *ssa.Value {
    	return s.f.ConstEmptyString(t)
    }
    func (s *state) constBool(c bool) *ssa.Value {
    	return s.f.ConstBool(types.Types[types.TBOOL], c)
    }
    func (s *state) constInt8(t *types.Type, c int8) *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)
Back to top