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

<<31323334353637383940>>

  /external/libgsm/src/
add.c 31 longword diff = (longword)a - (longword)b; local
32 return saturate(diff);
  /external/libnl/python/netlink/
core.py 692 diff = self.prefixlen - other.prefixlen
693 if diff == 0:
694 diff = capi.nl_addr_cmp(self._nl_addr, other._nl_addr)
696 return diff
699 diff = int(self.family) - int(item.family)
700 if diff:
706 diff = capi.nl_addr_cmp_prefix(self._nl_addr, item._nl_addr)
707 return diff == 0
  /external/libvpx/libvpx/tools/
tiny_ssim.c 36 int diff; local
40 diff = orig[col] - recon[col];
41 total_sse += diff * diff;
55 int diff; local
59 diff = orig[col] - recon[col];
60 total_sse += diff * diff;
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.c 76 int diff, adj, absdiff, delta; local
96 diff = mc_avg[c] - sig[c];
97 absdiff = abs(diff);
101 total_adj += diff;
118 if (diff > 0) {
151 diff = mc_avg[c] - sig[c];
152 adj = abs(diff);
156 if (diff > 0) {
157 // Diff positive means we made positive adjustment above
163 // Diff negative means we made negative adjustment abov
    [all...]
  /external/opencv/cv/src/
cvsubdivision2d.cpp 719 icvIsRightOf2( const CvPoint2D32f& pt, const CvPoint2D32f& org, const CvPoint2D32f& diff )
722 cw_area.f = (org.x - pt.x)*diff.y - (org.y - pt.y)*diff.x;
732 CvPoint2D32f diff; local
764 diff.x = pt.x - start.x;
765 diff.y = pt.y - start.y;
778 if( icvIsRightOf2( t, start, diff ) >= 0 )
789 if( icvIsRightOf2( t, start, diff ) < 0 )
  /external/perfetto/src/base/
unix_task_runner.cc 203 TimeMillis diff = delayed_tasks_.begin()->first - GetWallTimeMs();
204 return std::max(0, static_cast<int>(diff.count()));
  /external/python/cpython2/Demo/pdist/
rrcs.py 35 print " diff # diff rcs file and work file"
97 def diff(x, copts, fn): function
108 print 'diff %s -r%s %s' % (flags, x.head(fn), fn)
109 sts = os.system('diff %s %s %s' % (flags, tf.name, fn))
156 'diff': ('c', diff),
  /external/skia/src/core/
SkUnPreMultiply.cpp 83 int diff = SkAbs32(test - div); local
84 SkASSERT(diff <= 1 && test <= 255);
  /external/skqp/src/core/
SkUnPreMultiply.cpp 83 int diff = SkAbs32(test - div); local
84 SkASSERT(diff <= 1 && test <= 255);
  /external/strace/tests/
init.sh 170 check_prog diff
172 diff -u -- "$expected" "$output" ||
  /external/strace/tests-m32/
init.sh 170 check_prog diff
172 diff -u -- "$expected" "$output" ||
  /external/strace/tests-mx32/
init.sh 170 check_prog diff
172 diff -u -- "$expected" "$output" ||
  /external/swiftshader/third_party/LLVM/test/lib/
llvm2cpp.exp 90 exec -keepnewline diff $assembly $output } msg ]
93 fail "$test: diff returned $retval:\n$msg"
  /external/tensorflow/tensorflow/python/debug/examples/
debug_mnist.py 105 # diff = tf.nn.softmax_cross_entropy_with_logits(labels=y_, logits=logits)
107 diff = -(y_ * tf.log(y))
109 cross_entropy = tf.reduce_mean(diff)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
losses.py 45 diff = K.abs((y_true - y_pred) / K.clip(K.abs(y_true), K.epsilon(), None))
46 return 100. * K.mean(diff, axis=-1)
  /external/tensorflow/tensorflow/python/ops/distributions/
bijector_test_util.py 34 np.testing.assert_array_less(0., np.diff(array))
38 np.testing.assert_array_less(np.diff(array), 0.)
  /external/v8/gypfiles/
landmines.py 12 diff between the new landmines and the old ones is non-null. At this point, the
141 diff = difflib.unified_diff(old_landmines, new_landmines,
145 sys.stdout.writelines(diff)
  /external/v8/tools/foozzie/
v8_suppressions.py 216 with a readable diff.
277 def diff(self, output1, output2): member in class:Suppression
300 def diff(self, output1, output2): member in class:V8Suppression
  /external/vulkan-validation-layers/tests/
run_wrap_objects_tests.sh 133 # Run the layer validation tests with and without the wrap-objects layer. Diff the results.
146 diff unwrapped.out wrapped.out
  /external/webrtc/webrtc/modules/video_coding/
decoding_state.cc 278 uint16_t diff = local
282 return diff > kFrameDecodedLength / 2;
jitter_buffer.cc 164 uint32_t diff = timestamp - ss_map_.begin()->first;
165 return diff / kVideoPayloadTypeFrequency >= kSsCleanupIntervalSec;
402 int64_t diff = now - time_last_incoming_frame_count_; local
403 if (diff < 1000 && incoming_frame_rate_ > 0 && incoming_bit_rate_ > 0) {
412 if (diff <= 0) {
413 diff = 1;
416 float rate = 0.5f + ((incoming_frame_count_ * 1000.0f) / diff);
435 10 * ((100 * incoming_bit_count_) / static_cast<unsigned int>(diff));
    [all...]
  /frameworks/av/media/libstagefright/codecs/avcenc/
SoftAVCEnc.h 113 #define TIME_DIFF(start, end, diff) \
114 diff = (((end).tv_sec - (start).tv_sec) * 1000000) + \
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 210 float diff = mTempEndValues[i] - mTempStartValues[i]; local
211 mTempEndValues[i] = mTempStartValues[i] + (fraction * diff);
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionUtils.java 168 float diff = mTempEndValues[i] - mTempStartValues[i]; local
169 mTempEndValues[i] = mTempStartValues[i] + (fraction * diff);
  /hardware/google/av/media/codecs/avc/
C2SoftAvcEnc.h 115 #define TIME_DIFF(start, end, diff) \
116 diff = (((end).tv_sec - (start).tv_sec) * 1000000) + \

Completed in 1633 milliseconds

<<31323334353637383940>>