Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 211 for x1 (0.02 sec)

  1. src/internal/bytealg/equal_amd64.s

    	JE	hugeloop_avx2
    
    	// 64 bytes at a time using xmm registers
    	PCALIGN $16
    hugeloop:
    	CMPQ	BX, $64
    	JB	bigloop
    	MOVOU	(SI), X0
    	MOVOU	(DI), X1
    	MOVOU	16(SI), X2
    	MOVOU	16(DI), X3
    	MOVOU	32(SI), X4
    	MOVOU	32(DI), X5
    	MOVOU	48(SI), X6
    	MOVOU	48(DI), X7
    	PCMPEQB	X1, X0
    	PCMPEQB	X3, X2
    	PCMPEQB	X5, X4
    	PCMPEQB	X7, X6
    	PAND	X2, X0
    	PAND	X6, X4
    	PAND	X4, X0
    	PMOVMSKB X0, DX
    	ADDQ	$64, SI
    	ADDQ	$64, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd_riscv64.s

    	// the value here doesn't really matter).
    	MOV	$0, X10
    
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), X10
    	MOV	info+16(FP), X11
    	MOV	ctx+24(FP), X12
    	MOV	fn+0(FP), X5
    	JALR	X1, X5
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$224
    	// Save callee-save registers (X8, X9, X18..X27, F8, F9, F18..F27)
    	MOV	X8, (4*8)(X2)
    	MOV	X9, (5*8)(X2)
    	MOV	X18, (6*8)(X2)
    	MOV	X19, (7*8)(X2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. src/race.bat

    goto fail
    L36:
    L37:go tool dist test -race
    L38:
    L39:if errorlevel 1 goto fail
    L40:goto succ
    L41:
    L42::fail
    L43:set GOBUILDFAIL=1
    L44:echo Fail.
    L45:goto end
    L46:
    L47::succ
    L48:echo All tests passed.
    L49:
    L50::end
    L51:if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 16:59:17 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   {@code 1.0.RC2 < 1.0-RC3 < 1.0.1}; but prefer {@code 1.0.0-RC1} over {@code 1.0.0.RC1}, and more
     *   generally: {@code 1.0.X2 < 1.0-X3 < 1.0.1} for any string {@code X}; but prefer {@code 1.0.0-X1}
     *   over {@code 1.0.0.X1}.</li>
     * </ul>
     *
     * @see <a href="https://maven.apache.org/pom.html#version-order-specification">"Versioning" in the POM reference</a>
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/crypto/elliptic/elliptic.go

    	IsOnCurve(x, y *big.Int) bool
    
    	// Add returns the sum of (x1,y1) and (x2,y2).
    	//
    	// Deprecated: this is a low-level unsafe API.
    	Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
    
    	// Double returns 2*(x,y).
    	//
    	// Deprecated: this is a low-level unsafe API.
    	Double(x1, y1 *big.Int) (x, y *big.Int)
    
    	// ScalarMult returns k*(x,y) where k is an integer in big-endian form.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	{"[X0-]", "register list: bad high register in `[X0-]`"},
    	{"[X0-x]", "register list: bad high register in `[X0-x`"},
    	{"[X0-X1-X2]", "register list: expected ']' after `[X0-X1`, found '-'"},
    	{"[X0,X3]", "register list: expected '-' after `[X0`, found ','"},
    	{"[X0,X1,X2,X3]", "register list: expected '-' after `[X0`, found ','"},
    	{"$foo<ABI0>", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/zerorange_test.go

    func testZeroRange136(t *testing.T) (r, s, t2, u, v, w, x, y, r1, s1, t1, u1, v1, w1, x1, y1, z1 int64) {
    	defer func() {
    		glob = 4
    	}()
    	globp = &r
    	globp = &s
    	globp = &t2
    	globp = &u
    	globp = &v
    	globp = &w
    	globp = &x
    	globp = &y
    	globp = &r1
    	globp = &s1
    	globp = &t1
    	globp = &u1
    	globp = &v1
    	globp = &w1
    	globp = &x1
    	globp = &y1
    	globp = &z1
    	return
    }
    
    type S struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs_test.go

    name: cross7
    A: B C
    B: D1
    C: E1
    D1: E2
    E1: D2
    build A: A B C D2 E2
    
    # golang.org/issue/31248:
    # Even though we select X2, the requirement on I1
    # via X1 should be preserved.
    name: cross8
    M: A1 B1
    A1: X1
    B1: X2
    X1: I1
    X2:
    build M: M A1 B1 I1 X2
    
    # Upgrade from B1 to B2 should not drop the transitive dep on D.
    name: drop
    A: B1 C1
    B1: D1
    B2:
    C2:
    D2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner.go

    func invalidSep(x string) int {
    	x1 := ' ' // prefix char, we only care if it's 'x'
    	d := '.'  // digit, one of '_', '0' (a digit), or '.' (anything else)
    	i := 0
    
    	// a prefix counts as a digit
    	if len(x) >= 2 && x[0] == '0' {
    		x1 = lower(rune(x[1]))
    		if x1 == 'x' || x1 == 'o' || x1 == 'b' {
    			d = '0'
    			i = 2
    		}
    	}
    
    	// mantissa and exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultModuleVersionSelectorTest.groovy

            def matching = newId(UTIL, "1.0")
    
            def differentGroup = newId("xorg", "util", "1.0")
            def differentName = newId("org", "xutil", "1.0")
            def differentVersion = newId("org", "xutil", "x1.0")
    
            expect:
            selector.matchesStrictly(matching)
    
            !selector.matchesStrictly(differentGroup)
            !selector.matchesStrictly(differentName)
            !selector.matchesStrictly(differentVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top