Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dmemcmp16_arm64.S39 #define diff x6 macro
66 eor diff, data1, data2 /* Non-zero if differences found. */
67 csinv endloop, diff, xzr, ne /* Last Dword or differences. */
88 rev diff, diff
90 clz diff, diff
92 bfi diff, xzr, #0, #4
96 lsr data1, data1, diff
97 lsr data2, data2, diff
/art/runtime/
Dentrypoints_order_test.cc38 #define EXPECT_OFFSET_DIFF(first_type, first_field, second_type, second_field, diff, name) \ argument
40 - OFFSETOF_MEMBER(first_type, first_field) == diff, name)
43 #define EXPECT_OFFSET_DIFFNP(type, first_field, second_field, diff) \ argument
44 EXPECT_OFFSET_DIFF(type, first_field, type, second_field, diff, \
48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument
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) \ argument
56 - OFFSETOF_MEMBER(first_type, first_field) >= diff, name)
59 #define EXPECT_OFFSET_DIFF_GT3(type, first_field, second_field, diff, name) \ argument
60 EXPECT_OFFSET_DIFF_GT(type, first_field, type, second_field, diff, name)
/art/test/etc/
Ddefault-check17 diff --strip-trailing-cr -q "$1" "$2" >/dev/null
/art/test/004-ThreadStress/
Dcheck18 tail -n 1 "$2" | diff --strip-trailing-cr -q "$1" - >/dev/null
/art/runtime/native/
Ddalvik_system_DexFile.cc469 std::set<std::string> diff; in CopyProfileFile() local
471 std::inserter(diff, diff.end())); in CopyProfileFile()
473 … change_percent = 100.0 * static_cast<double>(diff.size()) / static_cast<double>(new_top_k.size()); in CopyProfileFile()
475 std::set<std::string>::iterator end = diff.end(); in CopyProfileFile()
476 for (std::set<std::string>::iterator it = diff.begin(); it != end; it++) { in CopyProfileFile()
/art/test/
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/
Dralloc_util.cc960 int diff = my_sreg - partner_sreg; in CheckCorePoolSanity() local
961 DCHECK((diff == 0) || (diff == -1) || (diff == 1)); in CheckCorePoolSanity()