Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VN (0.02 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		rf := int(p.From.Reg)
    		if rf == C_NONE {
    			rf = int(p.To.Reg)
    		}
    		rt := int(p.To.Reg)
    		o1 |= (uint32(rf&31) << 16) | (REGZERO & 31 << 5) | uint32(rt&31)
    
    	case 26: /* op Vn, Vd; op Vn.<T>, Vd.<T> */
    		o1 = c.oprrr(p, p.As)
    		cf := c.aclass(&p.From)
    		af := (p.From.Reg >> 5) & 15
    		at := (p.To.Reg >> 5) & 15
    		var sz int16
    		switch p.As {
    		case AAESD, AAESE, AAESIMC, AAESMC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	// Isolate rightmost 1 (if none 0) and add.
    	v := mask
    	vp := (v & -v) + v
    	// Likewise, check for the wrapping (inverted) case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return mb, (me - 1) & 31, (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Decompose a mask of contiguous bits into a begin (mb) and
    // end (me) value.
    //
    // 64b mask values cannot wrap on any valid PPC64 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    			s, err := strconv.Unquote(path)
    			if err != nil {
    				return ""
    			}
    			path = s
    		}
    		return path
    	})
    }
    
    // findVersionElement returns the slice indices of the final version element /vN in path.
    // If there is no such element, it returns -1, -1.
    func findVersionElement(path string) (i, j int) {
    	j = len(path)
    	for i = len(path) - 1; i >= 0; i-- {
    		if path[i] == '/' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top