Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 1x1120x8 (0.06 sec)

  1. test/codegen/arithmetic.go

    	// arm:"SRL\t[$]12",-".*udiv"
    	// ppc64x:"SRD\t[$]12"
    	return cap(a) / ((1 << 11) + 2048)
    }
    
    func CapMod(a []int) int {
    	// 386:"ANDL\t[$]4095"
    	// amd64:"ANDL\t[$]4095"
    	// arm64:"AND\t[$]4095",-"SDIV"
    	// arm/6:"AND",-".*udiv"
    	// arm/7:"BFC",-".*udiv",-"AND"
    	// ppc64x:"RLDICL"
    	return cap(a) % ((1 << 11) + 2048)
    }
    
    func AddMul(x int) int {
    	// amd64:"LEAQ\t1"
    	return 2*x + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top