Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for TestB (0.38 sec)

  1. src/runtime/memmove_amd64.s

    	JE	move_8
    	CMPQ	BX, $16
    	JBE	move_9through16
    	CMPQ	BX, $32
    	JBE	move_17through32
    	CMPQ	BX, $64
    	JBE	move_33through64
    	CMPQ	BX, $128
    	JBE	move_65through128
    	CMPQ	BX, $256
    	JBE	move_129through256
    
    	TESTB	$1, runtime·useAVXmemmove(SB)
    	JNZ	avxUnaligned
    
    /*
     * check and set for backwards
     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	CMPQ	BX, $2048
    	JLS	move_256through2048
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	TESTQ R11, R11                          // 4d85db
    	TESTB $7, (BX)                          // f60307
    	TESTB $7, (R11)                         // 41f60307
    	TESTB $7, DL                            // f6c207
    	TESTB $7, R11                           // 41f6c307
    	TESTB DL, (BX)                          // 8413
    	TESTB R11, (BX)                         // 44841b
    	TESTB DL, (R11)                         // 418413
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		if !(0 <= int8(m) && int8(m) < n) {
    			break
    		}
    		v.reset(OpAMD64FlagLT_ULT)
    		return true
    	}
    	// match: (CMPBconst a:(ANDL x y) [0])
    	// cond: a.Uses == 1
    	// result: (TESTB x y)
    	for {
    		if auxIntToInt8(v.AuxInt) != 0 {
    			break
    		}
    		a := v_0
    		if a.Op != OpAMD64ANDL {
    			break
    		}
    		y := a.Args[1]
    		x := a.Args[0]
    		if !(a.Uses == 1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "TESTL", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTL", typ: "Flags"},
    		{name: "TESTW", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTW", typ: "Flags"},
    		{name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"},
    
    		// TESTxconst: compare (arg0 & auxint) to 0
    		{name: "TESTQconst", argLength: 1, reg: gp1flags, asm: "TESTQ", typ: "Flags", aux: "Int32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    api/tasks/testing/testng/TestNGOptions.html#getPreserveOrder--[TestNGOptions.getPreserveOrder()] property to `true`. If you set it to `false`, you may encounter scenarios in which the execution order is something like: `TestA.doBeforeClass()` -> `TestB.doBeforeClass()` -> `TestA` tests.
    
    While preserving the order of tests is the default behavior when directly working with _testng.xml_ files, the https://jitpack.io/com/github/cbeust/testng/master/javadoc/org/testng/TestNG.html[TestNG API]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		asm:         x86.ATESTW,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 255}, // AX CX DX BX SP BP SI DI
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    		},
    	},
    	{
    		name:        "TESTB",
    		argLen:      2,
    		commutative: true,
    		asm:         x86.ATESTB,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 255}, // AX CX DX BX SP BP SI DI
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top