Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for immrot2a (0.2 sec)

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

    // Returns 0,0 if no such decomposition of v exists.
    func immrot2a(v uint32) (uint32, uint32) {
    	for i := uint(1); i < 32; i++ {
    		m := uint32(1<<i - 1)
    		if x, y := immrot(v&m), immrot(v&^m); x != 0 && y != 0 {
    			return uint32(x), uint32(y)
    		}
    	}
    	// TODO: handle some more cases, like where
    	// the wraparound from the rotate could help.
    	return 0, 0
    }
    
    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