Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for f2c (0.02 sec)

  1. test/checkbce.go

    	j := i & 34
    	useInt(a[j])
    	j = i & 17
    	useInt(a[j])
    }
    
    func f2b(a [35]int, i uint16) {
    	useInt(a[i]) // ERROR "Found IsInBounds$"
    	j := i & 34
    	useInt(a[j])
    	j = i & 17
    	useInt(a[j])
    }
    
    func f2c(a [35]int, i uint32) {
    	useInt(a[i]) // ERROR "Found IsInBounds$"
    	j := i & 34
    	useInt(a[j])
    	j = i & 17
    	useInt(a[j])
    }
    
    func f3(a [256]int, i uint8) {
    	useInt(a[i])
    	useInt(a[i+10])
    	useInt(a[i+14])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top