Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for convertNeq0Q (0.17 sec)

  1. test/codegen/bool.go

    func convertNeq0B(x uint8, c bool) bool {
    	// amd64:"ANDL\t[$]1",-"SETNE"
    	// ppc64x:"RLDICL",-"CMPW",-"ISEL"
    	b := x&1 != 0
    	return c && b
    }
    
    func convertNeq0W(x uint16, c bool) bool {
    	// amd64:"ANDL\t[$]1",-"SETNE"
    	// ppc64x:"RLDICL",-"CMPW",-"ISEL"
    	b := x&1 != 0
    	return c && b
    }
    
    func convertNeq0L(x uint32, c bool) bool {
    	// amd64:"ANDL\t[$]1",-"SETB"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top