Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for sub2 (0.05 sec)

  1. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("float64(i16) != di16")
    	}
    	if float64(i8) != di8 {
    		t.Errorf("float64(i8) != di8")
    	}
    	if float32(u64) != su64 {
    		t.Errorf("float32(u64) != su64")
    	}
    	if float32(u32) != su32 {
    		t.Errorf("float32(u32) != su32")
    	}
    	if float32(u16) != su16 {
    		t.Errorf("float32(u16) != su16")
    	}
    	if float32(u8) != su8 {
    		t.Errorf("float32(u8) != su8")
    	}
    	if float32(i64) != si64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/abt/avlint32_test.go

    		// B is larger, union favors reuse from larger when function is "first"
    		t.Errorf("Failed aliasing/reuse check, A/aub1")
    	}
    	aub2 := A.Union(B, second)
    	assert(t, AUB, aub2, "aub2")
    	if B.Find(3) != aub2.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub2")
    	}
    	aub3 := B.Union(A, first)
    	assert(t, AUB, aub3, "aub3")
    	if B.Find(3) != aub3.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub3")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/SessionTest.java

                "forceSpnegoIntegrity",
                "noSpnegoIntegrity",
                "rawNTLM",
                "noUnicode",
                "forceUnicode",
                "noNTStatus",
                "smb2",
                "smb2-nego",
                "smb30",
                "smb31");
        }
    
    
        @Test
        public void logonUser () throws IOException {
            try ( SmbResource f = getDefaultShareRoot() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. src/math/big/arith_arm64.s

    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);				\
    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);				\
    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);
    
    // do one iteration of add or sub in addVW/subVW
    #define vwOneIter(instr, counter, exit)	\
    	CBZ	counter, exit;		\	// careful not to touch the carry flag
    	LDP.P	32(R1), (R4, R5);	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/math/bits/bits.go

    // --- Subtract with borrow ---
    
    // Sub returns the difference of x, y and borrow: diff = x - y - borrow.
    // The borrow input must be 0 or 1; otherwise the behavior is undefined.
    // The borrowOut output is guaranteed to be 0 or 1.
    //
    // This function's execution time does not depend on the inputs.
    func Sub(x, y, borrow uint) (diff, borrowOut uint) {
    	if UintSize == 32 {
    		d32, b32 := Sub32(uint32(x), uint32(y), uint32(borrow))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * 
         * @see DialectVersion
         * @return maximum protocol version to use/allow
         * @since 2.1
         */
        DialectVersion getMaximumVersion ();
    
    
        /**
         * Use SMB2 non-backward compatible negotiation style
         * 
         * Property <tt>jcifs.smb.client.useSMB2Negotiation</tt> (boolean, default false)
         * 
         * @return whether to use non-backward compatible protocol negotiation
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.s

    	CMP     R14,$1
    	BNE     castshTable
    	MOVD    $·IEEEConst(SB),R3
    	ADD	$4080,R3
    	BR      startshConst
    castshTable:
    	MOVD    $·CastConst(SB),R3
    	ADD	$4080,R3
    
    startshConst:
    	SUBC	R5,$256,R6	// sub from 256
    	ADD	R3,R6,R3
    
    	// calculate where to start
    
    	SRD	$4,R5,R7
    	MOVD	R7,CTR
    
    	VXOR	V19,V19,V19
    	VXOR	V20,V20,V20
    
    	LVX	(R4),V0
    	LVX	(R3),V16
    	VXOR	V0,V8,V0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileAttributesTest.java

            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
        public static Collection<Object> configs () {
            return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
        }
    
    
        @Test
        public void testBaseFile () throws MalformedURLException, CIFSException {
            try ( SmbResource f = getDefaultShareRoot() ) {
                checkConnection(f);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/EnumTest.java

            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
        public static Collection<Object> configs () {
            return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
        }
    
    
        @Ignore ( "This causes a connection to whatever local master browser is available, config may be incompatible with it" )
        @Test
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            setup:
            def m1 = mavenHttpRepo.module('org.foo', 'some-dep').publish()
    
            createDirs("projectB", "projectB/sub1")
            file("projectB/settings.gradle") << """
            rootProject.name = 'project-b'
            include "sub1"
            """
    
            file("projectB/build.gradle") << """
                    buildscript {
                        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top