Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for g32 (0.03 sec)

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

    	var y int32 = -2147483648
    	var z int64 = -9223372036854775808
    
    	for i := -5; i < 0; i++ {
    		g8 = w / int8(i)
    		g16 = x / int16(i)
    		g32 = y / int32(i)
    		g64 = z / int64(i)
    		g8 = w % int8(i)
    		g16 = x % int16(i)
    		g32 = y % int32(i)
    		g64 = z % int64(i)
    	}
    }
    
    //go:noinline
    func divisible_int8_2to1(x int8) bool {
    	return x%(1<<1) == 0
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top