HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 26 - 50 of 2033) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libopus/silk/
stereo_MS_to_LR.c 45 opus_int32 sum, diff, pred0_Q13, pred1_Q13; local
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff );
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_error_neon.c 26 const int16x8_t diff = vsubq_s16(c, d); local
27 const int16x4_t diff_lo = vget_low_s16(diff);
28 const int16x4_t diff_hi = vget_high_s16(diff);
29 // diff is 15-bits, the squares 30, so we can store 2 in 31-bits before
  /external/pdfium/third_party/libopenjpeg20/
raw.c 63 const ptrdiff_t diff = raw->bp - raw->start; local
64 assert( diff <= (ptrdiff_t)0xffffffff && diff >= 0 ); /* UINT32_MAX */
65 return (OPJ_UINT32)diff;
  /external/skia/src/core/
SkUnPreMultiply.cpp 83 int diff = SkAbs32(test - div); local
84 SkASSERT(diff <= 1 && test <= 255);
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/
NoBindingTest.java 36 int diff = new Random().nextInt(10000); field in class:NoBindingTest
40 logger.debug("hello" + diff);
45 MDC.put("k" + diff, "v");
50 Marker m = MarkerFactory.getMarker("a" + diff);
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/impl/
RecursiveAppender.java 36 int diff = new Random().nextInt(); field in class:RecursiveAppender
40 Logger logger = LoggerFactory.getLogger("RecursiveAppender" + diff);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
lsp_to_lsf.c 34 int16_t diff; /* diff between table value and desired value (Q15) */ local
62 /* Calculate diff, which is used in the linear approximation of acos(x) */
63 diff = (*lspPtr)-(*cosTblPtr);
71 tmp = (int16_t)((WebRtcIlbcfix_kAcosDerivative[k] * diff) >> 11);
  /external/webrtc/webrtc/modules/desktop_capture/
differ_block_sse2.cc 55 int diff = _mm_cvtsi128_si32(sad); local
56 if (diff)
111 int diff = _mm_cvtsi128_si32(sad); local
112 if (diff)
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountComparator.java 50 int diff = a.name.compareToIgnoreCase(b.name); local
51 if (diff != 0) {
52 return diff;
54 diff = a.type.compareToIgnoreCase(b.type);
55 if (diff != 0) {
56 return diff;
  /prebuilts/go/darwin-x86/src/go/format/
format_test.go 20 func diff(t *testing.T, dst, src []byte) { func
59 diff(t, buf.Bytes(), src)
73 diff(t, res, src)
  /prebuilts/go/linux-x86/src/go/format/
format_test.go 20 func diff(t *testing.T, dst, src []byte) { func
59 diff(t, buf.Bytes(), src)
73 diff(t, res, src)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/utils/sym_check/sym_check/
diff.py 11 diff - A set of functions for diff-ing two symbol lists.
51 def diff(old, new): function
  /art/compiler/linker/mips/
relative_patcher_mips.cc 106 uint32_t diff = target_offset - anchor_offset; local
108 diff += kDexCacheArrayLwOffset;
110 diff += (diff & 0x8000) << 1; // Account for sign extension in "instr reg(s), offset_low".
113 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 16);
114 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 24);
116 (*code)[literal_low_offset + 0] = static_cast<uint8_t>(diff >> 0);
117 (*code)[literal_low_offset + 1] = static_cast<uint8_t>(diff >> 8);
  /art/compiler/linker/mips64/
relative_patcher_mips64.cc 58 uint32_t diff = target_offset - patch_offset; local
63 diff += (diff & 0x8000) << 1; // Account for sign extension in jialc.
66 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 16);
67 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 24);
69 (*code)[literal_offset + 4] = static_cast<uint8_t>(diff >> 0);
70 (*code)[literal_offset + 5] = static_cast<uint8_t>(diff >> 8);
95 uint32_t diff = target_offset - anchor_offset; local
100 diff += (diff & 0x8000) << 1; // Account for sign extension in instruction following auipc
    [all...]
  /bionic/libc/dns/nameser/
ns_samedomain.c 57 int diff, escaped; local
109 diff = (int)(la - lb);
116 if (diff < 2)
124 if (a[diff - 1] != '.')
132 for (i = diff - 1; i > 0; i--)
144 cp = a + diff;
  /build/blueprint/bpfmt/
bpfmt.go 90 data, err := diff(src, res)
92 return fmt.Errorf("computing diff: %s", err)
94 fmt.Printf("diff %s bpfmt/%s\n", filename, filename)
150 func diff(b1, b2 []byte) (data []byte, err error) { func
168 data, err = exec.Command("diff", "-u", f1.Name(), f2.Name()).CombinedOutput()
170 // diff exits with a non-zero status when the files don't match.
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HasCoverage.java 31 int diff = Integer.compare(getCoveragePercentageSegment(lhsPct), local
33 return diff != 0 ? diff :
  /device/google/dragon/audio/hal/dsp/tests/
cmpraw.c 27 double diff = 0; local
48 diff += fabs(data1[i] - data2[i]);
52 printf("avg diff = %g, max diff = %g, changed = %.3f%%\n",
53 diff / n, maxdiff * 32768, changed*100.0f/n);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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/apache-http/src/org/apache/commons/codec/language/
SoundexUtils.java 118 int diff = 0; local
121 diff++;
124 return diff;
  /external/blktrace/
strverscmp.c 79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
95 int diff; local
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
144 return diff;
151 return isdigit (*p2) ? -1 : diff;
  /external/dng_sdk/source/
dng_point.h 171 dng_point_real64 diff = a - b; local
173 return (diff.v * diff.v) + (diff.h * diff.h);
  /external/guava/guava-tests/test/com/google/common/cache/
CacheStatsTest.java 64 CacheStats diff = two.minus(one); local
65 assertEquals(76, diff.requestCount());
66 assertEquals(42, diff.hitCount());
67 assertEquals(42.0/76, diff.hitRate());
68 assertEquals(34, diff.missCount());
69 assertEquals(34.0/76, diff.missRate());
70 assertEquals(26, diff.loadSuccessCount());
71 assertEquals(22, diff.loadExceptionCount());
72 assertEquals(22.0/48, diff.loadExceptionRate());
73 assertEquals(26 + 22, diff.loadCount())
    [all...]
  /external/jdiff/src/jdiff/
Modifiers.java 61 public String diff(Modifiers newModifiers) { method in class:Modifiers
  /external/libavc/test/encoder/
psnr.c 171 WORD32 diff; local
172 diff = (*pu1_buf1 - *pu1_buf2);
175 df_psnr[comp] += diff * diff;

Completed in 1559 milliseconds

12 3 4 5 6 7 8 91011>>