HomeSort by relevance Sort by last modified time
    Searched refs:ONE (Results 151 - 175 of 359) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetNonGwtTest.java 63 CollectionSize.ONE,
105 * It's a warning if a TestCase subclass contains no tests, so we add one.
  /frameworks/base/keystore/tests/src/android/security/
KeyPairGeneratorSpecTest.java 33 private static final BigInteger SERIAL_1 = BigInteger.ONE;
46 assertEquals("Context should be the one specified", getContext(), spec.getContext());
48 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias());
50 assertEquals("Key algorithm should be the one specified", "RSA", spec.getKeyType());
52 assertEquals("Key size should be the one specified", 1024, spec.getKeySize());
54 assertEquals("subjectDN should be the one specified", TEST_DN_1, spec.getSubjectDN());
56 assertEquals("startDate should be the one specified", NOW, spec.getStartDate());
58 assertEquals("endDate should be the one specified", NOW_PLUS_10_YEARS, spec.getEndDate());
73 assertEquals("Context should be the one specified", getContext(), spec.getContext());
75 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerAndTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
132 * And for zero and one
136 BigInteger bNumber = BigInteger.ONE;
143 * And for one and one
146 BigInteger aNumber = BigInteger.ONE;
147 BigInteger bNumber = BigInteger.ONE;
149 assertTrue(result.equals(BigInteger.ONE));
  /libcore/luni/src/main/java/java/security/spec/
ECFieldF2m.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
86 // the leftmost bit must be (m+1)-th one,
161 BigInteger rpTmp = BigInteger.ONE.setBit(this.m);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_fpc.h 89 /* Having zero and one in here makes the definition of swizzle a lot
114 #define ONE SRC_ONE
125 (ONE << UREG_CHANNEL_ONE_SHIFT))
137 /* One neat thing about the UREG representation:
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600GenRegisterInfo.pl 66 def ONE : R600Reg<"1.0">;
89 ZERO, HALF, ONE, ONE_INT, PV_X, ALU_LITERAL_X, NEG_ONE, NEG_HALF)>;
  /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) {
  /external/eigen/blas/
chbmv.f 137 COMPLEX ONE
138 PARAMETER (ONE= (1.0E+0,0.0E+0))
180 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
196 * are accessed sequentially with one pass through A.
200 IF (BETA.NE.ONE) THEN
chpmv.f 103 COMPLEX ONE
104 PARAMETER (ONE= (1.0E+0,0.0E+0))
142 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
158 * are accessed sequentially with one pass through AP.
162 IF (BETA.NE.ONE) THEN
dsbmv.f 133 DOUBLE PRECISION ONE,ZERO
134 PARAMETER (ONE=1.0D+0,ZERO=0.0D+0)
174 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
190 * are accessed sequentially with one pass through A.
194 IF (BETA.NE.ONE) THEN
dspmv.f 101 DOUBLE PRECISION ONE,ZERO
102 PARAMETER (ONE=1.0D+0,ZERO=0.0D+0)
135 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
151 * are accessed sequentially with one pass through AP.
155 IF (BETA.NE.ONE) THEN
ssbmv.f 135 REAL ONE,ZERO
136 PARAMETER (ONE=1.0E+0,ZERO=0.0E+0)
176 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
192 * are accessed sequentially with one pass through A.
196 IF (BETA.NE.ONE) THEN
sspmv.f 101 REAL ONE,ZERO
102 PARAMETER (ONE=1.0E+0,ZERO=0.0E+0)
135 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
151 * are accessed sequentially with one pass through AP.
155 IF (BETA.NE.ONE) THEN
zhbmv.f 137 DOUBLE COMPLEX ONE
138 PARAMETER (ONE= (1.0D+0,0.0D+0))
180 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
196 * are accessed sequentially with one pass through A.
200 IF (BETA.NE.ONE) THEN
zhpmv.f 103 DOUBLE COMPLEX ONE
104 PARAMETER (ONE= (1.0D+0,0.0D+0))
142 IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
158 * are accessed sequentially with one pass through AP.
162 IF (BETA.NE.ONE) THEN
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddAllAtIndexTester.java 20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
137 @CollectionSize.Require(absent = {ZERO, ONE})
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc.h 89 /* Having zero and one in here makes the definition of swizzle a lot
114 #define ONE SRC_ONE
125 (ONE << UREG_CHANNEL_ONE_SHIFT))
137 /* One neat thing about the UREG representation:
  /external/mesa3d/src/gallium/drivers/radeon/
R600GenRegisterInfo.pl 66 def ONE : R600Reg<"1.0">;
89 ZERO, HALF, ONE, ONE_INT, PV_X, ALU_LITERAL_X, NEG_ONE, NEG_HALF)>;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
EnumTest.java 1 /* Licensed to the Apache Software Foundation (ASF) under one or more
49 ONE;
199 MockCloneEnum.ONE.callClone();
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
ordinalrules.js 35 ONE: 'one',
122 return goog.i18n.ordinalRules.Keyword.ONE;
143 return goog.i18n.ordinalRules.Keyword.ONE;
158 return goog.i18n.ordinalRules.Keyword.ONE;
188 return goog.i18n.ordinalRules.Keyword.ONE;
209 return goog.i18n.ordinalRules.Keyword.ONE;
227 return goog.i18n.ordinalRules.Keyword.ONE;
251 return goog.i18n.ordinalRules.Keyword.ONE;
276 return goog.i18n.ordinalRules.Keyword.ONE;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_matrix.c     [all...]
  /external/mesa3d/src/mesa/math/
m_matrix.c     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js 72 // We need to select the fastest one that works in this environment.
414 // "this" should be the larger one if appropriate.
482 BigInteger.ONE.dlShiftTo(ys,t);
591 // use am to combine the multiply-shift-add into one call
622 if(e > 0xffffffff || e < 1) return BigInteger.ONE;
668 BigInteger.ONE = nbv(1);
764 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
768 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
920 var r = BigInteger.ONE.shiftLeft(n);
1027 // "this" should be the larger one if appropriate
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 64 // We need to select the fastest one that works in this environment.
406 // "this" should be the larger one if appropriate.
474 BigInteger.ONE.dlShiftTo(ys,t);
583 // use am to combine the multiply-shift-add into one call
614 if(e > 0xffffffff || e < 1) return BigInteger.ONE;
660 BigInteger.ONE = nbv(1);
756 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
760 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
912 var r = BigInteger.ONE.shiftLeft(n);
1019 // "this" should be the larger one if appropriate
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js 64 // We need to select the fastest one that works in this environment.
406 // "this" should be the larger one if appropriate.
474 BigInteger.ONE.dlShiftTo(ys,t);
583 // use am to combine the multiply-shift-add into one call
614 if(e > 0xffffffff || e < 1) return BigInteger.ONE;
660 BigInteger.ONE = nbv(1);
756 this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this);
760 if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this);
912 var r = BigInteger.ONE.shiftLeft(n);
1019 // "this" should be the larger one if appropriate
    [all...]

Completed in 5168 milliseconds

1 2 3 4 5 67 8 91011>>