Searched refs:ZERO (Results 1 - 25 of 293) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt001lexer.py28 self.failUnlessEqual(token.type, self.lexerModule.ZERO)
40 self.failUnlessEqual(types, [self.lexerModule.ZERO])
H A Dt002lexer.py28 self.failUnlessEqual(token.type, self.lexerModule.ZERO)
H A Dt003lexer.py28 self.failUnlessEqual(token.type, self.lexerModule.ZERO)
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dbasic.rb14 ZERO: '0';
21 token.name.should == 'ZERO'
31 token_types.should == %w(ZERO)
55 ZERO: '0';
63 token.name.should == 'ZERO'
92 ZERO: '0';
101 token.name.should == 'ZERO'
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DDHParameterSpecTest.java44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO,
46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO,
H A DDHPrivateKeySpecTest.java42 BigInteger[] xs = { new BigInteger("-1000000000000"), BigInteger.ZERO,
44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO,
46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO,
H A DDHPublicKeySpecTest.java42 BigInteger[] ys = { new BigInteger("-1000000000000"), BigInteger.ZERO,
44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO,
46 BigInteger[] gs = { new BigInteger("-1000000000000"), BigInteger.ZERO,
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DAlgorithmParametersTest.java527 BigInteger g = BigInteger.ZERO;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DECPointTest.java54 new ECPoint(BigInteger.ZERO, BigInteger.ZERO);
71 new ECPoint(null, BigInteger.ZERO);
79 new ECPoint(BigInteger.ZERO, null);
191 p2 = new ECPoint(BigInteger.valueOf(-23456L), BigInteger.ZERO);
196 p2 = new ECPoint(BigInteger.valueOf(-23456L), BigInteger.ZERO);
H A DEllipticCurveTest.java52 a = BigInteger.ZERO;
269 a = BigInteger.ZERO;
H A DRSAMultiPrimePrivateCrtKeySpecTest.java598 opi1[2] = new RSAOtherPrimeInfo(BigInteger.ZERO,
599 BigInteger.ZERO,
600 BigInteger.ZERO);
631 ret[2] = new RSAOtherPrimeInfo(BigInteger.ZERO,
632 BigInteger.ZERO,
633 BigInteger.ZERO);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
H A DECParameterSpec_ImplTest.java56 BigInteger.ZERO,
58 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
73 BigInteger.ZERO,
75 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
121 BigInteger.ZERO,
123 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
136 new ECParameterSpec(curve, generator, BigInteger.ZERO, 10);
178 BigInteger.ZERO,
180 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
201 BigInteger.ZERO,
[all...]
H A DECPrivateKeySpec_ImplTest.java57 BigInteger.ZERO,
59 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
60 new ECPrivateKeySpec(BigInteger.ZERO,
76 BigInteger.ZERO,
78 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
118 BigInteger.ZERO,
120 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
124 ECPrivateKeySpec ks = new ECPrivateKeySpec(BigInteger.ZERO, params);
144 BigInteger.ZERO,
146 ECPoint g = new ECPoint(BigInteger.ZERO, BigIntege
[all...]
H A DECPublicKeySpec_ImplTest.java57 BigInteger.ZERO,
59 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
76 BigInteger.ZERO,
78 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
117 BigInteger.ZERO,
119 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
142 BigInteger.ZERO,
144 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
168 BigInteger.ZERO,
170 ECPoint g = new ECPoint(BigInteger.ZERO, BigIntege
[all...]
H A DEllipticCurve_ImplTest.java64 BigInteger.ZERO,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
H A DSECNamedCurves.java152 BigInteger a = ECConstants.ZERO;
230 BigInteger a = ECConstants.ZERO;
282 BigInteger a = ECConstants.ZERO;
334 BigInteger a = ECConstants.ZERO;
693 BigInteger a = ECConstants.ZERO;
747 BigInteger a = ECConstants.ZERO;
776 BigInteger a = ECConstants.ZERO;
832 BigInteger a = ECConstants.ZERO;
888 BigInteger a = ECConstants.ZERO;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DGeneralSubtree.java34 private static final BigInteger ZERO = BigInteger.valueOf(0); field in class:GeneralSubtree
168 return ZERO;
206 if (minimum != null && !minimum.getValue().equals(ZERO))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java27 private static final BigInteger ZERO = BigInteger.valueOf(0); field in class:DSAParametersGenerator
275 BigInteger W = ZERO;
H A DECKeyPairGenerator.java50 while (d.equals(ZERO) || (d.compareTo(n) >= 0));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DECDSASigner.java111 while (r.equals(ZERO));
117 while (s.equals(ZERO));
H A DRandomDSAKCalculator.java9 private static final BigInteger ZERO = BigInteger.valueOf(0); field in class:RandomDSAKCalculator
39 while (k.equals(ZERO) || k.compareTo(q) >= 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateKey.java26 private static BigInteger ZERO = BigInteger.valueOf(0); field in class:BCRSAPrivateKey
80 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPrivateKey.java26 private static BigInteger ZERO = BigInteger.valueOf(0); field in class:JCERSAPrivateKey
80 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECConstants.java7 public static final BigInteger ZERO = BigInteger.valueOf(0); field in interface:ECConstants
H A DECCurve.java879 ECFieldElement zeroElement = fromBigInteger(ECConstants.ZERO);

Completed in 519 milliseconds

1234567891011>>