HomeSort by relevance Sort by last modified time
    Searched defs:TWO (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
091-hash-line.c 11 #define TWO 2
12 #line NINETY TWO /* A #line line with macro expansion */
  /external/mesa3d/src/glsl/glcpp/tests/
091-hash-line.c 11 #define TWO 2
12 #line NINETY TWO /* A #line line with macro expansion */
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
mmx_blendtmp.h 43 #define TWO(x)
46 #undef TWO
68 #define TWO(x) x
71 #undef TWO
93 #define TWO(x)
96 #undef TWO
  /external/mesa3d/src/mesa/x86/
mmx_blendtmp.h 43 #define TWO(x)
46 #undef TWO
68 #define TWO(x) x
71 #undef TWO
93 #define TWO(x)
96 #undef TWO
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.java 9 public static final BigInteger TWO = BigInteger.valueOf(2);
  /external/clang/test/SemaCXX/
pragma-vtordisp.cpp 20 #define TWO 1
21 #pragma vtordisp(push, TWO)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHKeyGeneratorHelper.java 14 private static final BigInteger TWO = BigInteger.valueOf(2);
30 BigInteger min = TWO;
37 BigInteger max = p.subtract(TWO);
41 max = q.subtract(TWO);
DHParametersGenerator.java 14 private static final BigInteger TWO = BigInteger.valueOf(2);
50 return new DHParameters(p, g, q, TWO, null);
DHParametersHelper.java 18 private static final BigInteger TWO = BigInteger.valueOf(2);
66 BigInteger pMinusTwo = p.subtract(TWO);
74 // g = BigIntegers.createRandomInRange(TWO, pMinusTwo, random);
76 // while (g.modPow(TWO, p).equals(ONE) || g.modPow(q, p).equals(ONE));
84 BigInteger h = BigIntegers.createRandomInRange(TWO, pMinusTwo, random);
86 g = h.modPow(TWO, p);
DSAParametersGenerator.java 29 private static final BigInteger TWO = BigInteger.valueOf(2);
202 BigInteger pSub2 = p.subtract(TWO);
206 BigInteger h = BigIntegers.createRandomInRange(TWO, pSub2, r);
253 BigInteger q = ONE.shiftLeft(N - 1).add(U).add(ONE).subtract(U.mod(TWO));
360 if (g.compareTo(TWO) >= 0)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
EnumConstantNotPresentExceptionTest.java 24 ONE, TWO, THREE
  /libcore/luni/src/main/java/libcore/icu/
NativePluralRules.java 30 public static final int TWO = 2;
  /art/compiler/dex/quick/
resource_mask.cc 53 // This should be a two-dimensions array, kSingleRegMasks[][32] and each line should be
92 #define TWO(a, b) ResourceMask::Bit(a).Union(ResourceMask::Bit(b))
94 TWO(0, 1),
95 TWO(0, 2), TWO(1, 2),
96 TWO(0, 3), TWO(1, 3), TWO(2, 3),
97 TWO(0, 4), TWO(1, 4), TWO(2, 4), TWO(3, 4)
    [all...]
  /art/test/055-enum-performance/src/
SamePackagePrivateEnum.java 2 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
SamePackagePublicEnum.java 2 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
  /art/test/055-enum-performance/src/otherpackage/
OtherPackagePublicEnum.java 4 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
  /dalvik/dx/tests/091-ssa-const-collector/
Blort.java 5 ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN,EIGHT
  /external/clang/test/FixIt/
fixit.c 40 #define TWO 2
45 // CHECK: x = y ? ONE : TWO;
46 x = y ? ONE TWO; // expected-error {{':'}} expected-note {{to match}}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ObjectOutputStream2Test.java 35 TWO {
50 os.writeObject(MyEnum.TWO);
57 assertSame(MyEnum.TWO, readObj);
  /external/eigen/blas/
drotm.f 56 DOUBLE PRECISION DFLAG,DH11,DH12,DH21,DH22,TWO,W,Z,ZERO
60 DATA ZERO,TWO/0.D0,2.D0/
64 IF (N.LE.0 .OR. (DFLAG+TWO.EQ.ZERO)) GO TO 140
srotm.f 57 REAL SFLAG,SH11,SH12,SH21,SH22,TWO,W,Z,ZERO
61 DATA ZERO,TWO/0.E0,2.E0/
65 IF (N.LE.0 .OR. (SFLAG+TWO.EQ.ZERO)) GO TO 140
drotmg.f 53 + DU,GAM,GAMSQ,ONE,RGAMSQ,TWO,ZERO
61 DATA ZERO,ONE,TWO/0.D0,1.D0,2.D0/
72 DFLAG = -TWO
srotmg.f 55 + SQ2,STEMP,SU,TWO,ZERO
63 DATA ZERO,ONE,TWO/0.E0,1.E0,2.E0/
74 SFLAG = -TWO
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidEnumTest.java 26 ZERO, ONE, TWO, THREE, FOUR {boolean isFour() {
42 assertTrue(MyEnum.TWO.compareTo(MyEnum.ONE) > 0);
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidHashMapTest.java 25 private static final Integer TWO = 2;
31 map.put("two", TWO);
38 assertEquals(TWO, map.get("two"));
78 assertNull(map.put("two", 2));
84 assertEquals(2, map.get("two").intValue());
89 assertTrue(map.containsKey("two"));
99 assertEquals(2, map.remove("two").intValue());
124 } else if (s.equals("two")) {
    [all...]

Completed in 906 milliseconds

1 2