Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MinInt64 (0.53 sec)

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

    	}
    	// match: (Less64 x (Const64 <t> [math.MinInt64+1]))
    	// result: (Eq64 x (Const64 <t> [math.MinInt64]))
    	for {
    		x := v_0
    		if v_1.Op != OpConst64 {
    			break
    		}
    		t := v_1.Type
    		if auxIntToInt64(v_1.AuxInt) != math.MinInt64+1 {
    			break
    		}
    		v.reset(OpEq64)
    		v0 := b.NewValue0(v.Pos, OpConst64, t)
    		v0.AuxInt = int64ToAuxInt(math.MinInt64)
    		v.AddArg2(x, v0)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MaxUint32", Const, 0},
    		{"MaxUint64", Const, 0},
    		{"MaxUint8", Const, 0},
    		{"Min", Func, 0},
    		{"MinInt", Const, 17},
    		{"MinInt16", Const, 0},
    		{"MinInt32", Const, 0},
    		{"MinInt64", Const, 0},
    		{"MinInt8", Const, 0},
    		{"Mod", Func, 0},
    		{"Modf", Func, 0},
    		{"NaN", Func, 0},
    		{"Nextafter", Func, 0},
    		{"Nextafter32", Func, 4},
    		{"Phi", Const, 0},
    		{"Pi", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top