HomeSort by relevance Sort by last modified time
    Searched full:diff (Results 101 - 125 of 4403) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/test/Feature/
global_section.ll 3 ; RUN: diff %t1.ll %t2.ll
prototype.ll 3 ; RUN: diff %t1.ll %t2.ll
  /external/llvm/test/Integer/
properties_bt.ll 3 ; RUN: diff %t1.ll %t2.ll
undefined_bt.ll 3 ; RUN: diff %t1.ll %t2.ll
unreachable_bt.ll 3 ; RUN: diff %t1.ll %t2.ll
  /external/llvm/test/Other/
spir_cc.ll 3 ; RUN: diff %t1.ll %t2.ll
  /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/toybox/tests/
cmp.test 22 testing "cmp diff, stdout" "cmp input input2" "input input2 differ: char 4, line 2\n" "ab\nx\nx" ""
23 testing "cmp diff, return code" "cmp input input2 > /dev/null || echo yes" "yes\n" "ab\nx\nx" ""
26 testing "cmp -s diff, return code" "cmp -s input input2 || echo yes" "yes\n" "ab\nx\nx" ""
29 testing "cmp -l diff and EOF, stdout and stderr" "cmp -l input input2 2>&1 | sort" "4 170 143\ncmp: EOF on input2\n" "ab\nx\nx" ""
  /frameworks/base/tools/aapt2/
ResChunkPullParser.cpp 38 const std::ptrdiff_t diff = reinterpret_cast<const char*>(mCurrentChunk) local
40 assert(diff >= 0 && "diff is negative");
41 const size_t offset = static_cast<const size_t>(diff);
  /frameworks/wilhelm/tools/mphtogen/
README.txt 9 Diff the new files in ../../src/autogen vs. the new ones as sanity check.
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
BOCSU.java 251 * @param diff
256 private static final int writeDiff(int diff, byte buffer[], int offset)
258 if (diff >= SLOPE_REACH_NEG_1_) {
259 if (diff <= SLOPE_REACH_POS_1_) {
260 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff);
262 else if (diff <= SLOPE_REACH_POS_2_) {
264 + (diff / SLOPE_TAIL_COUNT_));
266 (diff % SLOPE_TAIL_COUNT_));
268 else if (diff <= SLOPE_REACH_POS_3_) {
270 + (diff % SLOPE_TAIL_COUNT_))
    [all...]
  /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 :
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 16 boolean neg = Nat192.diff(x, 6, x, 0, dx, 0) != Nat192.diff(y, 6, y, 0, dy, 0);
35 Nat192.diff(x, 6, x, 0, dx, 0);
Nat512.java 16 boolean neg = Nat256.diff(x, 8, x, 0, dx, 0) != Nat256.diff(y, 8, y, 0, dy, 0);
35 Nat256.diff(x, 8, x, 0, dx, 0);
  /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_common.cc 22 int diff = src_a[i] - src_b[i]; local
23 sse += (uint32)(diff * diff);
  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 34 short *diff, unsigned char *predictor,
40 short *diff = &be->src_diff[0]; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
  /external/llvm/tools/llvm-diff/
Android.mk 7 # llvm-diff command line tool
11 llvm-diff.cpp \
25 LOCAL_MODULE := llvm-diff
  /external/skia/bench/
bench_compare.py 30 print ' d: diff'
31 print ' p: percent diff'
42 self.diff = old.time - new.time
45 diffp = self.diff / old.time
123 'd' : '{diff: 0.2f}\t',
132 'd' : '{diff}\t',
144 'd' : '{diff: >+10.2f} ',
153 'd' : '{diff: >10} ',
172 , diff='diff'
    [all...]
  /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_;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 34 short *diff, unsigned char *predictor,
40 short *diff = &be->src_diff[0]; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
  /external/llvm/test/Transforms/EarlyCSE/
basic.ll 42 %Diff = sub i32 %V1, %V2
43 ret i32 %Diff
52 %Diff = sub i32 %V1, %V2
53 ret i32 %Diff
67 %Diff = sub i32 %V1, %V2
68 ret i32 %Diff
83 %Diff = sub i32 %V1, %V2
84 ret i32 %Diff
101 %Diff = sub i32 %V1, %V2
102 ret i32 %Diff
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactModifierTests.java 353 // Build diff, expecting insert for data row and update enforcement
354 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
355 state.buildDiff(diff);
356 assertEquals("Unexpected operations", 3, diff.size());
358 final ContentProviderOperation oper = diff.get(0);
363 final ContentProviderOperation oper = diff.get(1);
368 final ContentProviderOperation oper = diff.get(2);
375 diff.clear();
376 state.buildDiff(diff);
377 assertEquals("Unexpected operations", 1, diff.size())
453 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
478 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
529 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
558 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
603 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
669 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
    [all...]
  /art/compiler/linker/x86/
relative_patcher_x86.cc 51 uint32_t diff = target_offset - anchor_offset; local
52 (*code)[literal_offset + 0u] = static_cast<uint8_t>(diff >> 0);
53 (*code)[literal_offset + 1u] = static_cast<uint8_t>(diff >> 8);
54 (*code)[literal_offset + 2u] = static_cast<uint8_t>(diff >> 16);
55 (*code)[literal_offset + 3u] = static_cast<uint8_t>(diff >> 24);
  /external/libvpx/libvpx/tools/
intersect-diffs.py 21 import diff namespace
53 old_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[1], "r"))]
54 new_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[2], "r"))]
57 # Join the right hand side of the older diff with the left hand side of the
58 # newer diff.

Completed in 109 milliseconds

1 2 3 45 6 7 8 91011>>