Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for modsw (0.54 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case DIVD, DIVDCC, DIVDU, DIVDUCC, DIVDE, DIVDECC, DIVDEU, DIVDEUCC, DIVDO, DIVDOCC, DIVDUO, DIVDUOCC:
    		return true
    	case MODUD, MODSD, MODUW, MODSW:
    		return true
    	case FADD, FADDS, FSUB, FSUBS, FMUL, FMULS, FDIV, FDIVS, FMADD, FMADDS, FMSUB, FMSUBS, FNMADD, FNMADDS, FNMSUB, FNMSUBS, FMULSCC:
    		return true
    	case FADDCC, FADDSCC, FSUBCC, FMULCC, FDIVCC, FDIVSCC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MODSD", argLength: 2, reg: gp21, asm: "MODSD", typ: "Int64"},  // arg0 % arg1 (signed 64-bit)
    		{name: "MODUW", argLength: 2, reg: gp21, asm: "MODUW", typ: "UInt32"}, // arg0 % arg1 (unsigned 32-bit)
    		{name: "MODSW", argLength: 2, reg: gp21, asm: "MODSW", typ: "Int32"},  // arg0 % arg1 (signed 32-bit)
    		// MOD is implemented as rem := arg0 - (arg0/arg1) * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    			// shortest to longest. Reverse them now.
    			for i := 0; i < len(mods)/2; i++ {
    				j := len(mods) - 1 - i
    				mods[i], mods[j] = mods[j], mods[i]
    				roots[i], roots[j] = roots[j], roots[i]
    				dirs[i], dirs[j] = dirs[j], dirs[i]
    			}
    			return module.Version{}, "", "", nil, &AmbiguousImportError{importPath: path, Dirs: dirs, Modules: mods}
    		}
    
    		if len(sumErrMods) > 0 {
    			for i := 0; i < len(sumErrMods)/2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/download.go

    			// Nothing to download.
    			continue
    		}
    		m := &ModuleJSON{
    			Path:    info.Path,
    			Version: info.Version,
    			Query:   info.Query,
    			Reuse:   info.Reuse,
    			Origin:  info.Origin,
    		}
    		mods = append(mods, m)
    		if info.Error != nil {
    			m.Error = info.Error.Err
    			continue
    		}
    		if m.Reuse {
    			continue
    		}
    		sem <- token{}
    		go func() {
    			err := DownloadModule(ctx, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/anames.go

    	"LEAVEW",
    	"LEAW",
    	"LFENCE",
    	"LFSL",
    	"LFSQ",
    	"LFSW",
    	"LGDT",
    	"LGSL",
    	"LGSQ",
    	"LGSW",
    	"LIDT",
    	"LLDT",
    	"LMSW",
    	"LOCK",
    	"LODSB",
    	"LODSL",
    	"LODSQ",
    	"LODSW",
    	"LONG",
    	"LOOP",
    	"LOOPEQ",
    	"LOOPNE",
    	"LSLL",
    	"LSLQ",
    	"LSLW",
    	"LSSL",
    	"LSSQ",
    	"LSSW",
    	"LTR",
    	"LZCNTL",
    	"LZCNTQ",
    	"LZCNTW",
    	"MASKMOVOU",
    	"MASKMOVQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. src/math/big/prime.go

    	}
    
    	const primesA = 3 * 5 * 7 * 11 * 13 * 17 * 19 * 23 * 37
    	const primesB = 29 * 31 * 41 * 43 * 47 * 53
    
    	var rA, rB uint32
    	switch _W {
    	case 32:
    		rA = uint32(x.abs.modW(primesA))
    		rB = uint32(x.abs.modW(primesB))
    	case 64:
    		r := x.abs.modW((primesA * primesB) & _M)
    		rA = uint32(r % primesA)
    		rB = uint32(r % primesB)
    	default:
    		panic("math/big: invalid word size")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		inst.Args[1] = Mem{Segment: ES, Base: baseRegForBits(addrMode) + DI - AX}
    		usedAddrSize = true
    
    	case LODSB, LODSW, LODSD, LODSQ:
    		switch inst.Op {
    		case LODSB:
    			inst.Args[0] = AL
    		case LODSW:
    			inst.Args[0] = AX
    		case LODSD:
    			inst.Args[0] = EAX
    		case LODSQ:
    			inst.Args[0] = RAX
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_outside.txt

    # 'go list -m <mods> all' should also fail.
    ! go list -m example.com/printversion@v1.0.0 all
    stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    ! stdout 'example.com/version'
    
    # 'go list -m <mods>' should fail if any of the mods lacks an explicit version.
    ! go list -m example.com/printversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/fetch.go

    			if st.used && !sumInWorkspaceModulesLocked(ms.mod) {
    				addModSumLocked(ms.mod, ms.sum)
    			}
    		}
    	}
    
    	var mods []module.Version
    	for m := range goSum.m {
    		mods = append(mods, m)
    	}
    	module.Sort(mods)
    
    	var buf bytes.Buffer
    	for _, m := range mods {
    		list := goSum.m[m]
    		sort.Strings(list)
    		str.Uniq(&list)
    		for _, h := range list {
    			st := goSum.status[modSum{m, h}]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		args         []string // formatted arguments
    	)
    	for i, a := range inst.Args {
    		if a == nil {
    			break
    		}
    		switch inst.Op {
    		case MOVSB, MOVSW, MOVSD, MOVSQ, OUTSB, OUTSW, OUTSD:
    			if i == 0 {
    				usedPrefixes = true // disable use of prefixes for first argument
    			} else {
    				usedPrefixes = false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top