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

1 2 3

  /ndk/tests/device/test-gnustl-full/unit/
unary.h 15 struct positive : public unary_function<int, bool> { struct in inherits:unary_function
  /ndk/tests/device/test-stlport/unit/
unary.h 15 struct positive : public unary_function<int, bool> { struct in inherits:unary_function
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 15 ECPoint positive = multiplyPositive(p, k.abs()); local
16 ECPoint result = sign > 0 ? positive : positive.negate();
  /external/eigen/test/eigen2/
eigen2_svd.cpp 58 MatrixType unitary, positive; local
59 svd.computeUnitaryPositive(&unitary, &positive);
61 VERIFY_IS_APPROX(positive, positive.adjoint());
62 for(int i = 0; i < rows; i++) VERIFY(positive.diagonal()[i] >= 0); // cheap necessary (not sufficient) condition for positivity
63 VERIFY_IS_APPROX(unitary*positive, a);
65 svd.computePositiveUnitary(&positive, &unitary);
67 VERIFY_IS_APPROX(positive, positive.adjoint());
68 for(int i = 0; i < rows; i++) VERIFY(positive.diagonal()[i] >= 0); // cheap necessary (not sufficient) condition for positivit
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 40 private static final BigInteger[] positive = new BigInteger[ARRAY_SIZE]; field in class:BigIntegerMathRoundingBenchmark
48 positive[i] = randomPositiveBigInteger(1024);
58 tmp += BigIntegerMath.log2(positive[j], mode);
67 tmp += BigIntegerMath.log10(positive[j], mode);
76 tmp += BigIntegerMath.sqrt(positive[j], mode).intValue();
IntMathRoundingBenchmark.java 38 private static final int[] positive = new int[ARRAY_SIZE]; field in class:IntMathRoundingBenchmark
45 positive[i] = randomPositiveBigInteger(Integer.SIZE - 2).intValue();
58 tmp += IntMath.log2(positive[j], mode);
67 tmp += IntMath.log10(positive[j], mode);
76 tmp += IntMath.sqrt(positive[j], mode);
LongMathRoundingBenchmark.java 41 private static final long[] positive = new long[ARRAY_SIZE]; field in class:LongMathRoundingBenchmark
48 positive[i] = randomPositiveBigInteger(Long.SIZE - 2).longValue();
58 tmp += LongMath.log2(positive[j], mode);
67 tmp += LongMath.log10(positive[j], mode);
76 tmp += LongMath.sqrt(positive[j], mode);
IntMathBenchmark.java 39 private static final int[] positive = new int[ARRAY_SIZE]; field in class:IntMathBenchmark
49 positive[i] = randomPositiveBigInteger(Integer.SIZE - 1).intValue();
59 tmp += IntMath.pow(positive[j], exponent[j]);
68 tmp += IntMath.mod(ints[j], positive[j]);
77 tmp += IntMath.gcd(nonnegative[j], positive[j]);
LongMathBenchmark.java 39 private static final long[] positive = new long[ARRAY_SIZE]; field in class:LongMathBenchmark
47 positive[i] = randomPositiveBigInteger(Long.SIZE - 1).longValue();
62 tmp += LongMath.pow(positive[j], exponents[j]);
71 tmp += LongMath.mod(longs[j], positive[j]);
80 tmp += LongMath.mod(nonnegative[j], positive[j]);
  /external/proguard/src/proguard/gui/
FilterBuilder.java 53 StringBuffer positive = new StringBuffer(); local
56 buildFilter("", positive, negative);
58 return positive.length() <= negative.length() ?
59 positive.toString() :
67 * @param positive the filter to be extended, assuming the matching
73 StringBuffer positive,
101 // Extend the positive filter with exceptions and return.
102 if (positive.length() > 0)
104 positive.append(',');
106 positive.append('!').append(prefix)
    [all...]
  /external/pdfium/third_party/bigint/
BigInteger.hh 30 enum Sign { negative = -1, zero = 0, positive = 1 }; enumerator in enum:BigInteger::Sign
51 sign = mag.isZero() ? zero : positive;
59 sign = mag.isZero() ? zero : positive;
  /platform_testing/libraries/chrome-app-helper/src/android/platform/test/helpers/
ChromeHelperImpl.java 119 // Press positive buttons until through setup wizard
125 UiObject2 positive = mDevice.wait(Until.findObject( local
127 if (positive != null) {
128 positive.click();
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSeekBarTest.java 64 final int positive = 5; local
68 myAbsSeekBar.setThumbOffset(positive);
69 assertEquals(positive, myAbsSeekBar.getThumbOffset());
  /external/mesa3d/src/mesa/program/
prog_execute.c 53 * Set x to positive or negative infinity.
84 * Return TRUE for +0 and other positive values, FALSE otherwise.
88 positive(float x) function
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 601 Set<Character> positive = Sets.newHashSetWithExpectedSize(chars.length); local
603 positive.add(chars[i]);
606 assertFalse(positive.contains(new Character((char) c)) ^ m.matches((char) c));
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 719 Set<Character> positive = Sets.newHashSetWithExpectedSize(chars.length); local
721 positive.add(chars[i]);
724 assertFalse(positive.contains(new Character((char) c)) ^ m.matches((char) c));
  /external/opencv/cv/src/
cvhaar.cpp 137 CV_ERROR( CV_StsOutOfRange, "Number of stages should be positive" );
220 "(has null pointers or non-positive classfier count)", i );
451 CV_ERROR( CV_StsOutOfRange, "Scale must be positive" );
1011 int positive = 0; local
    [all...]
  /external/opencv3/modules/objdetect/src/
haar.cpp 143 CV_Error( CV_StsOutOfRange, "Number of stages should be positive" );
222 "(has null pointers or non-positive classfier count)", i );
443 CV_Error( CV_StsOutOfRange, "Scale must be positive" );
1326 int positive = (ssz.width\/ystep)*((ssz.height + ystep-1)\/ystep); local
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 563 bool positive = (instr & B23) == B23; local
565 return positive ? offset : -offset;
571 bool positive = (instr & B23) == B23; local
574 return positive ? offset : -offset;
580 bool positive = offset >= 0; local
581 if (!positive) offset = -offset;
584 instr = (instr & ~B23) | (positive ? B23 : 0);
593 bool positive = offset >= 0; local
594 if (!positive) offset = -offset;
597 instr = (instr & ~B23) | (positive ? B23 : 0)
610 bool positive = offset >= 0; local
    [all...]
  /external/v8/src/ppc/
code-stubs-ppc.cc 223 // If input was positive, scratch_high ASR 31 equals 0 and
575 // On exit r3 is 0, positive or negative to indicate the result of
3206 Label positive; local
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest.cc 213 "exclude). A test is run if it matches one of the positive "
482 // positive filter and negative filter portions
485 String positive; local
488 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
491 positive = String(p, dash - p); // Everything up to the dash
493 if (positive.empty()) {
495 positive = kUniversalFilter;
501 return (MatchesFilter(full_name, positive.c_str()) &&
    [all...]
  /external/gtest/src/
gtest.cc 219 "exclude). A test is run if it matches one of the positive "
485 // positive filter and negative filter portions
488 std::string positive; local
491 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
494 positive = std::string(p, dash); // Everything up to the dash
496 if (positive.empty()) {
498 positive = kUniversalFilter;
504 return (MatchesFilter(full_name, positive.c_str()) &&
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 150 static void leapadd(zic_t t, int positive, int rolling, int count);
1338 register int positive; local
1363 leapadd(tadd(t, tod), positive, lp->l_value, count); local
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest.cc 212 "exclude). A test is run if it matches one of the positive "
481 // positive filter and negative filter portions
484 String positive; local
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
490 positive = String(p, dash - p); // Everything up to the dash
492 if (positive.empty()) {
494 positive = kUniversalFilter;
500 return (MatchesFilter(full_name, positive.c_str()) &&
    [all...]
  /external/mesa3d/src/gtest/src/
gtest.cc 212 "exclude). A test is run if it matches one of the positive "
481 // positive filter and negative filter portions
484 String positive; local
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
490 positive = String(p, dash - p); // Everything up to the dash
492 if (positive.empty()) {
494 positive = kUniversalFilter;
500 return (MatchesFilter(full_name, positive.c_str()) &&
    [all...]

Completed in 468 milliseconds

1 2 3