Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for sub2 (0.08 sec)

  1. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true}, // arg0 + arg1
    		{name: "SUBF", argLength: 2, reg: fp21, asm: "SUBF"},                    // arg0 - arg1
    		{name: "SUBD", argLength: 2, reg: fp21, asm: "SUBD"},                    // arg0 - arg1
    		{name: "MULF", argLength: 2, reg: fp21, asm: "MULF", commutative: true}, // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true}, // arg0 + arg1
    		{name: "SUBF", argLength: 2, reg: fp21, asm: "SUBF"},                    // arg0 - arg1
    		{name: "SUBD", argLength: 2, reg: fp21, asm: "SUBD"},                    // arg0 - arg1
    		{name: "MULF", argLength: 2, reg: fp21, asm: "MULF", commutative: true}, // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    	LXVD2X (HTBL)(R10), VH2H
    
    loop_2x:
    	LXVD2X (INP)(R0), VIN1
    #ifdef GOARCH_ppc64le
    	VPERM  IN1, IN1, LEMASK, IN1
    #endif
    
    	SUBC    $32, LEN, LEN
    	VPMSUMD IN, H2L, XL   // H^2.lo·Xi.lo
    	VPMSUMD IN1, HL, XL1  // H.lo·Xi+1.lo
    	SUBE    R11, R11, R11 // borrow?-1:0
    	VPMSUMD IN, H2, XM    // H^2.hi·Xi.lo+H^2.lo·Xi.hi
    	VPMSUMD IN1, H, XM1   // H.hi·Xi+1.lo+H.lo·Xi+1.hi
    	AND     LEN, R11, R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/regexp/syntax/regexp.go

    		} else {
    			b.WriteRune('(')
    		}
    		if re.Sub[0].Op != OpEmptyMatch {
    			writeRegexp(b, re.Sub[0], flags[re.Sub[0]], flags)
    		}
    		b.WriteRune(')')
    	case OpStar, OpPlus, OpQuest, OpRepeat:
    		p := printFlags(0)
    		sub := re.Sub[0]
    		if sub.Op > OpCapture || sub.Op == OpLiteral && len(sub.Rune) > 1 {
    			p = flagPrec
    		}
    		writeRegexp(b, sub, p, flags)
    
    		switch re.Op {
    		case OpStar:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Add32F", argLength: 2, commutative: true},
    	{name: "Add64F", argLength: 2, commutative: true},
    
    	{name: "Sub8", argLength: 2}, // arg0 - arg1
    	{name: "Sub16", argLength: 2},
    	{name: "Sub32", argLength: 2},
    	{name: "Sub64", argLength: 2},
    	{name: "SubPtr", argLength: 2},
    	{name: "Sub32F", argLength: 2},
    	{name: "Sub64F", argLength: 2},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcs/vcs_test.go

    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net",
    			nil,
    		},
    		{
    			"hubajazz.net",
    			nil,
    		},
    		{
    			"hub2.jazz.net",
    			nil,
    		},
    		{
    			"hub.jazz.net/someotherprefix",
    			nil,
    		},
    		{
    			"hub.jazz.net/someotherprefix/user1/pkgname",
    			nil,
    		},
    		// Spaces are not valid in user names or package names
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
Back to top