Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for BitLength (0.24 sec)

  1. android/guava/src/com/google/common/math/BigIntegerMath.java

      }
    
      /** Returns {@code true} if {@code x} represents a power of two. */
      public static boolean isPowerOfTwo(BigInteger x) {
        checkNotNull(x);
        return x.signum() > 0 && x.getLowestSetBit() == x.bitLength() - 1;
      }
    
      /**
       * Returns the base-2 logarithm of {@code x}, rounded according to the specified rounding mode.
       *
       * @throws IllegalArgumentException if {@code x <= 0}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

      }
    
      /** Returns {@code true} if {@code x} represents a power of two. */
      public static boolean isPowerOfTwo(BigInteger x) {
        checkNotNull(x);
        return x.signum() > 0 && x.getLowestSetBit() == x.bitLength() - 1;
      }
    
      /**
       * Returns the base-2 logarithm of {@code x}, rounded according to the specified rounding mode.
       *
       * @throws IllegalArgumentException if {@code x <= 0}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    		return nil, err
    	}
    
    	pkix := pkixPublicKey{
    		Algo: publicKeyAlgorithm,
    		BitString: asn1.BitString{
    			Bytes:     publicKeyBytes,
    			BitLength: 8 * len(publicKeyBytes),
    		},
    	}
    
    	ret, _ := asn1.Marshal(pkix)
    	return ret, nil
    }
    
    // These structures reflect the ASN.1 structure of X.509 certificates.:
    
    type certificate struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/IntMathTest.java

        // parseInt blows up on overflow as opposed to intValue() which does not.
        return Integer.parseInt(bigMean.toString());
      }
    
      private static boolean fitsInInt(BigInteger big) {
        return big.bitLength() <= 31;
      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNullPointers() {
        NullPointerTester tester = new NullPointerTester();
        tester.setDefault(int.class, 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/LongMathTest.java

        // parseInt blows up on overflow as opposed to intValue() which does not.
        return Long.parseLong(bigMean.toString());
      }
    
      private static boolean fitsInLong(BigInteger big) {
        return big.bitLength() <= 63;
      }
    
      private static final BigInteger MAX_LONG = BigInteger.valueOf(Long.MAX_VALUE);
      private static final BigInteger MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/encoding/asn1/marshal.go

    	return dst
    }
    
    type bitStringEncoder BitString
    
    func (b bitStringEncoder) Len() int {
    	return len(b.Bytes) + 1
    }
    
    func (b bitStringEncoder) Encode(dst []byte) {
    	dst[0] = byte((8 - b.BitLength%8) % 8)
    	if copy(dst[1:], b.Bytes) != len(b.Bytes) {
    		panic("internal error")
    	}
    }
    
    type oidEncoder []int
    
    func (oid oidEncoder) Len() int {
    	l := base128IntLength(int64(oid[0]*40 + oid[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/LongMathTest.java

        // parseInt blows up on overflow as opposed to intValue() which does not.
        return Long.parseLong(bigMean.toString());
      }
    
      private static boolean fitsInLong(BigInteger big) {
        return big.bitLength() <= 63;
      }
    
      private static final BigInteger MAX_LONG = BigInteger.valueOf(Long.MAX_VALUE);
      private static final BigInteger MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	paddingBits := bytes[0]
    	bytes = bytes[1:]
    	if paddingBits > 7 ||
    		len(bytes) == 0 && paddingBits != 0 ||
    		len(bytes) > 0 && bytes[len(bytes)-1]&(1<<paddingBits-1) != 0 {
    		return false
    	}
    
    	out.BitLength = len(bytes)*8 - int(paddingBits)
    	out.Bytes = bytes
    	return true
    }
    
    // ReadASN1BitStringAsBytes decodes an ASN.1 BIT STRING into out and advances. It is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	}
    }
    
    // VersionLen is the Config Version and is only used as the nonce prefix, but we can reconstruct
    // it because is is a b64 encoding of a 64 bit array, which will always be 12 chars in length.
    // len = ceil(bitlength/(2^6))+1
    const VersionLen = 12
    
    func (s *DiscoveryServer) getResourceVersion(nonce, key string, cache map[string]string) string {
    	if len(nonce) < VersionLen {
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(ObjectIdentifier).Equal", Method, 0},
    		{"(ObjectIdentifier).String", Method, 3},
    		{"(StructuralError).Error", Method, 0},
    		{"(SyntaxError).Error", Method, 0},
    		{"BitString", Type, 0},
    		{"BitString.BitLength", Field, 0},
    		{"BitString.Bytes", Field, 0},
    		{"ClassApplication", Const, 6},
    		{"ClassContextSpecific", Const, 6},
    		{"ClassPrivate", Const, 6},
    		{"ClassUniversal", Const, 6},
    		{"Enumerated", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top