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

1 2 3

  /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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
mmx_blend.S 29 TWO(PSUBW ( MX1, MA2 )) /* a2 + 1 | a2 + 1 | a2 + 1 | a2 + 1 */ ;\
30 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
33 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 ~= t2/255 */
42 * in this case just the first two terms to fit in 16bit arithmetic
51 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
56 TWO(MOVQ ( MA2, MP2 )) ;\
57 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 */ ;\
62 TWO(PADDW ( MP2, MA2 )) /* t2 + (t2 >> 8) ~= (t2/255) << 8 */ ;\
63 TWO(PSRLW ( CONST(8), MA2 )) /* sa2 | sb2 | sg2 | sr2 */
81 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;
    [all...]
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_blend.S 29 TWO(PSUBW ( MX1, MA2 )) /* a2 + 1 | a2 + 1 | a2 + 1 | a2 + 1 */ ;\
30 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
33 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 ~= t2/255 */
42 * in this case just the first two terms to fit in 16bit arithmetic
51 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
56 TWO(MOVQ ( MA2, MP2 )) ;\
57 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 */ ;\
62 TWO(PADDW ( MP2, MA2 )) /* t2 + (t2 >> 8) ~= (t2/255) << 8 */ ;\
63 TWO(PSRLW ( CONST(8), MA2 )) /* sa2 | sb2 | sg2 | sr2 */
81 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;
    [all...]
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/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 */
  /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/clang/test/SemaCXX/
pragma-vtordisp.cpp 20 #define TWO 1
21 #pragma vtordisp(push, TWO)
  /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,
  /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);
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);
DHParametersGenerator.java 14 private static final BigInteger TWO = BigInteger.valueOf(2);
50 return new DHParameters(p, g, q, TWO, null);
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)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.java 9 public static final BigInteger TWO = BigInteger.valueOf(2);
  /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/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/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;
  /dalvik/dx/tests/091-ssa-const-collector/
Blort.java 5 ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN,EIGHT
  /libcore/luni/src/test/java/libcore/icu/
NativePluralRulesTest.java 43 assertEquals(NativePluralRules.TWO, npr.quantityForInt(2));
60 assertEquals(NativePluralRules.TWO, he.quantityForInt(2));
  /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...]
  /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

Completed in 6515 milliseconds

1 2 3