Searched refs:method_size (Results 1 - 6 of 6) sorted by relevance

/art/runtime/
H A Dprofiler.h51 StackTrieNode(MethodReference method, uint32_t dex_pc, uint32_t method_size, argument
54 count_(0), method_size_(method_size) {
137 PreviousValue(uint32_t count, uint32_t method_size, PreviousContextMap* context_map) argument
138 : count_(count), method_size_(method_size), context_map_(context_map) {}
243 ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, argument
245 method_name_(method_name), count_(count), method_size_(method_size),
H A Dprofiler.cc533 uint32_t method_size = 0; local
536 method_size = codeitem->insns_size_in_code_units_;
538 StackTrieNode* new_node = new StackTrieNode(method_ref, dex_pc, method_size, current);
584 uint32_t method_size = 0; local
586 method_size = codeitem->insns_size_in_code_units_;
597 os << StringPrintf("%s/%u/%u\n", method_name.c_str(), count, method_size);
608 uint32_t method_size = 0; local
613 method_size = node->GetMethodSize();
658 method_size, Join(context_count_vector, '#').c_str());
H A Dclass_linker.cc2298 const size_t method_size = ArtMethod::ObjectSize(image_pointer_size_); local
2300 Runtime::Current()->GetLinearAlloc()->Alloc(self, method_size * length));
2303 new(reinterpret_cast<void*>(ptr + i * method_size)) ArtMethod;
4682 const size_t method_size = ArtMethod::ObjectSize(image_pointer_size_); local
4908 reinterpret_cast<uintptr_t>(input_virtual_methods) + method_size * k) :
4949 miranda_method = reinterpret_cast<ArtMethod*>(allocator.Alloc(method_size));
4970 self, old_virtuals, old_method_count * method_size, new_method_count * method_size));
4978 StrideIterator<ArtMethod> out(reinterpret_cast<uintptr_t>(virtuals), method_size); variable
4989 reinterpret_cast<uintptr_t>(virtuals) + old_method_count * method_size, method_siz variable
[all...]
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc301 size_t method_size = ArtMethod::ObjectSize(sizeof(void*)); local
303 reinterpret_cast<uintptr_t>(virtual_methods)) / method_size;
/art/patchoat/
H A Dpatchoat.cc432 size_t method_size = ArtMethod::ObjectSize(pointer_size); local
433 for (size_t pos = 0; pos < section.Size(); pos += method_size) {
/art/oatdump/
H A Doatdump.cc1533 const auto method_size = ArtMethod::ObjectSize(pointer_size); local
1534 for (size_t pos = 0; pos < methods_section.Size(); pos += method_size) {

Completed in 283 milliseconds