Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for RET (0.01 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/vpclmulqdq_avx512f.s

    	VPCLMULQDQ $97, 7(SI)(DI*1), Z26, Z12              // 62732d4044a43e0700000061 or 6273ad4044a43e0700000061
    	VPCLMULQDQ $97, 15(DX)(BX*8), Z26, Z12             // 62732d4044a4da0f00000061 or 6273ad4044a4da0f00000061
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_4fmaps.s

    	V4FNMADDSS -17(BP)(SI*8), [X21-X24], K4, X30       // 62625704abb4f5efffffff or 62625724abb4f5efffffff or 62625744abb4f5efffffff
    	V4FNMADDSS (R15), [X21-X24], K4, X30               // 62425704ab37 or 62425724ab37 or 62425744ab37
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  3. doc/asm.html

    	0x002f 00047 (x.go:4)	CALL	runtime.printnl(SB)
    	0x0034 00052 (x.go:4)	CALL	runtime.printunlock(SB)
    	0x0039 00057 (x.go:5)	MOVQ	8(SP), BP
    	0x003e 00062 (x.go:5)	ADDQ	$16, SP
    	0x0042 00066 (x.go:5)	RET
    	0x0043 00067 (x.go:5)	NOP
    	0x0043 00067 (x.go:3)	PCDATA	$1, $-1
    	0x0043 00067 (x.go:3)	PCDATA	$0, $-1
    	0x0043 00067 (x.go:3)	CALL	runtime.morestack_noctxt(SB)
    	0x0048 00072 (x.go:3)	JMP	0
    ...
    </pre>
    
    <p>
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52LUQ Z13, Z5, K7, Z28                       // 6242d54fb4e5
    	VPMADD52LUQ 7(AX), Z5, K7, Z28                     // 6262d54fb4a007000000
    	VPMADD52LUQ (DI), Z5, K7, Z28                      // 6262d54fb427
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-minio-idp.sh

    sleep 30
    
    ./mc ls -r --versions minio1/newbucket >/tmp/minio1.txt
    ./mc ls -r --versions minio2/newbucket >/tmp/minio2.txt
    
    out=$(diff -qpruN /tmp/minio1.txt /tmp/minio2.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after replication resync: $out"
    	exit 1
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	HASHST R2, -8(R1)                       // 7fe115a5
    	HASHSTP R2, -8(R1)                      // 7fe11525
    	HASHCHK -8(R1), R2                      // 7fe115e5
    	HASHCHKP -8(R1), R2                     // 7fe11565
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VMOVDQA32.Z Z0, K0, Z1           // ERROR "invalid instruction"
    	VMOVDQA32.Z Z0, K1, Z1           // ok
    
    	RDPID (BX)			 // ERROR "invalid instruction"
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm64.s

    	CASPW	(R6, R7), (R8), (R4, R5)             // 047d2608
    	CASPD	(R2, R3), (R2), (R8, R9)             // 487c2248
    
    // RET
    	RET                                        // c0035fd6
    	RET R0					   // 00005fd6
    	RET R6					   // c0005fd6
    	RET R27					   // 60035fd6
    	RET R30					   // c0035fd6
    	RET	foo(SB)
    
    // B/BL/B.cond cases, and canonical names JMP, CALL.
    	BL	1(PC)      // CALL 1(PC)
    	BL	(R2)       // CALL (R2)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 95.3K bytes
    - Viewed (0)
  9. tests/create_test.go

    	}
    
    	var idVal int64
    	_, ok := mapValue1["id"].(uint)
    	if ok {
    		t.Skipf("This test case skipped, because the db supports returning")
    	}
    
    	idVal, ok = mapValue1["id"].(int64)
    	if !ok {
    		t.Fatal("ret result missing id")
    	}
    
    	if int64(result1.ID) != idVal {
    		t.Fatal("failed to create data from map with table, @id != id")
    	}
    
    	// case2: one record, create from *map[string]interface{}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 09:55:20 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_bitalg.s

    	VPSHUFBITQMB Z21, Z25, K7, K5                      // 62b235478fed
    	VPSHUFBITQMB -15(R14)(R15*1), Z25, K7, K5          // 629235478fac3ef1ffffff
    	VPSHUFBITQMB -15(BX), Z25, K7, K5                  // 62f235478fabf1ffffff
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 10.4K bytes
    - Viewed (0)
Back to top