Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConstInt8 (0.15 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. 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