Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for 4294967296u (0.25 sec)

  1. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.txt

    expression: 4294967296u
    constant: 4294967296uL
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 72 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.kt

    const val c = <expr>4294967296u</expr> +...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Sep 30 10:19:51 UTC 2022
    - 42 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.descriptors.txt

    expression: 4294967296u
    constant: error("Type cannot be resolved. Please make sure you have the required dependencies for unsigned types in the classpath")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 181 bytes
    - Viewed (0)
  4. test/fixedbugs/issue30116u.out

                                             slice[4:18446744073709551615] runtime error: slice bounds out of range [:18446744073709551615] with capacity 3
                                                       slice[4294967295:0] runtime error: slice bounds out of range [4294967295:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 44K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	itd64{a: -4294967296, b: -9223372036854775807, add: 9223372032559808513, sub: 9223372032559808511, mul: -4294967296, div: 0, mod: -4294967296},
    	itd64{a: -4294967296, b: -4294967296, add: -8589934592, sub: 0, mul: 0, div: 1, mod: 0},
    	itd64{a: -4294967296, b: -1, add: -4294967297, sub: -4294967295, mul: 4294967296, div: 4294967296, mod: 0},
    	itd64{a: -4294967296, b: 0, add: -4294967296, sub: -4294967296, mul: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/constFold_test.go

    	if r != 0 {
    		t.Errorf("4294967296 %s -4294967296 = %d, want 0", "+", r)
    	}
    	y = -1
    	r = x + y
    	if r != 4294967295 {
    		t.Errorf("4294967296 %s -1 = %d, want 4294967295", "+", r)
    	}
    	y = 0
    	r = x + y
    	if r != 4294967296 {
    		t.Errorf("4294967296 %s 0 = %d, want 4294967296", "+", r)
    	}
    	y = 1
    	r = x + y
    	if r != 4294967297 {
    		t.Errorf("4294967296 %s 1 = %d, want 4294967297", "+", r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  7. src/strconv/atoc_test.go

    		// under/overflow exponent
    		{"1e-4294967296", 0, nil},
    		{"1e-4294967296i", 0, nil},
    		{"1e-4294967296+1i", 1i, nil},
    		{"1+1e-4294967296i", 1, nil},
    		{"1e-4294967296+1e-4294967296i", 0, nil},
    		{"1e+4294967296", infp0, ErrRange},
    		{"1e+4294967296i", inf0p, ErrRange},
    		{"1e+4294967296+1e+4294967296i", infpp, ErrRange},
    		{"1e+4294967296-1e+4294967296i", infpm, ErrRange},
    	}
    	for i := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int64{fn: add_int64_Neg4294967296, fnname: "add_int64_Neg4294967296", in: 0, want: -4294967296},
    	test_int64{fn: add_Neg4294967296_int64, fnname: "add_Neg4294967296_int64", in: 1, want: -4294967295},
    	test_int64{fn: add_int64_Neg4294967296, fnname: "add_int64_Neg4294967296", in: 1, want: -4294967295},
    	test_int64{fn: add_Neg4294967296_int64, fnname: "add_Neg4294967296_int64", in: 4294967296, want: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue63563.go

    	_ = int32(1 /* ERROR "constant 4294967295 overflows int32" */ <<32 - 1)
    	_ = int64(1 /* ERROR "constant 18446744073709551615 overflows int64" */ <<64 - 1)
    
    	_ = uint8(1 /* ERROR "constant 256 overflows uint8" */ << 8)
    	_ = uint16(1 /* ERROR "constant 65536 overflows uint16" */ << 16)
    	_ = uint32(1 /* ERROR "constant 4294967296 overflows uint32" */ << 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func le_4294967296_uint64(x uint64) bool           { return x <= 4294967296 }
    func gt_4294967296_uint64(x uint64) bool           { return x > 4294967296 }
    func ge_4294967296_uint64(x uint64) bool           { return x >= 4294967296 }
    func eq_4294967296_uint64(x uint64) bool           { return x == 4294967296 }
    func ne_4294967296_uint64(x uint64) bool           { return x != 4294967296 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
Back to top