HomeSort by relevance Sort by last modified time
    Searched refs:linked_code (Results 1 - 3 of 3) sorted by null

  /art/compiler/linker/
relative_patcher_test.h 191 // Sanity check: original code size must match linked_code.size().
207 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size());
208 if (linked_code == expected_code) {
212 DumpDiff(expected_code, linked_code);
217 const ArrayRef<const uint8_t>& linked_code) {
225 linked_hex << " " << digits[linked_code[i] >> 4] << digits[linked_code[i] & 0xf];
227 found_diff = (expected_code[i] != linked_code[i]);
245 LOG(ERROR) << "diff expected_code linked_code";
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 208 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
209 if (linked_code == ArrayRef<const uint8_t>(expected_code)) {
213 DumpDiff(ArrayRef<const uint8_t>(expected_code), linked_code); local
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 187 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
188 if (linked_code == ArrayRef<const uint8_t>(expected_code)) {
192 DumpDiff(ArrayRef<const uint8_t>(expected_code), linked_code); local
    [all...]

Completed in 184 milliseconds