Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ChainDivConst (0.13 sec)

  1. test/torture.go

    }
    
    func ChainDivRight(a, b int) int {
    	return a / (b / (a / (b /
    		(a / (b / (a / (b /
    			(a / (b / (a / (b /
    				(a / (b / (a / (b /
    					(a / (b / (a / b))))))))))))))))))
    }
    
    func ChainDivConst(a int) int {
    	return a / 17 / 17 / 17 /
    		17 / 17 / 17 / 17 /
    		17 / 17 / 17 / 17
    }
    
    func ChainMulBytes(a, b, c byte) byte {
    	return a*(a*(a*(a*(a*(a*(a*(a*(a*b+c)+c)+c)+c)+c)+c)+c)+c) + c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
Back to top