Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for sub (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LSUBW rreg ',' sreg ',' rreg
    //	{
    //		outcode(int($1), &$2, int($4), &$6);
    //	}
    	SUB	R6, R26, R27	// 0346d822
    	SUBU	R6, R26, R27	// 0346d823
    	SUBV	R16, R17, R26	// 0230d02e
    	SUBVU	R16, R17, R26	// 0230d02f
    
    //	LSUBW imm ',' sreg ',' rreg
    //	{
    //		outcode(int($1), &$2, int($4), &$6);
    //	}
    	SUB	$-3126, R17, R22	// 22360c36
    	SUB	$3126, R17, R22		// 2236f3ca
    	SUBU	$16384, R17, R12	// 262cc000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	ADDW	R1, R2, R3            // b9f81032
    	ADDW	$8192, R1             // a71a2000
    	ADDW	$8192, R1, R2         // ec21200000d8
    	ADDE	R1, R2                // b9880021
    	SUB	R3, R4                // b9090043
    	SUB	R3, R4, R5            // b9e93054
    	SUB	$8192, R3             // a73be000
    	SUB	$8192, R3, R4         // ec43e00000d9
    	SUBC	R1, R2                // b90b0021
    	SUBC	$1, R1, R2            // ec21ffff00db
    	SUBC	R2, R3, R4            // b9eb2043
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/operand_test.go

    		tests []operandTest
    	}
    	for _, sub := range []subtest{
    		{"amd64", amd64OperandTests},
    		{"386", x86OperandTests},
    		{"arm", armOperandTests},
    		{"arm64", arm64OperandTests},
    		{"ppc64", ppc64OperandTests},
    		{"mips", mipsOperandTests},
    		{"mips64", mips64OperandTests},
    		{"loong64", loong64OperandTests},
    		{"s390x", s390xOperandTests},
    	} {
    		t.Run(sub.arch, func(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg math/big, method (*Float) SetUint64(uint64) *Float
    pkg math/big, method (*Float) Sign() int
    pkg math/big, method (*Float) Signbit() bool
    pkg math/big, method (*Float) String() string
    pkg math/big, method (*Float) Sub(*Float, *Float) *Float
    pkg math/big, method (*Float) Text(uint8, int) string
    pkg math/big, method (*Float) Uint64() (uint64, Accuracy)
    pkg math/big, method (*Int) ModSqrt(*Int, *Int) *Int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const BPF_ST ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_STX = 3
    pkg syscall (netbsd-arm64-cgo), const BPF_STX ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_SUB = 16
    pkg syscall (netbsd-arm64-cgo), const BPF_SUB ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_TAX = 0
    pkg syscall (netbsd-arm64-cgo), const BPF_TAX ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_TXA = 128
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    	<br>
    	If <code>a<sub>i</sub></code> is an untyped constant <code>c<sub>j</sub></code>,
    	and <code>typeof(p<sub>i</sub>)</code> is a bound type parameter <code>P<sub>k</sub></code>,
    	the pair <code>(c<sub>j</sub>, P<sub>k</sub>)</code> is collected separately from
    	the type equations.
    	</p>
    </li>
    <li>
    	<p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SRL	X6, X5, X7				// b3d36200
    	SRL	X5, X6					// 33535300
    	SRL	$1, X5, X6				// 13d31200
    	SRL	$1, X5					// 93d21200
    
    	SUB	X6, X5, X7				// b3836240
    	SUB	X5, X6					// 33035340
    	SUB	$-2047, X5, X6				// 1383f27f
    	SUB	$2048, X5, X6				// 13830280
    	SUB	$-2047, X5				// 9382f27f
    	SUB	$2048, X5				// 93820280
    
    	SRA	X6, X5, X7				// b3d36240
    	SRA	X5, X6					// 33535340
    	SRA	$1, X5, X6				// 13d31240
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm.s

    	SUB	R0->28, R1           // 401e41e0
    	SUB	R0@>28, R1           // 601e41e0
    	SUB.S	R0<<28, R1           // 001e51e0
    	SUB.S	R0>>28, R1           // 201e51e0
    	SUB.S	R0->28, R1           // 401e51e0
    	SUB.S	R0@>28, R1           // 601e51e0
    	SUB	R0<<R1, R2, R3       // 103142e0
    	SUB	R0>>R1, R2, R3       // 303142e0
    	SUB	R0->R1, R2, R3       // 503142e0
    	SUB	R0@>R1, R2, R3       // 703142e0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	MOVV	$65536, R4		// 04020014
    	MOVV	$4096, R4		// 24000014
    	MOVW	R4, R5			// 85001700
    	MOVV	R4, R5			// 85001500
    	MOVBU	R4, R5			// 85fc4303
    	SUB	R4, R5, R6		// a6101100
    	SUBV	R4, R5, R6		// a6901100
    	ADD	R4, R5, R6		// a6101000
    	ADDV	R4, R5, R6		// a6901000
    	AND	R4, R5, R6		// a6901400
    	SUB	R4, R5			// a5101100
    	SUBV	R4, R5			// a5901100
    	ADD	R4, R5			// a5101000
    	ADDV	R4, R5			// a5901000
    	AND	R4, R5			// a5901400
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 31 02:56:19 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/archive/tar/format.go

    //	ChangeTime        |    n/a | unlimited |     int89
    //	Devmajor/Devminor | uint21 |    uint21 |    uint57
    //	------------------+--------+-----------+----------
    //	string encoding   |  ASCII |     UTF-8 |    binary
    //	sub-second times  |     no |       yes |        no
    //	sparse files      |     no |       yes |       yes
    //
    // The table's upper portion shows the [Header] fields, where each format reports
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
Back to top