Searched refs:diff (Results 1 - 7 of 7) sorted by relevance

/art/test/etc/
H A Ddefault-check17 diff --strip-trailing-cr -q "$1" "$2" >/dev/nul
/art/test/004-ThreadStress/
H A Dcheck18 tail -n 1 "$2" | diff --strip-trailing-cr -q "$1" - >/dev/nul
/art/runtime/arch/arm64/
H A Dmemcmp16_arm64.S39 #define diff x6 define
66 eor diff, data1, data2 /* Non-zero if differences found. */
67 csinv endloop, diff, xzr, ne /* Last Dword or differences. */
71 /* Not reached the limit, must have found a diff. */
86 // Swap the byte order of diff. Exact reverse is not important, as we only need to detect
88 rev diff, diff
90 clz diff, diff
92 bfi diff, xz
[all...]
/art/runtime/
H A Dentrypoints_order_test.cc38 #define EXPECT_OFFSET_DIFF(first_type, first_field, second_type, second_field, diff, name) \
40 - OFFSETOF_MEMBER(first_type, first_field) == diff, name)
43 #define EXPECT_OFFSET_DIFFNP(type, first_field, second_field, diff) \
44 EXPECT_OFFSET_DIFF(type, first_field, type, second_field, diff, \
48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \
49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, \
54 #define EXPECT_OFFSET_DIFF_GT(first_type, first_field, second_type, second_field, diff, name) \
56 - OFFSETOF_MEMBER(first_type, first_field) >= diff, name)
59 #define EXPECT_OFFSET_DIFF_GT3(type, first_field, second_field, diff, name) \
60 EXPECT_OFFSET_DIFF_GT(type, first_field, type, second_field, diff, nam
[all...]
/art/runtime/native/
H A Ddalvik_system_DexFile.cc469 std::set<std::string> diff; local
471 std::inserter(diff, diff.end()));
472 // TODO: consider using the usedPercentage instead of the plain diff count.
473 change_percent = 100.0 * static_cast<double>(diff.size()) / static_cast<double>(new_top_k.size());
475 std::set<std::string>::iterator end = diff.end();
476 for (std::set<std::string>::iterator it = diff.begin(); it != end; it++) {
/art/test/
H A Drun-test443 diff --strip-trailing-cr -q "$expected" "$output" >/dev/null
477 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 500
/art/compiler/dex/quick/
H A Dralloc_util.cc960 int diff = my_sreg - partner_sreg; local
961 DCHECK((diff == 0) || (diff == -1) || (diff == 1));

Completed in 340 milliseconds