Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for x1 (0.12 sec)

  1. src/cmd/asm/internal/asm/line_test.go

    		// Test AVX512 suffixes.
    		{"VADDPD.A X0, X1, X2", `unknown suffix "A"`},
    		{"VADDPD.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.B X0, X1, X2", `unknown suffix "A"; unknown suffix "B"`},
    		{"VADDPD.Z.A X0, X1, X2", `Z suffix should be the last; unknown suffix "A"`},
    		{"VADDPD.Z.Z X0, X1, X2", `Z suffix should be the last; duplicate suffix "Z"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_amd64.s

    	LEAQ	-16(SI)(BX*1), AX	// AX = address of last 16 bytes
    	JMP	sseloopentry
    
    	PCALIGN $16
    sseloop:
    	// Move the next 16-byte chunk of the data into X1.
    	MOVOU	(DI), X1
    	// Compare bytes in X0 to X1.
    	PCMPEQB	X0, X1
    	// Take the top bit of each byte in X1 and put the result in DX.
    	PMOVMSKB X1, DX
    	// Find first set bit, if any.
    	BSFL	DX, DX
    	JNZ	ssesuccess
    	// Advance to next block.
    	ADDQ	$16, DI
    sseloopentry:
    	CMPQ	DI, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_amd64.s

    	AESENC X1, X0
    	MOVUPS 48(AX), X1
    	AESENC X1, X0
    	MOVUPS 64(AX), X1
    	AESENC X1, X0
    	MOVUPS 80(AX), X1
    	AESENC X1, X0
    	MOVUPS 96(AX), X1
    	AESENC X1, X0
    	MOVUPS 112(AX), X1
    	AESENC X1, X0
    	MOVUPS 128(AX), X1
    	AESENC X1, X0
    	MOVUPS 144(AX), X1
    	AESENCLAST X1, X0
    	MOVUPS X0, 0(DX)
    	RET
    
    // func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·decryptBlockAsm(SB),NOSPLIT,$0
    	MOVQ nr+0(FP), CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/internal/bytealg/count_amd64.s

    	LEAQ	-16(SI)(BX*1), AX	// AX = address of last 16 bytes
    	JMP	sseloopentry
    
    	PCALIGN $16
    sseloop:
    	// Move the next 16-byte chunk of the data into X1.
    	MOVOU	(DI), X1
    	// Compare bytes in X0 to X1.
    	PCMPEQB	X0, X1
    	// Take the top bit of each byte in X1 and put the result in DX.
    	PMOVMSKB X1, DX
    	// Count number of matching bytes
    	POPCNTL DX, DX
    	// Accumulate into R12
    	ADDQ DX, R12
    	// Advance to next block.
    	ADDQ	$16, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

      public void testMappingAnd_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = 5.6;
        double yDelta = 7.8;
        LinearTransformation transformation =
            LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta);
        assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta);
      }
    
      public void testMappingAnd_horizontal() {
        double x1 = 1.2;
        double xDelta = 3.4;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/math/LinearTransformationTest.java

      public void testMappingAnd_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = 5.6;
        double yDelta = 7.8;
        LinearTransformation transformation =
            LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta);
        assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta);
      }
    
      public void testMappingAnd_horizontal() {
        double x1 = 1.2;
        double xDelta = 3.4;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. test/codegen/condmove.go

    	if cond {
    		x1 = -b
    	} else {
    		x1 = a
    	}
    	// arm64:"CSNEG\tEQ", -"CSEL"
    	r1 = x1
    }
    
    func cmovsetm(cond bool, x int) {
    	var x0, x1 int
    
    	if cond {
    		x0 = -1
    	} else {
    		x0 = 0
    	}
    	// arm64:"CSETM\tNE", -"CSEL"
    	r0 = x0
    
    	if cond {
    		x1 = 0
    	} else {
    		x1 = -1
    	}
    	// arm64:"CSETM\tEQ", -"CSEL"
    	r1 = x1
    }
    
    func cmovFcmp0(s, t float64, a, b int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue20780b.go

    package main
    
    import "fmt"
    
    const N = 2e6
    
    type Big = [N]int
    
    var sink interface{}
    
    func main() {
    	g(0, f(0))
    
    	x1 := f(1)
    	sink = &x1
    	g(1, x1)
    	g(7, f(7))
    	g(1, x1)
    
    	x3 := f(3)
    	sink = &x3
    	g(1, x1)
    	g(3, x3)
    
    	h(f(0), x1, f(2), x3, f(4))
    }
    
    //go:noinline
    func f(k int) (x Big) {
    	for i := range x {
    		x[i] = k*N + i
    	}
    	return
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 860 bytes
    - Viewed (0)
  9. src/internal/bytealg/index_amd64.s

    _16_or_more:
    	CMPQ AX, $16
    	JA   _17_or_more
    	MOVOU (R8), X1
    	LEAQ -15(DI)(DX*1), DX
    loop16:
    	MOVOU (DI), X2
    	PCMPEQB X1, X2
    	PMOVMSKB X2, SI
    	CMPQ  SI, $0xffff
    	JE   success
    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop16
    	JMP fail
    _17_or_more:
    	CMPQ AX, $31
    	JA   _32_or_more
    	LEAQ 1(DI)(DX*1), DX
    	SUBQ AX, DX
    	MOVOU -16(R8)(AX*1), X0
    	MOVOU (R8), X1
    loop17to31:
    	MOVOU (DI), X2
    	PCMPEQB X1,X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

            itemList.add(new SynonymItem(3, new String[] { "c1" }, new String[] { "C1", "C2" }));
            itemList.add(new SynonymItem(4, new String[] { "x1", "X1" }, new String[] { "x1", "X1" }));
            itemList.add(new SynonymItem(5, new String[] { "y1", "Y1", "y2" }, new String[] { "y1", "Y1", "y2" }));
            synonymFile.synonymItemList = itemList;
        }
    
        public void test_selectList() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top