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

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 51 int difference = 0.f; local
52 difference = (static_cast<float>(mX) - static_cast<float>(param.x())) *
56 return difference;
vec3.h 81 float difference = 0.f; local
82 difference = static_cast<float>(mRed - param.r()) *
88 return difference;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
SimpleRealPointChecker.java 28 * difference between each point coordinate are smaller than a threshold
29 * or if either the absolute difference between the point coordinates are
78 final double difference = FastMath.abs(p[i] - c[i]); local
80 if ((difference > (size * relativeThreshold)) && (difference > absoluteThreshold)) {
SimpleScalarValueChecker.java 28 * difference between the objective function values is smaller than a
29 * threshold or if either the absolute difference between the objective
77 final double difference = FastMath.abs(p - c); local
79 return (difference <= (size * relativeThreshold)) || (difference <= absoluteThreshold);
SimpleVectorialPointChecker.java 28 * difference between each point coordinate are smaller than a threshold
29 * or if either the absolute difference between the point coordinates are
80 final double difference = FastMath.abs(pi - ci); local
82 if ((difference > (size * relativeThreshold)) &&
83 (difference > absoluteThreshold)) {
SimpleVectorialValueChecker.java 28 * difference between the objective function values is smaller than a
29 * threshold or if either the absolute difference between the objective
80 final double difference = FastMath.abs(pi - ci); local
82 if ((difference > (size * relativeThreshold)) &&
83 (difference > absoluteThreshold)) {
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 97 * MS T-SQL DIFFERENCE</a>
103 public int difference(String s1, String s2) throws EncoderException { method in class:RefinedSoundex
104 return SoundexUtils.difference(this, s1, s2);
SoundexUtils.java 83 * MS T-SQL DIFFERENCE</a>
88 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException { method in class:SoundexUtils
110 * MS T-SQL DIFFERENCE</a>
  /external/libchrome/base/
stl_util_unittest.cc 81 std::set<int> difference; local
82 difference.insert(1);
83 difference.insert(2);
84 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a1, a2));
88 std::set<int> difference; local
89 difference.insert(5);
90 difference.insert(6);
91 difference.insert(7);
92 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a2, a1));
96 std::vector<int> difference; local
103 std::vector<int> difference; local
    [all...]
  /external/srtp/crypto/replay/
rdbx.c 77 * returns the difference of the guess and the local value. The local
79 * index_advance(&guess, delta), where delta is the difference.
117 * and returns the difference between *guess and *local
143 int difference; local
148 // The return value is the relative difference from local_seq to s.
152 // will end up positive difference and rdbx_check would pass. Hence after
157 difference = s - local_seq - seq_num_max;
160 difference = s - local_seq;
165 difference = seq_num_max - local_seq + s;
167 difference = s - local_seq
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
stl_util_unittest.cc 88 std::set<int> difference; local
89 difference.insert(1);
90 difference.insert(2);
91 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a1, a2));
95 std::set<int> difference; local
96 difference.insert(5);
97 difference.insert(6);
98 difference.insert(7);
99 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a2, a1));
103 std::vector<int> difference; local
110 std::vector<int> difference; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
Gusterpolator.java 77 float difference = input - quantized; local
78 float weight = difference / STEP_SIZE;
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
Gusterpolator.java 79 float difference = input - quantized; local
80 float weight = difference / STEP_SIZE;
  /cts/libs/view/src/com/android/view/
Position.java 66 double difference = originToOtherAngle - originToThisAngle; local
68 // If the difference exceeds PI or is less then -PI, then we should compensate to
70 if (difference < -Math.PI) {
71 difference += 2 * Math.PI;
72 } else if (difference > Math.PI){
73 difference -= 2 * Math.PI;
75 return difference;
  /external/google-breakpad/src/testing/gtest/samples/
sample10_unittest.cc 87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
  /external/protobuf/gtest/samples/
sample10_unittest.cc 87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_TRUE(difference <= 0)
93 << "Leaked " << difference << " unit(s) of Water!";
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample10_unittest.cc 87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
  /ndk/sources/third_party/googletest/googletest/samples/
sample10_unittest.cc 87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
  /ndk/tests/device/test-gnustl-full/unit/
adj_test.cpp 88 int difference[5]; local
89 adjacent_difference(numbers, numbers + 5, (int*)difference);
90 CPPUNIT_ASSERT(difference[0]==1);
91 CPPUNIT_ASSERT(difference[1]==1);
92 CPPUNIT_ASSERT(difference[2]==2);
93 CPPUNIT_ASSERT(difference[3]==4);
94 CPPUNIT_ASSERT(difference[4]==8);
  /ndk/tests/device/test-stlport/unit/
adj_test.cpp 88 int difference[5]; local
89 adjacent_difference(numbers, numbers + 5, (int*)difference);
90 CPPUNIT_ASSERT(difference[0]==1);
91 CPPUNIT_ASSERT(difference[1]==1);
92 CPPUNIT_ASSERT(difference[2]==2);
93 CPPUNIT_ASSERT(difference[3]==4);
94 CPPUNIT_ASSERT(difference[4]==8);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
QuantumInterpolator.java 125 float difference = input - quantized; local
126 float weight = difference / mStepSize;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
MeanSquaredComparer.java 87 float difference = idealSum - givenSum; local
88 totalError += (difference * difference);
  /external/v8/test/mjsunit/
top-level-assignments.js 88 Calculator.prototype.difference = function() { return this.x - this.y; };
94 assertEquals(10, calc.difference());
  /external/webrtc/webrtc/system_wrappers/include/
stl_util.h 216 // Returns a new ResultType containing the difference of two sorted containers.
221 ResultType difference; local
224 std::inserter(difference, difference.end()));
225 return difference;
  /prebuilts/misc/windows/sdl2/test/
testautomation_timer.c 75 Uint32 difference; local
93 /* Delay a bit longer and measure ticks and verify difference */
99 difference = result2 - result;
100 SDLTest_AssertCheck(difference > (testDelay - marginOfError), "Check difference, expected: >%d, got: %d", testDelay - marginOfError, difference);
101 SDLTest_AssertCheck(difference < (testDelay + marginOfError), "Check difference, expected: <%d, got: %d", testDelay + marginOfError, difference); local

Completed in 1019 milliseconds

1 2 3 4 5 6 7 8 91011>>