|   /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/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;
  | 
|   /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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)
  | 
|   /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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/boringssl/src/util/ | 
| diff_asm.go  | 42 func diff(from, to string) error {  func  43 	cmd := exec.Command("diff", "-u", "--", from, to) 47 	// diff returns exit code 1 if the files differ but it was otherwise 107 		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);
  | 
|   /frameworks/base/tools/aapt2/unflatten/ | 
| ResChunkPullParser.cpp  | 52   const std::ptrdiff_t diff = (const char*)current_chunk_ - (const char*)data_;  local  53   CHECK(diff >= 0) << "diff is negative"; 54   const size_t offset = static_cast<const size_t>(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/elfutils/src/ | 
| sectionhash.c  | 41 	  GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags)  local  43 	  result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
  | 
|   /external/libvpx/libvpx/third_party/libyuv/source/ | 
| compare_common.cc  | 24     int diff = src_a[i] - src_b[i];  local  25     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/valgrind/none/tests/s390x/ | 
| stck.c  | 25 	unsigned long start, end, diff;  local  34 	diff = clockticks_in_msec(end, start); 35 	if (diff >= 1000 && diff < 1500)
  | 
| stckf.c  | 25 	unsigned long start, end, diff;  local  35 	diff = clockticks_in_msec(end, start); 36 	if (diff >= 1000 && diff < 1500)
  | 
|   /external/webrtc/webrtc/base/ | 
| versionparsing.cc  | 49     int diff = version1[i] - version2[i];  local  50     if (diff != 0) { 51       return diff;
  | 
|   /frameworks/base/media/mca/filterfw/native/core/ | 
| statistics.cpp  | 52   const float diff = value - mean_;  local  53   return expf(-diff * diff / exp_denom_) / pdf_denom_;
  | 
|   /libcore/ojluni/src/main/java/sun/security/util/ | 
| ByteArrayLexOrder.java  | 54         int diff;  local  56             diff = (bytes1[i] & 0xFF) - (bytes2[i] & 0xFF); 57             if (diff != 0) { 58                 return diff;
  | 
|   /art/compiler/linker/x86/ | 
| relative_patcher_x86.cc  | 52   uint32_t diff = target_offset - anchor_offset;  local  53   (*code)[literal_offset + 0u] = static_cast<uint8_t>(diff >> 0); 54   (*code)[literal_offset + 1u] = static_cast<uint8_t>(diff >> 8); 55   (*code)[literal_offset + 2u] = static_cast<uint8_t>(diff >> 16); 56   (*code)[literal_offset + 3u] = static_cast<uint8_t>(diff >> 24);
  | 
|   /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  | 137 def diff(name, file1, file2, out_file):  function  139   Diff a file pair with diff, running preprocess() on the arguments first. 143       proc = subprocess.Popen(['diff', f1, f2], stdout=subprocess.PIPE, 157   Recursively diff two directories, checking metadata then calling diff() 198         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;
  | 
|   /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ | 
| fgetstr.c  | 146     size_t diff;
  local  165     diff = p - fp->_p;
 166     len += diff;
 170         diff);
 171     fp->_r -= (int)diff;
  | 
|   /external/curl/lib/ | 
| timeval.c  | 114  * we'll get a weird negative time-diff back... 124   time_t diff = newer.tv_sec-older.tv_sec;  local  125   if(diff >= (0x7fffffff/1000))
  | 
|   /external/libcxx/utils/libcxx/sym_check/ | 
| diff.py  | 11 diff - A set of functions for diff-ing two symbol lists. 51 def diff(old, new):  function 
  |