Searched defs:diff (Results 1 - 3 of 3) sorted by relevance

/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/native/
H A Ddalvik_system_DexFile.cc459 std::set<std::string> diff; local
461 std::inserter(diff, diff.end()));
462 // TODO: consider using the usedPercentage instead of the plain diff count.
463 change_percent = 100.0 * static_cast<double>(diff.size()) / static_cast<double>(new_top_k.size());
465 std::set<std::string>::iterator end = diff.end();
466 for (std::set<std::string>::iterator it = diff.begin(); it != end; it++) {
/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 65 milliseconds