HomeSort by relevance Sort by last modified time
    Searched refs:ONE (Results 176 - 200 of 556) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedInteger.java 46 public static final UnsignedInteger ONE = fromIntBits(1);
  /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));
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
ExtendedAnnotationTest.java 115 assertEquals(ValuesEnum.ONE, en);
186 assertEquals(ValuesEnum.ONE, en[0]);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
ECDSASigner.java 145 if (r.compareTo(ONE) < 0 || r.compareTo(n) >= 0)
151 if (s.compareTo(ONE) < 0 || s.compareTo(n) >= 0)
  /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/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
BigIntegerMath.java 195 return BigInteger.ONE;
228 BigInteger accum = BigInteger.ONE;
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedLongTest.java 51 .add(BigInteger.ONE.shiftLeft(63).add(bigI))
52 .add(BigInteger.ONE.shiftLeft(64).add(bigI));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapEntriesTester.java 18 import static com.google.common.collect.testing.features.CollectionSize.ONE;
108 @CollectionSize.Require(ONE)
MultimapKeysTester.java 18 import static com.google.common.collect.testing.features.CollectionSize.ONE;
91 @CollectionSize.Require(ONE)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddAllAtIndexTester.java 20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
136 @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:
  /frameworks/base/core/java/android/security/keymaster/
KeymasterArguments.java 38 private static final BigInteger UINT64_RANGE = BigInteger.ONE.shiftLeft(64);
39 public static final BigInteger UINT64_MAX_VALUE = UINT64_RANGE.subtract(BigInteger.ONE);
  /frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
BallsRS.java 89 builder.setBlendFunc(ProgramStore.BlendSrcFunc.ONE, ProgramStore.BlendDstFunc.ONE);
  /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();
  /libcore/luni/src/test/java/libcore/java/text/
NumberFormatTest.java 64 assertEquals("double", nf.format(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE)));
66 assertEquals("double", nf.format(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE)));
  /external/mesa3d/src/mesa/math/
m_matrix.c     [all...]
  /external/v8/benchmarks/
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...]
  /bionic/libm/x86_64/
s_tan.S 150 movq ONE(%rip), %xmm6
206 movq ONE(%rip), %xmm7
457 movq ONE(%rip), %xmm6
514 movq ONE(%rip), %xmm7
    [all...]
s_cos.S 266 movq ONE(%rip), %xmm1
1239 ONE:
1242 .type ONE,@object
1243 .size ONE,8
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyPairGeneratorSpecTest.java 34 private static final BigInteger SERIAL_1 = BigInteger.ONE;
51 assertEquals("Context should be the one specified", getContext(), spec.getContext());
53 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias());
55 assertEquals("subjectDN should be the one specified", TEST_DN_1, spec.getSubjectDN());
57 assertEquals("startDate should be the one specified", NOW, spec.getStartDate());
59 assertEquals("endDate should be the one specified", NOW_PLUS_10_YEARS, spec.getEndDate());
74 assertEquals("Context should be the one specified", getContext(), spec.getContext());
76 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias());
78 assertEquals("subjectDN should be the one specified", TEST_DN_1, spec.getSubjectDN());
80 assertEquals("startDate should be the one specified", NOW, spec.getStartDate())
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsNordsieckTransformer.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
150 * (excluding the one being computed)
160 Arrays.fill(u, BigFraction.ONE);
199 * (excluding the one being computed)
214 * (excluding the one being computed).
216 * (excluding the one being computed)
232 * (excluding the one being computed)
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 47 public static final UnsignedInteger ONE = fromIntBits(1);
UnsignedLong.java 48 public static final UnsignedLong ONE = new UnsignedLong(1);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
PerCollectionSizeTestSuiteBuilder.java 80 CollectionSize.ZERO, CollectionSize.ONE, CollectionSize.SEVERAL));
123 /** Builds a test suite for one particular {@link CollectionSize}. */
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 74 .withFeatures(CollectionSize.ONE,

Completed in 1526 milliseconds

1 2 3 4 5 6 78 91011>>