Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Imm_clrex (0.07 sec)

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

    type Imm_hint uint8
    
    func (Imm_hint) isArg() {}
    
    func (i Imm_hint) String() string {
    	return fmt.Sprintf("#%#x", uint32(i))
    }
    
    // An Imm_clrex is an integer constant for CLREX instruction.
    type Imm_clrex uint8
    
    func (Imm_clrex) isArg() {}
    
    func (i Imm_clrex) String() string {
    	if i == 15 {
    		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