Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DCPS (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    func (Imm_clrex) isArg() {}
    
    func (i Imm_clrex) String() string {
    	if i == 15 {
    		return ""
    	}
    	return fmt.Sprintf("#%#x", uint32(i))
    }
    
    // An Imm_dcps is an integer constant for DCPS[123] instruction.
    type Imm_dcps uint16
    
    func (Imm_dcps) isArg() {}
    
    func (i Imm_dcps) String() string {
    	if i == 0 {
    		return ""
    	}
    	return fmt.Sprintf("#%#x", uint32(i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top