HomeSort by relevance Sort by last modified time
    Searched full:bitlength (Results 101 - 125 of 242) sorted by null

1 2 3 45 6 7 8 910

  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1_test.go 136 bitLength int
155 if test.bitLength != ret.BitLength || !bytes.Equal(ret.Bytes, test.out) {
156 t.Errorf("#%d: Bad result: %v (expected %v %v)", i, ret, test.out, test.bitLength)
642 BitLength: 592,
656 BitLength: 512,
    [all...]
marshal.go 233 paddingBits := byte((8 - b.BitLength%8) % 8)
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1_test.go 136 bitLength int
155 if test.bitLength != ret.BitLength || !bytes.Equal(ret.Bytes, test.out) {
156 t.Errorf("#%d: Bad result: %v (expected %v %v)", i, ret, test.out, test.bitLength)
642 BitLength: 592,
656 BitLength: 512,
    [all...]
marshal.go 233 paddingBits := byte((8 - b.BitLength%8) % 8)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 324 int log2Norm = norm.bitLength();
602 * @param m The bitlength of the underlying finite field.
746 int log2Norm = norm.bitLength();
ECPoint.java 974 if (a4Neg.bitLength() < a4.bitLength())
    [all...]
ECCurve.java 611 return q.bitLength();
708 return x != null && x.signum() >= 0 && x.bitLength() <= this.getFieldSize();
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 261 int byteCount = (fieldValue.bitLength() + 6) / 7;
  /external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
IntMathTest.java 350 return big.bitLength() <= 31;
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java     [all...]
  /external/zopfli/src/zopfli/
katajainen.c 220 return 0; /* Only one symbol, give it bitlength 1, not 0. OK. */
  /prebuilts/go/darwin-x86/src/compress/flate/
huffman_code.go 98 func (h *huffmanEncoder) bitLength(freq []int32) int64 {
  /prebuilts/go/linux-x86/src/compress/flate/
huffman_code.go 98 func (h *huffmanEncoder) bitLength(freq []int32) int64 {
  /cts/tests/tests/keystore/src/android/keystore/cts/
TestUtils.java 121 return ((RSAKey) key).getModulus().bitLength();
754 int keySizeBytes = ((RSAKey) key).getModulus().bitLength() / 8;
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 505 int adjustment = -f_guess.bitLength()/4;
658 eval_prec + deriv_difference.bitLength() + 4/*slop*/;
CR.java 368 length = max_appr.bitLength();
370 length = max_appr.negate().bitLength();
    [all...]
  /external/freetype/src/gzip/
infblock.c 54 only if BitLength(i) is not zero. (Pretty obvious.)
  /external/guava/guava-tests/test/com/google/common/math/
IntMathTest.java 585 return big.bitLength() <= 31;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
infblock.c 54 only if BitLength(i) is not zero. (Pretty obvious.)
  /external/pdfium/third_party/bigint/
BigUnsigned.hh 108 Index bitLength() const;
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /frameworks/base/keystore/tests/src/android/security/keystore/
AndroidKeyPairGeneratorTest.java 343 (keySize + 7) & ~7, (rsaPubKey.getModulus().bitLength() + 7) & ~7);
  /libcore/ojluni/src/main/java/sun/security/ec/
NamedCurve.java 127 field = new ECFieldF2m(p.bitLength() - 1, p);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bcrypt.h 351 ULONG BitLength;
  /external/v8/benchmarks/
crypto.js 662 BigInteger.prototype.bitLength = bnBitLength;
768 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
1100 var i = e.bitLength(), k, r = nbv(1), z;
    [all...]

Completed in 1561 milliseconds

1 2 3 45 6 7 8 910