Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for testObj (0.38 sec)

  1. src/cmd/compile/internal/ssa/rewriteAMD64splitload.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (CMPBconstload {sym} [vo] ptr mem)
    	// cond: vo.Val() == 0
    	// result: (TESTB x:(MOVBload {sym} [vo.Off()] ptr mem) x)
    	for {
    		vo := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		mem := v_1
    		if !(vo.Val() == 0) {
    			break
    		}
    		v.reset(OpAMD64TESTB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            javaLibrary.assertPublished()
            if (ivyConfiguration == 'compile') {
                javaLibrary.assertApiDependencies('org.gradle.test:b:1.2')
            }
            if (gradleConfiguration != 'compileOnlyApi') {
                javaLibrary.assertRuntimeDependencies('org.gradle.test:b:1.2')
            }
    
            where:
            plugin         | gradleConfiguration | ivyConfiguration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. test/codegen/bits.go

    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    // Check AND masking on arm64 (Issue #19857)
    
    func and_mask_1(a uint64) uint64 {
    	// arm64:`AND\t`
    	return a & ((1 << 63) - 1)
    }
    
    func and_mask_2(a uint64) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #  else
    #    define CU_EXPORT
    #  endif
    #  if _MSC_VER < 1900
    #    define snprintf _snprintf
    #  endif
    #else
    #  define CU_EXPORT
    #endif  /* WIN32 */
    
    #include "CUError.h"
    #include "TestDB.h"   /* not needed here - included for user convenience */
    #include "TestRun.h"  /* not needed here - include (after BOOL define) for user convenience */
    
    /** Record a pass condition without performing a logical test. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/anames.go

    	"SUBB",
    	"SUBL",
    	"SUBPD",
    	"SUBPS",
    	"SUBQ",
    	"SUBSD",
    	"SUBSS",
    	"SUBW",
    	"SWAPGS",
    	"SYSCALL",
    	"SYSENTER",
    	"SYSENTER64",
    	"SYSEXIT",
    	"SYSEXIT64",
    	"SYSRET",
    	"TESTB",
    	"TESTL",
    	"TESTQ",
    	"TESTW",
    	"TPAUSE",
    	"TZCNTL",
    	"TZCNTQ",
    	"TZCNTW",
    	"UCOMISD",
    	"UCOMISS",
    	"UD1",
    	"UD2",
    	"UMWAIT",
    	"UNPCKHPD",
    	"UNPCKHPS",
    	"UNPCKLPD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org:foo:1.0", "org:foo:1.1").byConflictResolution("between versions 1.1 and 1.0").byConstraint('transitive dependency constraint')
                    project(":b", "test:b:") {
                        configuration = "conf"
                        noArtifacts()
                        constraint("org:foo:1.1", "org:foo:1.1").byConstraint('transitive dependency constraint')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    		if !(0 <= int8(m) && int8(m) < n) {
    			break
    		}
    		v.reset(Op386FlagLT_ULT)
    		return true
    	}
    	// match: (CMPBconst l:(ANDL x y) [0])
    	// cond: l.Uses==1
    	// result: (TESTB x y)
    	for {
    		if auxIntToInt8(v.AuxInt) != 0 {
    			break
    		}
    		l := v_0
    		if l.Op != Op386ANDL {
    			break
    		}
    		y := l.Args[1]
    		x := l.Args[0]
    		if !(l.Uses == 1) {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                        capability('cap')
                    }
                }
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
                        capability('cap')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:testA:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            run ':a:checkDeps'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkDeps')
            resolveRelease.expectGraph {
                root(":a", "test:a:") {
                    project(':b', 'test:b:') {
                        variant 'bar', [flavor: 'free', buildType: 'release']
                        artifact name: 'b-bar'
                    }
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/x86/ssa.go

    		s.Prog(x86.AREP)
    		s.Prog(x86.AMOVSL)
    	case ssa.Op386LoweredNilCheck:
    		// Issue a load which will fault if the input is nil.
    		// TODO: We currently use the 2-byte instruction TESTB AX, (reg).
    		// Should we use the 3-byte TESTB $0, (reg) instead? It is larger
    		// but it doesn't have false dependency on AX.
    		// Or maybe allocate an output register and use MOVL (reg),reg2 ?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top