Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ConstInt8 (0.19 sec)

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

    func (f *Func) ConstBool(t *types.Type, c bool) *Value {
    	i := int64(0)
    	if c {
    		i = 1
    	}
    	return f.constVal(OpConstBool, t, i, true)
    }
    func (f *Func) ConstInt8(t *types.Type, c int8) *Value {
    	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)
    }
    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

    	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 {
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    			case 64:
    				c = f.ConstInt64(typ, constValue)
    			case 32:
    				c = f.ConstInt32(typ, int32(constValue))
    			case 16:
    				c = f.ConstInt16(typ, int16(constValue))
    			case 8:
    				c = f.ConstInt8(typ, int8(constValue))
    			default:
    				panic("unexpected integer size")
    			}
    			v.SetArg(i, c)
    			if b.Func.pass.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            }
            while (value < Constant6.CONSTANT6 $addition) {
            }
            do {
            } while (value < Constant7.CONSTANT7 $addition);
            value = value > (Constant8.CONSTANT8 $addition)
                    ? ($constantType) (Constant9.CONSTANT9  $addition)
                    : ($constantType) (Constant10.CONSTANT10 $addition);
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top