Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for setRead (0.07 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    		if r&(1<<uint(i)) != 0 {
    			fmt.Fprintf(&buf, "%s%s", sep, Reg(i).String())
    			sep = ","
    		}
    	}
    	fmt.Fprintf(&buf, "}")
    	return buf.String()
    }
    
    // An Endian is the argument to the SETEND instruction.
    type Endian uint8
    
    const (
    	LittleEndian Endian = 0
    	BigEndian    Endian = 1
    )
    
    func (Endian) IsArg() {}
    
    func (e Endian) String() string {
    	if e != 0 {
    		return "BE"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
Back to top