OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mapping_table
(Results
1 - 4
of
4
) sorted by null
/art/compiler/
oat_writer.cc
325
const std::vector<uint8_t>&
mapping_table
= compiled_method->GetMappingTable();
local
326
size_t mapping_table_size =
mapping_table
.size() * sizeof(
mapping_table
[0]);
331
mapping_table_offsets_.find(&
mapping_table
);
335
mapping_table_offsets_.Put(&
mapping_table
, mapping_table_offset);
337
oat_header_->UpdateChecksum(&
mapping_table
[0], mapping_table_size);
720
const std::vector<uint8_t>&
mapping_table
= compiled_method->GetMappingTable();
local
721
size_t mapping_table_size =
mapping_table
.size() * sizeof(
mapping_table
[0]);
725
mapping_table_offsets_.find(&
mapping_table
);
[
all
...]
image_writer.cc
561
const byte*
mapping_table
= GetOatAddress(mapping_table_off);
local
562
copy->SetMappingTable(
mapping_table
);
/art/runtime/mirror/
art_method.h
253
void SetMappingTable(const uint8_t*
mapping_table
) {
255
mapping_table
, false);
local
/art/compiler/dex/quick/
codegen_util.cc
20
#include "
mapping_table
.h"
631
const std::vector<uint32_t>&
mapping_table
= pc2dex_mapping_table_;
local
633
for (size_t i = 0; i <
mapping_table
.size(); i += 2) {
634
uint32_t native_offset =
mapping_table
[i + 0];
644
mapping_table
.size() / 2, max_native_offset,
647
for (size_t i = 0; i <
mapping_table
.size(); i += 2) {
648
uint32_t native_offset =
mapping_table
[i + 0];
649
uint32_t dex_pc =
mapping_table
[i + 1];
[
all
...]
Completed in 314 milliseconds