Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lshConst64x32 (1.01 sec)

  1. test/codegen/shift.go

    	// riscv64:"SRAIW",-"OR",-"SLTIU", -"MOVW"
    	return v >> uint64(29)
    }
    
    func lshConst64x32(v int64) int64 {
    	// ppc64x:"SLD"
    	// riscv64:"SLLI",-"AND",-"SLTIU"
    	return v << uint32(33)
    }
    
    func rshConst64Ux32(v uint64) uint64 {
    	// ppc64x:"SRD"
    	// riscv64:"SRLI\t",-"AND",-"SLTIU"
    	return v >> uint32(33)
    }
    
    func rshConst64x32(v int64) int64 {
    	// ppc64x:"SRAD"
    	// riscv64:"SRAI\t",-"OR",-"SLTIU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top