Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for j16 (0.02 sec)

  1. test/zerodivide.go

    	ErrorTest{"int16 0/0", func() { use(i16 / j16) }, "divide"},
    	ErrorTest{"int32 0/0", func() { use(i32 / j32) }, "divide"},
    	ErrorTest{"int64 0/0", func() { use(i64 / j64) }, "divide"},
    
    	ErrorTest{"int 1/0", func() { use(k / j) }, "divide"},
    	ErrorTest{"int8 1/0", func() { use(k8 / j8) }, "divide"},
    	ErrorTest{"int16 1/0", func() { use(k16 / j16) }, "divide"},
    	ErrorTest{"int32 1/0", func() { use(k32 / j32) }, "divide"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. test/prove.go

    // Look through all extensions
    func signExtNto64(x []int, j8 int8, j16 int16, j32 int32) int {
    	if len(x) < 22 {
    		return 0
    	}
    	if j8 >= 0 && j8 < 22 {
    		return x[j8] // ERROR "Proved IsInBounds$"
    	}
    	if j16 >= 0 && j16 < 22 {
    		return x[j16] // ERROR "Proved IsInBounds$"
    	}
    	if j32 >= 0 && j32 < 22 {
    		return x[j32] // ERROR "Proved IsInBounds$"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top