/external/chromium_org/v8/src/ |
profile-generator.h | 290 const char* GetName(int args_count) { 291 return function_and_resource_names_.GetName(args_count);
|
log.h | 256 void CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count); 481 int args_count) = 0; 506 int args_count);
|
accessors.cc | 713 int args_count = args_slots.length(); local 715 factory->NewArgumentsObject(inlined_function, args_count); 716 Handle<FixedArray> array = factory->NewFixedArray(args_count); 717 for (int i = 0; i < args_count; ++i) {
|
cpu-profiler.h | 243 Code* code, int args_count);
|
cpu-profiler.cc | 292 int args_count) { 299 profiles_->GetName(args_count), 300 "args_count: ");
|
log.cc | 235 int args_count) { 237 name_buffer_->AppendInt(args_count); [all...] |
runtime.cc | [all...] |
hydrogen.cc | 7589 int args_count = arguments_count - 1; \/\/ Excluding receiver. local [all...] |
/external/v8/src/ |
cpu-profiler.h | 148 int args_count, 239 Code* code, int args_count);
|
accessors.cc | 573 int args_count = args_slots.length(); local 575 factory->NewArgumentsObject(inlined_function, args_count); 576 Handle<FixedArray> array = factory->NewFixedArray(args_count); 577 for (int i = 0; i < args_count; ++i) {
|
cpu-profiler.cc | 114 int args_count, 123 rec->entry = generator_->NewCodeEntry(tag, args_count); 404 Code* code, int args_count) { 407 args_count,
|
profile-generator.h | 302 const char* GetName(int args_count) { 303 return function_and_resource_names_.GetName(args_count); 315 CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, int args_count); 416 int args_count)) { 417 return profiles_->NewCodeEntry(tag, args_count); [all...] |
log.h | 231 void CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count);
|
log.cc | 1024 void Logger::CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count) { 1030 name_buffer_->AppendInt(args_count); 1044 msg.Append(",%d,\"args_count: %d\"", code->ExecutableSize(), args_count); [all...] |
profile-generator.cc | 815 int args_count) { 817 "args_count: ", 818 GetName(args_count), [all...] |
runtime.cc | [all...] |
/art/compiler/jni/quick/ |
jni_compiler.cc | 218 uint32_t args_count = 0; local 220 args_count++; 227 for (uint32_t i = 0; i < args_count; ++i) { 235 for (uint32_t j = 0; j < args_count - i - 1; ++j) {
|
/art/runtime/verifier/ |
register_line.cc | 92 const size_t args_count = is_range ? inst->VRegA_3rc() : inst->VRegA_35c(); local 93 if (args_count < 1) {
|