Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 196 for MASK (0.03 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		// Check if XMM and YMM registers have OS support.
    		osSupportsAVX = isSet(1, eax) && isSet(2, eax)
    
    		if runtime.GOOS == "darwin" {
    			// Darwin doesn't save/restore AVX-512 mask registers correctly across signal handlers.
    			// Since users can't rely on mask register contents, let's not advertise AVX-512 support.
    			// See issue 49233.
    			osSupportsAVX512 = false
    		} else {
    			// Check if OPMASK and ZMM registers have OS support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    	}
    	os.Exit(2)
    }
    
    // funcflags.go T_exitinexpr 281 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0],"ResultFlags":null}
    // callsite: funcflags.go:286:18|0 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_exitinexpr(x int) {
    	// This function does indeed unconditionally call exit, since the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeAllOf.java

            return new DefaultExcludeAllOf(components);
        }
    
        private DefaultExcludeAllOf(ImmutableSet<ExcludeSpec> components) {
            super(components);
        }
    
        @Override
        int mask() {
            return 1877062907;
        }
    
        private Boolean mayExcludeArtifacts;
    
        @Override
        protected String getDisplayName() {
            return "all of";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultExcludeAnyOf.java

            return new DefaultExcludeAnyOf(components);
        }
    
        private DefaultExcludeAnyOf(ImmutableSet<ExcludeSpec> components) {
            super(components);
        }
    
        @Override
        int mask() {
            return 1731217984;
        }
    
        private Boolean mayExcludeArtifacts;
    
        @Override
        protected String getDisplayName() {
            return "any of";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/crypto/elliptic/elliptic.go

    	priv = make([]byte, byteLen)
    
    	for x == nil {
    		_, err = io.ReadFull(rand, priv)
    		if err != nil {
    			return
    		}
    		// We have to mask off any excess bits in the case that the size of the
    		// underlying field is not a whole number of bytes.
    		priv[0] &= mask[bitSize%8]
    		// This is because, in tests, rand will return all zeros and we don't
    		// want to get the point at infinity and loop forever.
    		priv[1] ^= 0x42
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/syscall/syscall_js.go

    	}
    	return groups, nil
    }
    
    func Getpid() int {
    	return jsProcess.Get("pid").Int()
    }
    
    func Getppid() int {
    	return jsProcess.Get("ppid").Int()
    }
    
    func Umask(mask int) (oldmask int) {
    	return jsProcess.Call("umask", mask).Int()
    }
    
    func Gettimeofday(tv *Timeval) error { return ENOSYS }
    
    func Kill(pid int, signum Signal) error { return ENOSYS }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/LocaleSupportDaemonIntegrationTest.groovy

            // We want to test with both the development and release version here because the development version
            // (with timestamp) causes the Java Calendar object to initialize before log initialization, which can
            // mask issues involving the Calendar initialization publishing messages to the log infrastructure.
            overrideVersion << [GradleVersion.current().baseVersion.version, GradleVersion.current().version]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/math/dim_s390x.s

    TEXT ·archMax(SB),NOSPLIT,$0
    	// +Inf special cases
    	MOVD    $PosInf, R4
    	MOVD    x+0(FP), R8
    	CMPUBEQ R4, R8, isPosInf
    	MOVD    y+8(FP), R9
    	CMPUBEQ R4, R9, isPosInf
    	// NaN special cases
    	MOVD    $~(1<<63), R5 // bit mask
    	MOVD    $PosInf, R4
    	MOVD    R8, R2
    	AND     R5, R2 // x = |x|
    	CMPUBLT R4, R2, isMaxNaN
    	MOVD    R9, R3
    	AND     R5, R3 // y = |y|
    	CMPUBLT R4, R3, isMaxNaN
    	// ±0 special cases
    	OR      R3, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java

        int[] expected = new int[256];
        for (int i = 0; i < expected.length; i++) {
          int crc = i;
          for (int j = 7; j >= 0; j--) {
            int mask = -(crc & 1);
            crc = ((crc >>> 1) ^ (CRC32C_GENERATOR_FLIPPED & mask));
          }
          expected[i] = crc;
        }
    
        int[] actual = Crc32cHashFunction.Crc32cHasher.BYTE_TABLE;
        assertTrue(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 23 18:30:33 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  10. src/net/interface_linux.go

    			continue
    		}
    		switch ifam.Family {
    		case syscall.AF_INET:
    			return &IPNet{IP: IPv4(a.Value[0], a.Value[1], a.Value[2], a.Value[3]), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv4len)}
    		case syscall.AF_INET6:
    			ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv6len)}
    			copy(ifa.IP, a.Value[:])
    			return ifa
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top