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

<<31323334353637383940>>

  /external/libxaac/decoder/
ixheaacd_basic_ops16.h 61 WORD32 diff; local
63 diff = (WORD32)op1 - op2;
64 var_out = ixheaacd_sat16(diff);
  /external/pdfium/fpdfsdk/
fpdf_transformpage.cpp 235 CFX_PointF diff = pPoints[2].m_Point - pPoints[0].m_Point; local
236 buf << pPoints[0].m_Point.x << " " << pPoints[0].m_Point.y << " " << diff.x
237 << " " << diff.y << " re\n";
  /external/skia/gm/
shapes_as_paths.cpp 50 int diff = local
55 if (diff > maxDiff) {
58 maxDiff = diff;
81 // Draw zoom of largest pixel diff
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 219 double diff; local
223 diff = fabs(t - newT);
229 worstStep[largeBits] = SkTMax(worstStep[largeBits], diff);
  /external/skqp/gm/
shapes_as_paths.cpp 49 int diff = local
54 if (diff > maxDiff) {
57 maxDiff = diff;
80 // Draw zoom of largest pixel diff
  /external/skqp/tests/
PathOpsCubicLineIntersectionIdeas.cpp 219 double diff; local
223 diff = fabs(t - newT);
229 worstStep[largeBits] = SkTMax(worstStep[largeBits], diff);
  /external/toolchain-utils/
chromiumos_image_diff.py 2 """Diff 2 chromiumos images by comparing each elf file.
216 'diff {tempf1} {tempf2} 1>/dev/null 2>&1').format(
230 '>> {diff_file} ; diff {tempf1} {tempf2} '
288 help='Dumping all the diffs (if any) to the diff file')
  /external/webp/src/dsp/
yuv.c 147 // Approximated average-of-four. But it's an acceptable diff.
205 uint64_t diff = 0; local
211 diff += (uint64_t)abs(diff_y);
213 return diff;
  /external/webp/src/enc/
picture_psnr_enc.c 53 const double diff = s[i] - value; local
54 const double sse = diff * diff;
  /external/webrtc/webrtc/modules/audio_device/android/
opensles_player.cc 437 const uint32_t diff = current_time - last_play_time_; local
438 if (diff > 100) {
439 ALOGW("Bad OpenSL ES playout timing, dT=%u [ms]", diff);
  /frameworks/base/core/java/com/android/internal/widget/
ChildHelper.java 115 return -1; //anything below 0 won't work as diff will be undefined.
121 final int diff = index - (offset - removedBefore); local
122 if (diff == 0) {
128 offset += diff;
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ChildHelper.java 115 return -1; //anything below 0 won't work as diff will be undefined.
121 final int diff = index - (offset - removedBefore); local
122 if (diff == 0) {
128 offset += diff;
  /libcore/ojluni/src/main/java/sun/misc/
FloatingDecimal.java 1642 FDBigInteger diff; local
    [all...]
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
RecentsActivity.java 98 int diff = newConfig.diff(mOldConfig); local
99 if ((diff & (CONFIG_ORIENTATION | CONFIG_SCREEN_SIZE)) != 0) {
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TunerTsStreamer.java 114 long diff = local
117 Log.w(TAG, "Demux position jump by overwritten buffer: " + diff);
118 mStartBufferedPosition = currentPosition + diff;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node.h 422 const float diff = local
425 if (diff > MIN_DIFF) {
427 } else if (diff < -MIN_DIFF) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_callbacks.py 179 diff = abs(result - 1./3.)
181 self.assertLess(diff, 0.01, "%s not less than 0.01" % diff)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_callbacks.py 179 diff = abs(result - 1./3.)
181 self.assertLess(diff, 0.01, "%s not less than 0.01" % diff)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 179 diff = abs(result - 1./3.)
181 self.assertLess(diff, 0.01, "%s not less than 0.01" % diff)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 179 diff = abs(result - 1./3.)
181 self.assertLess(diff, 0.01, "%s not less than 0.01" % diff)
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 577 uint32_t diff = kTrampolineOffset - method1_offset; local
578 ASSERT_EQ(diff & 1u, 0u);
579 ASSERT_GE(diff, -1u << 9); // Simple encoding, -256 <= (diff >> 1) < 0 (checked as unsigned).
580 auto expected_code = GenNopsAndBl(0u, kBlPlus0 | ((diff >> 2) & 0x03ffffffu));
608 uint32_t diff = thunk_offset - (last_method_offset + bl_offset_in_last_method); local
609 CHECK_ALIGNED(diff, 4u);
610 ASSERT_LT(diff, 128 * MB);
611 auto expected_code = GenNopsAndBl(1u, kBlPlus0 | (diff >> 2));
696 uint32_t diff = thunk_offset - (method1_offset + bl_offset_in_method1) local
726 uint32_t diff = thunk_offset - (last_method_offset + bl_offset_in_last_method); local
    [all...]
  /build/soong/scripts/
diff_build_graphs.sh 78 WORK_DIR="$OUT_DIR/diff"
118 #do a diff of the ninja files
119 diffFile="$WORK_DIR/diff.txt"
120 diff -r "$unzipped1" "$unzipped2" -x build_date.txt -x build_number.txt -x '\.*' -x '*.log' -x build_fingerprint.txt -x build.ninja.d -x '*.zip' > $diffFile || true
123 echo "First few differences (total diff linecount=$(wc -l $diffFile)) for product $product:"
167 echo "See $WORK_DIR/diff.txt for the full list of differences for the latest product checked"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcvs.py 21 # - cvs diff -rREVA -rREVB
156 def diff(self, opts = []): member in class:MyFile
178 print 'diff %s -r%s %s' % (flags, rev, fn)
179 sts = os.system('diff %s %s %s' % (flags, tf.name, fn))
293 def diff(self, files, opts): member in class:RCVS
295 e.diff(opts)
432 """diff [difflags] [file] ..."""
433 self.cvs.diff(files, opts)
  /external/aac/libSBRenc/src/
nf_est.cpp 221 diff; local
278 diff = RELAXATION;
282 diff = fixMax(RELAXATION, fMult(RELAXATION_FRACT, fMult(weightFac, accu)) >>
291 accu = fDivNorm(diff, meanOrig, &scale);
  /external/dhcpcd-6.8.2/
dhcpcd-run-hooks.in 124 elif type diff >/dev/null 2>&1; then
125 diff -q "$1" "$2" >/dev/null

Completed in 1836 milliseconds

<<31323334353637383940>>