Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/obj/arm/asm5.go

    	if a != AMOVW {
    		o |= 1 << 22
    	}
    	return o
    }
    
    func (c *ctxt5) oshr(r int, v int32, b int, sc int) uint32 {
    	o := c.olhr(v, b, r, sc) ^ (1 << 20)
    	return o
    }
    
    func (c *ctxt5) osrr(r int, i int, b int, sc int) uint32 {
    	return c.olr(int32(i), b, r, sc) ^ (1<<25 | 1<<20)
    }
    
    func (c *ctxt5) oshrr(r int, i int, b int, sc int) uint32 {
    	return c.olhr(int32(i), b, r, sc) ^ (1<<22 | 1<<20)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top