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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
sub.cpp 39 Description: Changed all occurrences of L_diff to diff, deleted "short" in
113 diff = 16-bit limited difference between var1 and var2 (Word16)
146 Word32 diff;
148 diff = (Word32) var1 - var2;
154 var_out = saturate (diff);
196 Word32 diff; local
198 diff = (Word32) var1 - var2;
202 /* to conserve MIPS, i.e., var_out = saturate (diff) */
205 if ((UWord32)(diff - 0xFFFF8000L) > 0x000FFFF)
207 if (diff > (Word32) 0x0007FFFL
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
pytree_idempotency.py 30 if not diff(fn, tree):
49 if diff(fn, tree):
69 if diff(fn, tree):
80 def diff(fn, tree): function
87 return os.system("diff -u %s @" % fn)
  /external/icu/icu4c/source/test/intltest/
numbertest_decimalquantity.cpp 37 double diff = a - b; local
38 diff = diff < 0 ? -diff : diff;
40 if (diff > bound) {
41 errln(message + u": " + DoubleToUnicodeString(a) + u" vs " + DoubleToUnicodeString(b) + u" differ by " + DoubleToUnicodeString(diff));
  /external/libcxx/test/std/utilities/time/time.cal/time.cal.ym/time.cal.ym.nonmembers/
minus.pass.cpp 82 months diff = year_month{y, month(i)} - year_month{y, month(j)}; local
83 std::cout << "i: " << i << " j: " << j << " -> " << diff.count() << std::endl;
84 assert(diff.count() == i - j);
  /external/python/cpython2/Lib/lib2to3/tests/
pytree_idempotency.py 30 if not diff(fn, tree):
49 if diff(fn, tree):
69 if diff(fn, tree):
80 def diff(fn, tree): function
87 return os.system("diff -u %s @" % fn)
  /external/python/cpython3/Lib/lib2to3/tests/
pytree_idempotency.py 32 if not diff(fn, tree):
51 if diff(fn, tree):
71 if diff(fn, tree):
82 def diff(fn, tree): function
89 return os.system("diff -u %s @" % fn)
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
nearest_neighbor.c 28 const size_t diff = local
30 if (diff < min_diff) {
32 min_diff = diff;
lsf_to_lsp.c 32 int16_t diff; /* difference, which is used for the local
47 diff = (freq&0x00ff);
56 tmpW32 = WebRtcIlbcfix_kCosDerivative[k] * diff;
  /external/boringssl/src/util/
diff_asm.go 43 func diff(from, to string) error { func
44 cmd := exec.Command("diff", "-u", "--", from, to)
48 // diff returns exit code 1 if the files differ but it was otherwise
108 if err := diff(filepath.Join(*opensslDir, opensslFile), filepath.Join(*boringsslDir, file)); err != nil {
  /external/compiler-rt/test/asan/TestCases/
max_redzone.cc 24 size_t diff = after - before; local
25 return !(large_redzone ? diff > 46000000 : diff < 46000000);
  /external/libvpx/libvpx/third_party/libyuv/source/
compare_neon.cc 29 uint32_t diff; local
51 : "+r"(src_a), "+r"(src_b), "+r"(count), "=r"(diff)
54 return diff;
compare_neon64.cc 28 uint32_t diff; local
46 : "+r"(src_a), "+r"(src_b), "+r"(count), "=r"(diff)
49 return diff;
  /development/vndk/tools/header-checker/src/diff/
abi_diff_wrappers.h 23 namespace diff { namespace in namespace:header_checker
59 } // namespace diff
  /external/autotest/client/tools/
diffprofile 29 diff = {} variable
37 if diff.has_key(key):
38 diff[key] -= count
40 diff[key] = -count
47 if diff.has_key(key):
48 diff[key] += count
50 diff[key] = count
58 pct = (100 * diff[key]) / orig[key]
61 print "%10d %6.1f%% %s" % (diff[key], pct, key)
63 keys = sorted(diff.keys(), key=lambda x : diff[x], reverse = True
    [all...]
  /external/libaom/libaom/third_party/libyuv/source/
compare_common.cc 22 int diff = src_a[i] - src_b[i]; local
23 sse += (uint32)(diff * diff);
  /external/libyuv/files/source/
compare_common.cc 24 int diff = src_a[i] - src_b[i]; local
25 sse += (uint32)(diff * diff);
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/diff/
debug_disable.go 7 package diff package
  /external/u-boot/arch/powerpc/lib/
extable.c 36 long diff; local
38 diff = first->insn - value;
39 if (diff == 0)
  /external/webrtc/webrtc/base/
versionparsing.cc 49 int diff = version1[i] - version2[i]; local
50 if (diff != 0) {
51 return diff;
  /art/dex2oat/linker/x86/
relative_patcher_x86.cc 53 uint32_t diff = target_offset - anchor_offset; local
54 (*code)[literal_offset + 0u] = static_cast<uint8_t>(diff >> 0);
55 (*code)[literal_offset + 1u] = static_cast<uint8_t>(diff >> 8);
56 (*code)[literal_offset + 2u] = static_cast<uint8_t>(diff >> 16);
57 (*code)[literal_offset + 3u] = static_cast<uint8_t>(diff >> 24);
  /art/runtime/
index_bss_mapping.cc 29 uint32_t diff = GetIndex(index_bits) - index; local
30 if (diff == 0u) {
34 if (diff > mask_bits) {
38 // Note that `index_bits + (mask_bits - diff) == 32 - diff`.
39 uint32_t mask_from_index = index_and_mask >> (32u - diff);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetln.c 106 size_t diff; local
125 diff = p - fp->_p;
126 len += diff;
130 diff);
131 fp->_r -= diff;
  /build/make/tools/releasetools/
target_files_diff.py 136 def diff(name, file1, file2, out_file): function
138 Diff a file pair with diff, running preprocess() on the arguments first.
142 proc = subprocess.Popen(['diff', f1, f2], stdout=subprocess.PIPE,
156 Recursively diff two directories, checking metadata then calling diff()
197 diff(name, name1, name2, out_file)
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 10 int diff = Math.abs(Color.red(color) - Color.red(expectedColor)) local
13 return diff <= threshold;
  /cts/tests/tests/uirendering27/src/android/uirendering/cts/util/
CompareUtils.java 10 int diff = Math.abs(Color.red(color) - Color.red(expectedColor)) local
13 return diff <= threshold;

Completed in 2412 milliseconds

1 2 3 4 5 6 7 8 91011>>