OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vmap_table
(Results
1 - 3
of
3
) sorted by null
/art/runtime/
oat_file-inl.h
75
const uint8_t*
vmap_table
= GetVmapTable();
local
76
return static_cast<uint32_t>(
vmap_table
!= nullptr ?
vmap_table
- begin_ : 0u);
/art/compiler/driver/
compiled_method_storage_test.cc
67
ArrayRef<const uint8_t>
vmap_table
[] = {
local
94
for (auto&& v :
vmap_table
) {
/art/compiler/
common_compiler_test.cc
59
ArrayRef<const uint8_t>
vmap_table
= compiled_method->GetVmapTable();
local
60
uint32_t vmap_table_offset =
vmap_table
.empty() ? 0u
61
: sizeof(OatQuickMethodHeader) +
vmap_table
.size();
71
const size_t size =
vmap_table
.size() + sizeof(method_header) + code_size;
75
chunk->insert(chunk->begin(),
vmap_table
.begin(),
vmap_table
.end());
Completed in 748 milliseconds