Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UintLeqZero (0.29 sec)

  1. test/codegen/comparisons.go

    }
    
    func UintGtZero(a uint8, b uint16, c uint32, d uint64) int {
    	// arm64: `(CBN?ZW)`, `(CBN?Z[^W])`, -`(CMPW|CMP|BLS|BHI)`
    	if a > 0 || b > 0 || c > 0 || d > 0 {
    		return 1
    	}
    	return 0
    }
    
    func UintLeqZero(a uint8, b uint16, c uint32, d uint64) int {
    	// arm64: `(CBN?ZW)`, `(CBN?Z[^W])`, -`(CMPW|CMP|BHI|BLS)`
    	if a <= 0 || b <= 0 || c <= 0 || d <= 0 {
    		return 1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top