Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for ev64 (0.04 sec)

  1. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64bool(s, f, zero, nan, result>>4&1 == 1)
    	fail64bool(s, f, nan, nan, result&1 == 1)
    
    	fail64(s, g, zero, zero, ev64[result>>16&1])
    	fail64(s, g, zero, one, ev64[result>>12&1])
    	fail64(s, g, zero, inf, ev64[result>>8&1])
    	fail64(s, g, zero, nan, ev64[result>>4&1])
    	fail64(s, g, nan, nan, ev64[result>>0&1])
    
    	{
    		zero := float32(zero)
    		one := float32(one)
    		inf := float32(inf)
    		nan := float32(nan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  2. test/zerodivide.go

    	u32, v32, w32 uint32  = 0, 0, 1
    	u64, v64, w64 uint64  = 0, 0, 1
    	up, vp, wp    uintptr = 0, 0, 1
    
    	f, g, h                         float64 = 0, 0, 1
    	f32, g32, h32                   float32 = 0, 0, 1
    	f64, g64, h64, inf, negInf, nan float64 = 0, 0, 1, math.Inf(1), math.Inf(-1), math.NaN()
    
    	c, d, e          complex128 = 0 + 0i, 0 + 0i, 1 + 1i
    	c64, d64, e64    complex64  = 0 + 0i, 0 + 0i, 1 + 1i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. test/prove.go

    	}
    	if a > b {
    		if a == 0 { // ERROR "Disproved Eq64$"
    			return 1
    		}
    	}
    	return 0
    }
    
    func f13g(a int) int {
    	if a < 3 {
    		return 5
    	}
    	if a > 3 {
    		return 6
    	}
    	if a == 3 { // ERROR "Proved Eq64$"
    		return 7
    	}
    	return 8
    }
    
    func f13h(a int) int {
    	if a < 3 {
    		if a > 1 {
    			if a == 2 { // ERROR "Proved Eq64$"
    				return 5
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/internal/coverage/slicereader/slr_test.go

    		}
    		g64 := slr.ReadUint64()
    		if g64 != e64 {
    			t.Fatalf("slr.ReadUint64() got %d want %d", g64, e64)
    		}
    		g32 = uint32(slr.ReadULEB128())
    		if g32 != e32 {
    			t.Fatalf("slr.ReadULEB128() got %d want %d", g32, e32)
    		}
    		g64 = slr.ReadULEB128()
    		if g64 != e64 {
    			t.Fatalf("slr.ReadULEB128() got %d want %d", g64, e64)
    		}
    		gs1 := readStr(slr)
    		if gs1 != s1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteCond_test.go

    	if y32-23 <= 0 {
    		t.Errorf("'%#x - 23 <= 0' failed", y32)
    	}
    }
    
    // var + var
    func testAddVar64(t *testing.T) {
    	if x64+v64 < 0 {
    	} else {
    		t.Errorf("'%#x + %#x < 0' failed", x64, v64)
    	}
    
    	if x64+v64 <= 0 {
    	} else {
    		t.Errorf("'%#x + %#x <= 0' failed", x64, v64)
    	}
    
    	if y64+v64_n > 0 {
    	} else {
    		t.Errorf("'%#x + %#x > 0' failed", y64, v64_n)
    	}
    
    	if y64+v64_n >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. test/fuse.go

    	return a == 0 && f > Cf2 || a < 0 && f < -Cf2
    }
    
    func fEqLeqU(a uint64, f float64) bool {
    	return a == 0 && f > Cf2 || a <= 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Eq64$"
    }
    
    func fNeqEq(a int, f float64) bool {
    	return a != 0 && f > Cf2 || a == 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Neq64$"
    }
    
    func fNeqNeq(a int32, f float64) bool {
    	return a != 0 && f > Cf2 || a != 0 && f < -Cf2 // ERROR "Redirect Neq32 based on Neq32$"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. test/codegen/shift.go

    func lshSigned(v8 int8, v16 int16, v32 int32, v64 int64, x int) {
    	// amd64:"TESTB"
    	_ = x << v8
    	// amd64:"TESTW"
    	_ = x << v16
    	// amd64:"TESTL"
    	_ = x << v32
    	// amd64:"TESTQ"
    	_ = x << v64
    }
    
    // We want to avoid generating a test + panicshift for these cases.
    func lshSignedMasked(v8 int8, v16 int16, v32 int32, v64 int64, x int) {
    	// amd64:-"TESTB"
    	_ = x << (v8 & 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/strconv/example_test.go

    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseInt(v32, 16, 32); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    
    	v64 := "-3546343826724305832"
    	if s, err := strconv.ParseInt(v64, 10, 64); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    	if s, err := strconv.ParseInt(v64, 16, 64); err == nil {
    		fmt.Printf("%T, %v\n", s, s)
    	}
    
    	// Output:
    	// int64, -354634382
    	// int64, -3546343826724305832
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 22:57:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    (NeqB (ConstBool [c]) (ConstBool [d])) => (ConstBool [c != d])
    (NeqB (ConstBool [false]) x) => x
    (NeqB (ConstBool [true]) x) => (Not x)
    (NeqB (Not x) (Not y)) => (NeqB x y)
    
    (Eq64 (Const64 <t> [c]) (Add64 (Const64 <t> [d]) x)) => (Eq64 (Const64 <t> [c-d]) x)
    (Eq32 (Const32 <t> [c]) (Add32 (Const32 <t> [d]) x)) => (Eq32 (Const32 <t> [c-d]) x)
    (Eq16 (Const16 <t> [c]) (Add16 (Const16 <t> [d]) x)) => (Eq16 (Const16 <t> [c-d]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa.go

    		N := bbig.Dec(bN)
    		E := bbig.Dec(bE)
    		D := bbig.Dec(bD)
    		P := bbig.Dec(bP)
    		Q := bbig.Dec(bQ)
    		Dp := bbig.Dec(bDp)
    		Dq := bbig.Dec(bDq)
    		Qinv := bbig.Dec(bQinv)
    		e64 := E.Int64()
    		if !E.IsInt64() || int64(int(e64)) != e64 {
    			return nil, errors.New("crypto/rsa: generated key exponent too large")
    		}
    
    		mn, err := bigmod.NewModulusFromBig(N)
    		if err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top