Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for asinSC (0.11 sec)

  1. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

      }
    
      private static class ExpectedHashCode {
        final byte[] bytes;
        final int asInt;
        final Long asLong; // null means that asLong should throw an exception
        final String toString;
    
        ExpectedHashCode(byte[] bytes, int asInt, @Nullable Long asLong, String toString) {
          this.bytes = bytes;
          this.asInt = asInt;
          this.asLong = asLong;
          this.toString = toString;
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/math/stubs_s390x.s

    TEXT ·asinhTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                 // vectorfacility = 1, vector supported
    	MOVD   $·asinhvectorfacility+0x00(SB), R1
    	MOVD   $·asinh(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·asinh(SB)
    
    vectorimpl:
    	MOVD $·asinhvectorfacility+0x00(SB), R1
    	MOVD $·asinhAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·asinhAsm(SB)
    
    GLOBL ·asinhvectorfacility+0x00(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultJavaLanguageVersionTest.groovy

            expect:
            for (int i = DefaultJavaLanguageVersion.LOWER_CACHED_VERSION; i <= DefaultJavaLanguageVersion.HIGHER_CACHED_VERSION; i++) {
                assert knownVersions[i - DefaultJavaLanguageVersion.LOWER_CACHED_VERSION].asInt() == i
            }
        }
    
        def 'special cases versions 1 to 4'() {
            given:
            def values = 1..4
    
            expect:
            values.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/HashCode.java

          return bytes.length * 8;
        }
    
        @Override
        public byte[] asBytes() {
          return bytes.clone();
        }
    
        @Override
        public int asInt() {
          checkState(
              bytes.length >= 4,
              "HashCode#asInt() requires >= 4 bytes (it only has %s bytes).",
              bytes.length);
          return (bytes[0] & 0xFF)
              | ((bytes[1] & 0xFF) << 8)
              | ((bytes[2] & 0xFF) << 16)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AbstractJavaCompileSpecFactory.java

                return chooseSpecFromCompileOptions(toolchainJavaHome);
            }
    
            if (!toolchain.isCurrentJvm()) {
                return getForkingSpec(toolchainJavaHome, toolchain.getLanguageVersion().asInt());
            }
    
            return getDefaultSpec();
        }
    
        private T chooseSpecFromCompileOptions(File fallbackJavaHome) {
            File forkJavaHome = compileOptions.getForkOptions().getJavaHome();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/math/asinh_s390x.s

    DATA ·asinhtab2080<> + 120(SB)/8, $0.469505379381388441E-01
    GLOBL ·asinhtab2080<> + 0(SB), RODATA, $128
    
    // Asinh returns the inverse hyperbolic sine of the argument.
    //
    // Special cases are:
    //      Asinh(±0) = ±0
    //      Asinh(±Inf) = ±Inf
    //      Asinh(NaN) = NaN
    // The algorithm used is minimax polynomial approximation
    // with coefficients determined with a Remez exchange algorithm.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/HashCode.java

          return bytes.length * 8;
        }
    
        @Override
        public byte[] asBytes() {
          return bytes.clone();
        }
    
        @Override
        public int asInt() {
          checkState(
              bytes.length >= 4,
              "HashCode#asInt() requires >= 4 bytes (it only has %s bytes).",
              bytes.length);
          return (bytes[0] & 0xFF)
              | ((bytes[1] & 0xFF) << 8)
              | ((bytes[2] & 0xFF) << 16)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaLanguageVersion.java

        }
    
        private final int version;
    
        private DefaultJavaLanguageVersion(int version) {
            this.version = version;
        }
    
        @Override
        public int asInt() {
            return version;
        }
    
        @Override
        public String toString() {
            if (version < 5) {
                return String.format("1.%d", version);
            }
            return Integer.toString(version);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/HashTestUtils.java

            int key1 = rand.nextInt();
            // flip input bit for key2
            int key2 = key1 ^ (1 << i);
            // get hashes
            int hash1 = function.hashInt(key1).asInt();
            int hash2 = function.hashInt(key2).asInt();
            // test whether the hash values have same output bits
            same |= ~(hash1 ^ hash2);
            // test whether the hash values have different output bits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainTest.groovy

                getVendor() >> DefaultJvmVendorSpec.any().toString()
                getImplementation() >> JvmImplementation.VENDOR_SPECIFIC.toString()
            }, false)
            then:
            javaToolchain.languageVersion.asInt() == languageVersion
            javaToolchain.javaRuntimeVersion == runtimeVersion
            javaToolchain.jvmVersion == jvmVersion
    
            where:
            javaVersion | runtimeVersion  | jvmVersion   | languageVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top