/external/chromium_org/tools/memory_watcher/ |
preamble_patcher_with_stub.cc | 62 int relative_offset; // Windows guarantees int is 4 bytes local 63 ASSERT1(sizeof(relative_offset) == 4); 64 memcpy(reinterpret_cast<void*>(&relative_offset), 66 // I'd like to just say "target = target + 5 + relative_offset" here, but 68 return RawPatchWithStubAndProtections(target + 5 + relative_offset,
|
preamble_patcher.cc | 169 int relative_offset; // Windows guarantees int is 4 bytes local 170 ASSERT1(sizeof(relative_offset) == 4); 171 memcpy(reinterpret_cast<void*>(&relative_offset), 173 unsigned char* jump_to = target + 5 + relative_offset;
|
/art/compiler/ |
oat_writer.cc | 425 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out.Seek(0, kSeekCurrent)) \ 426 << "file_offset=" << file_offset << " relative_offset=" << relative_offset 452 size_t relative_offset = WriteCode(out, file_offset); local 453 if (relative_offset == 0) { 458 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset); 459 if (relative_offset == 0) { 504 CHECK_EQ(size_, relative_offset); 543 size_t relative_offset = oat_header_->GetExecutableOffset() local [all...] |
/external/chromium/chrome/common/ |
automation_messages.h | 91 int relative_offset, 102 int relative_offset; member in struct:NavigationInfo
|
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
preamble_patcher.cc | 93 int relative_offset; // Windows guarantees int is 4 bytes local 94 SIDESTEP_ASSERT(sizeof(relative_offset) == 4); 95 memcpy(reinterpret_cast<void*>(&relative_offset), 97 new_target = target + 5 + relative_offset; 100 signed char relative_offset; local 101 memcpy(reinterpret_cast<void*>(&relative_offset), 103 new_target = target + 2 + relative_offset;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
preamble_patcher.cc | 93 int relative_offset; // Windows guarantees int is 4 bytes local 94 SIDESTEP_ASSERT(sizeof(relative_offset) == 4); 95 memcpy(reinterpret_cast<void*>(&relative_offset), 97 new_target = target + 5 + relative_offset; 100 signed char relative_offset; local 101 memcpy(reinterpret_cast<void*>(&relative_offset), 103 new_target = target + 2 + relative_offset;
|