HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 401 - 425 of 3197) sorted by null

<<11121314151617181920>>

  /external/slf4j/integration/src/test/java/org/slf4j/
MultiBindingAssertionTest.java 37 int diff = 1024 + new Random().nextInt(10000); field in class:MultiBindingAssertionTest
55 String msg = "hello world " + diff;
VersionMismatchAssertionTest.java 36 int diff = 1024 + new Random().nextInt(10000); field in class:VersionMismatchAssertionTest
54 String msg = "hello world " + diff;
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.h 63 void diff(Module *L, Module *R);
64 void diff(Function *L, Function *R);
  /external/toolchain-utils/bestflags/examples/omnetpp/
test_omnetpp 11 diff ../../data/train/output/omnetpp.sca.result omnetpp.sca
  /frameworks/av/media/libstagefright/codecs/hevcdec/
SoftHEVC.h 48 #define TIME_DIFF(start, end, diff) \
49 diff = (((end).tv_sec - (start).tv_sec) * 1000000) + \
  /frameworks/base/core/java/com/android/internal/util/
TokenBucket.java 120 final int diff = (int) (now - mLastFill); local
121 mAvailable = Math.min(mCapacity, mAvailable + diff);
  /frameworks/base/native/
copy-to-ndk.sh 26 if diff $src $dst >/dev/null; then
42 if diff $SRC_LIB_ANDROID $DST_LIB_ANDROID >/dev/null; then
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 166 float diff = Math.abs(endValue - currValue); local
172 float durationSeconds = startGradient * diff / velAbs;
181 = new VelocityInterpolator(durationSeconds, velAbs, diff);
252 float diff = Math.abs(endValue - currValue); local
258 float durationSeconds = startGradient * diff / velAbs;
267 = new VelocityInterpolator(durationSeconds, velAbs, diff);
335 private VelocityInterpolator(float durationSeconds, float velocity, float diff) {
338 mDiff = diff;
  /packages/services/Car/tests/CarDiagnosticVerifier/src/com/google/android/car/diagnosticverifier/
DiagnosticVerifier.java 32 * The main idea for the verification is similar to a "diff" command on two files, whereas here
33 * is a diff on two event lists. The available diff operations are: "add", "delete", "modify"
35 * For example, think about doing a diff on two sequences:
40 * The goal is to find the minimal number of diff operations applied on Truth list in order to
43 * to find the minimal set of diff operations. And the result would be:
55 * Below are 4 diff operations when comparing two event lists
120 List<Integer> diff = calculateDiffOperations(); local
124 for (int i = 0, j = 0, k = diff.size() - 1; k >= 0; k--) {
125 if (diff.get(k) == DELETE)
205 List<Integer> diff = new ArrayList<>(); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
run_loader_tests.sh 31 diff \
59 diff \
  /system/libufdt/utils/tests/
mkdtboimg_testdata.sh 89 echo "diff $x vs ${MKDTBOIMG_OUTCREATE}/$file"
90 diff $x ${MKDTBOIMG_OUTCREATE}/$file
92 echo "diff ${MKDTIMG_OUT}/create.dump vs ${MKDTBOIMG_OUTCREATE}/create.dump";
93 diff ${MKDTIMG_OUT}/create.dump ${MKDTBOIMG_OUTCREATE}/create.dump
104 echo "diff $x vs ${MKDTBOIMG_OUTCFG}/$file"
105 diff $x ${MKDTBOIMG_OUTCFG}/$file
107 echo "diff ${MKDTIMG_OUT}/create.dump vs ${MKDTBOIMG_OUTCFG}/create.dump";
108 diff ${MKDTIMG_OUT}/create.dump ${MKDTBOIMG_OUTCFG}/create.dump
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-nds32/
diff.d 2 #ld: -static --relax -T $srcdir/$subdir/diff.ld
  /external/freetype/src/psaux/
psblues.c 286 CF2_Fixed flatFamilyEdge, diff; local
304 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) );
306 if ( diff < minDiff && diff < csUnitsPerPixel )
309 minDiff = diff;
311 if ( diff == 0 )
322 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) );
324 if ( diff < minDiff && diff < csUnitsPerPixel )
345 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) )
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 314 private String diff = null; field in class:TestCertUtils.TestCertificate
328 public TestCertificate(String diff) {
330 this.diff = diff;
335 * diff. Leave the <code>diff</code> null when no difference needed.
337 * @param diff
340 public TestCertificate(String diff, String type) {
342 this.diff = diff;
    [all...]
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.c 69 int32_t diff = rear - front; local
75 diff -= fifo->mFudgeFactor;
79 ALOG_ASSERT(0 <= diff && diff <= (int32_t) fifo->mFrameCount);
80 return (size_t) diff;
  /external/drrickorang/LoopbackApp/app/src/main/jni/audio_utils/
fifo.c 71 int32_t diff = rear - front; local
79 diff -= fifo->mFudgeFactor;
84 ALOG_ASSERT(0 <= diff && diff <= (int32_t) fifo->mFrameCount);
85 return (size_t) diff;
  /external/libchrome/base/metrics/
histogram_samples.cc 136 void HistogramSamples::IncreaseSum(int64_t diff) {
138 subtle::NoBarrier_AtomicIncrement(&meta_->sum, diff);
140 meta_->sum += diff;
144 void HistogramSamples::IncreaseRedundantCount(HistogramBase::Count diff) {
145 subtle::NoBarrier_AtomicIncrement(&meta_->redundant_count, diff);
  /external/libvpx/libvpx/test/
minmax_test.cc 47 const int diff = abs(a[i * a_stride + j] - b[i * b_stride + j]); local
48 if (min > diff) min = diff;
49 if (max < diff) max = diff;
  /external/tensorflow/tensorflow/compiler/jit/kernels/
parallel_check_op.cc 62 T diff = p0[i] - p1[i]; local
63 if (diff < 0) diff = 0 - diff;
64 ok = (diff <= tolerance);
70 << " test_val=" << p1[i] << " diff=" << (p0[i] - p1[i]);
  /hardware/qcom/display/msm8084/libqdutils/
profiler.cpp 151 nsecs_t diff = currtime_us - oldtime_us; local
156 diff > debug_fps_metadata.ignorethresh_us) {
161 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
168 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
186 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /hardware/qcom/display/msm8226/libqdutils/
profiler.cpp 151 nsecs_t diff = currtime_us - oldtime_us; local
156 diff > debug_fps_metadata.ignorethresh_us) {
161 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
168 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
186 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /hardware/qcom/display/msm8909/libqdutils/
profiler.cpp 152 nsecs_t diff = currtime_us - oldtime_us; local
157 diff > debug_fps_metadata.ignorethresh_us) {
162 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
169 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
187 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /hardware/qcom/display/msm8909w_3100/libqdutils/
profiler.cpp 152 nsecs_t diff = currtime_us - oldtime_us; local
157 diff > debug_fps_metadata.ignorethresh_us) {
162 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
169 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
187 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /hardware/qcom/display/msm8960/libqdutils/
profiler.cpp 148 nsecs_t diff = currtime_us - oldtime_us; local
153 diff > debug_fps_metadata.ignorethresh_us) {
158 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
164 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
181 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
  /hardware/qcom/display/msm8994/libqdutils/
profiler.cpp 151 nsecs_t diff = currtime_us - oldtime_us; local
156 diff > debug_fps_metadata.ignorethresh_us) {
161 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
168 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
186 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);

Completed in 1211 milliseconds

<<11121314151617181920>>