Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for fsubs (0.04 sec)

  1. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	$-1, acc0
    	MOVD	p256const0<>(SB), acc1
    	MOVD	$0, acc2
    	MOVD	p256const1<>(SB), acc3
    	// Load the original value
    	LDP	0*16(a_ptr), (t0, t1)
    	LDP	1*16(a_ptr), (t2, t3)
    	// Speculatively subtract
    	SUBS	t0, acc0
    	SBCS	t1, acc1
    	SBCS	t2, acc2
    	SBC	t3, acc3
    	// If condition is 0, keep original value
    	CMP	$0, hlp0
    	CSEL	EQ, t0, acc0, acc0
    	CSEL	EQ, t1, acc1, acc1
    	CSEL	EQ, t2, acc2, acc2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					if q, ok := s.(*Qualified); ok {
    						a := q.Scope
    						if t, ok := a.(*Template); ok {
    							st.subs.add(t.Name)
    							st.subs.add(t)
    						} else {
    							st.subs.add(a)
    						}
    						return s
    					}
    				}
    				n := st.sourceName()
    				if len(st.str) > 0 && st.str[0] == 'I' {
    					st.subs.add(n)
    					args := st.templateArgs()
    					n = &Template{Name: n, Args: args}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/crypto/subtle/xor_arm64.s

    	VLD1.P	64(R2), [V4.B16, V5.B16, V6.B16, V7.B16]
    	VEOR	V0.B16, V4.B16, V4.B16
    	VEOR	V1.B16, V5.B16, V5.B16
    	VEOR	V2.B16, V6.B16, V6.B16
    	VEOR	V3.B16, V7.B16, V7.B16
    	VST1.P	[V4.B16, V5.B16, V6.B16, V7.B16], 64(R0)
    	SUBS	$64, R3
    	CMP	$64, R3
    	BGE	loop_64
    tail:
    	// quick end
    	CBZ	R3, end
    	TBZ	$5, R3, less_than32
    	VLD1.P	32(R1), [V0.B16, V1.B16]
    	VLD1.P	32(R2), [V2.B16, V3.B16]
    	VEOR	V0.B16, V2.B16, V2.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 18:47:33 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/a.out.go

    	AFRINTIS
    	AFRINTMD
    	AFRINTMS
    	AFRINTND
    	AFRINTNS
    	AFRINTPD
    	AFRINTPS
    	AFRINTXD
    	AFRINTXS
    	AFRINTZD
    	AFRINTZS
    	AFSQRTD
    	AFSQRTS
    	AFSTPD
    	AFSTPQ
    	AFSTPS
    	AFSUBD
    	AFSUBS
    	AHINT
    	AHLT
    	AHVC
    	AIC
    	AISB
    	ALDADDAB
    	ALDADDAD
    	ALDADDAH
    	ALDADDALB
    	ALDADDALD
    	ALDADDALH
    	ALDADDALW
    	ALDADDAW
    	ALDADDB
    	ALDADDD
    	ALDADDH
    	ALDADDLB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    	subs := p.stack[i:]
    	p.stack = p.stack[:i]
    
    	// Make sure top class is clean.
    	// All the others already are (see swapVerticalBar).
    	if len(subs) > 0 {
    		cleanAlt(subs[len(subs)-1])
    	}
    
    	// Empty alternate is special case
    	// (shouldn't happen but easy to handle).
    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpNoMatch))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64error.s

    	SUBS	$0xff, R6, RSP                                   // ERROR "illegal destination register"
    	SUBS	$0xffff0, R6, RSP                                // ERROR "illegal destination register"
    	SUBS	$0x1000100010001000, R6, RSP                     // ERROR "illegal destination register"
    	SUBS	$0x10001000100011, R6, RSP                       // ERROR "illegal destination register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    The anatomy of a typical project root directory looks as follows:
    
    [listing,subs=+macros]
    ----
    ├── .gradle                 // <1>
    │   ├── 4.8                     // <2>
    │   ├── 4.9                     // <2>
    │   └── ⋮
    ├── build                   // <3>
    ├── gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

    dependencies {
        conf 'foo:bar:1'
        conf project(':sub')
    }
    
    configurations.all {
      resolutionStrategy {
          dependencySubstitution { DependencySubstitutions subs ->
              subs.substitute(subs.module('foo:bar:1')).using(subs.project(':sub'))
          }
          failOnVersionConflict()
      }
    }
    
    """
    
            when:
            succeeds ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	FSCALE:          "FSCALE",
    	FSIN:            "FSIN",
    	FSINCOS:         "FSINCOS",
    	FSQRT:           "FSQRT",
    	FST:             "FST",
    	FSTP:            "FSTP",
    	FSUB:            "FSUB",
    	FSUBP:           "FSUBP",
    	FSUBR:           "FSUBR",
    	FSUBRP:          "FSUBRP",
    	FTST:            "FTST",
    	FUCOM:           "FUCOM",
    	FUCOMI:          "FUCOMI",
    	FUCOMIP:         "FUCOMIP",
    	FUCOMP:          "FUCOMP",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. src/regexp/syntax/regexp.go

    	OpRepeat                       // matches Sub[0] at least Min times, at most Max (Max == -1 is no limit)
    	OpConcat                       // matches concatenation of Subs
    	OpAlternate                    // matches alternation of Subs
    )
    
    const opPseudo Op = 128 // where pseudo-ops start
    
    // Equal reports whether x and y have identical structure.
    func (x *Regexp) Equal(y *Regexp) bool {
    	if x == nil || y == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top