HomeSort by relevance Sort by last modified time
    Searched defs:ONE (Results 26 - 50 of 56) sorted by null

12 3

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
41 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
42 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
43 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 25 private static final BigInteger ONE = BigInteger.valueOf(1);
128 BigInteger p = x.subtract(c.subtract(ONE));
147 BigInteger e = p.subtract(ONE).divide(q);
195 BigInteger U = new BigInteger(1, output).mod(ONE.shiftLeft(N - 1));
198 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
229 Vj = Vj.mod(ONE.shiftLeft(b));
236 BigInteger X = W.add(ONE.shiftLeft(L - 1));
242 BigInteger p = X.subtract(c.subtract(ONE));
288 // BigInteger e = p.subtract(ONE).divide(q)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 187 throw new IllegalArgumentException("Exactly one of the field elements is null");
356 throw new IllegalArgumentException("Exactly one of the field elements is null");
557 ECFieldElement ONE = this.curve.fromBigInteger(ECConstants.ONE);
560 x3.multiply(lambda.add(ONE)));
  /external/clang/test/SemaCXX/
array-bounds.cpp 197 #define ONE 1
198 struct foo { char c[ONE]; }; // expected-note {{declared here}}
uninitialized.cpp 32 enum count { ONE, TWO, THREE };
57 A a6(a6.ONE);
  /external/easymock/src/org/easymock/
MockControl.java 412 * Exactly one call.
414 public static final Range ONE = MocksControl.ONCE;
417 * One or more calls.
638 if (range == ONE) {
  /frameworks/base/graphics/java/android/renderscript/
ProgramStore.java 98 ONE (1),
124 ONE (1),
239 builder.setBlendFunc(BlendSrcFunc.ONE, BlendDstFunc.ZERO);
260 builder.setBlendFunc(BlendSrcFunc.ONE, BlendDstFunc.ZERO);
339 mBlendSrc = BlendSrcFunc.ONE;
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidHashMapTest.java 24 private static final Integer ONE = 1;
30 map.put("one", ONE);
37 assertEquals(ONE, map.get("one"));
70 assertNull(map.get("one"));
71 assertFalse(map.containsKey("one"));
74 assertNull(map.remove("one"));
77 assertNull(map.put("one", 1));
83 assertEquals(1, map.get("one").intValue())
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 54 private static final Integer ONE = Integer.valueOf(1);
253 * Return a Cursor containing just one message from the ICC.
479 values.put(Sms.READ, ONE);
  /external/mesa3d/test/
m_matrix.c     [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
69 public static final BigInteger ONE = new BigInteger(1, 1);
78 static final BigInteger[] SMALL_VALUES = { ZERO, ONE, new BigInteger(1, 2),
232 * @throws NumberFormatException if the sign is not one of -1, 0, 1 or if
304 // ... and then increment it back because we always drop one too many
    [all...]
BigDecimal.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
208 * The constant one as a {@code BigDecimal}.
210 public static final BigDecimal ONE = new BigDecimal(1, 0);
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 856 const int SHIFT = 10, ONE = 1 << SHIFT, R_THRESH = 30;
921 sx = cvRound(vx*ONE/fabs(vy));
922 sy = vy < 0 ? -ONE : ONE;
927 sy = cvRound(vy*ONE/fabs(vx));
928 sx = vx < 0 ? -ONE : ONE;
931 x0 = cvRound((x*idp)*ONE) + ONE + (ONE/2)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 102 public enum enumExm {ONE, TWO, THREE};
427 ONE, TWO, THREE
577 assertTrue(TestEnum.ONE.getClass().isEnum());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 122 ONE = 1,
810 // Per the behavior of glGetError, this stores at most one
    [all...]
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 1150 milliseconds

12 3