/art/runtime/base/ |
D | timing_logger.cc | 94 void CumulativeLogger::AddPair(const std::string &label, uint64_t delta_time) { in AddPair() argument 98 if (histograms_.find(label) == histograms_.end()) { in AddPair() 102 histograms_[label] = new Histogram<uint64_t>(label.c_str(), 50, max_buckets); in AddPair() 104 histograms_[label]->AddValue(delta_time); in AddPair() 195 TimingLogger::ScopedSplit::ScopedSplit(const char* label, TimingLogger* timing_logger) { in ScopedSplit() argument 196 DCHECK(label != NULL) << "New scoped split (" << label << ") with null label."; in ScopedSplit() 197 CHECK(timing_logger != NULL) << "New scoped split (" << label << ") without TimingLogger."; in ScopedSplit() 199 label_ = label; in ScopedSplit() 251 void TimingLogger::ScopedSplit::TailInsertSplit(const char* label) { in TailInsertSplit() argument 266 << "Begin: " << label; in TailInsertSplit() [all …]
|
D | timing_logger.h | 53 void AddPair(const std::string &label, uint64_t delta_time) 100 explicit ScopedSplit(const char* label, TimingLogger* timing_logger); 114 void TailInsertSplit(const char* label);
|
/art/runtime/ |
D | dex_file_verifier.h | 37 bool CheckPointerRange(const void* start, const void* end, const char* label) const; 38 …bool CheckListSize(const void* start, uint32_t count, uint32_t element_size, const char* label) co… 39 bool CheckIndex(uint32_t field, uint32_t limit, const char* label) const;
|
D | dex_file_verifier.cc | 108 bool DexFileVerifier::CheckPointerRange(const void* start, const void* end, const char* label) cons… in CheckPointerRange() 115 LOG(ERROR) << StringPrintf("Bad range for %s: %x to %x", label, in CheckPointerRange() 123 uint32_t element_size, const char* label) const { in CheckListSize() 125 return CheckPointerRange(list_start, list_start + (count * element_size), label); in CheckListSize() 128 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) const { in CheckIndex() 130 LOG(ERROR) << StringPrintf("Bad index for %s: %x >= %x", label, field, limit); in CheckIndex()
|
/art/jdwpspy/ |
D | Net.cpp | 37 char label[2]; /* 'D' or 'V' */ member 236 strcpy(netState->dbg.label, "D"); in jdwpNetStartup() 237 strcpy(netState->vm.label, "V"); in jdwpNetStartup() 537 dumpPacket(buf, pSrc->label, pDst->label); in handlePacket() 559 pReadPeer->label[0], pReadPeer->inputBuffer); in handleIncoming() 564 "+++ [%c] handshake write failed\n", pReadPeer->label[0]); in handleIncoming()
|
/art/compiler/utils/mips/ |
D | assembler_mips.cc | 104 void MipsAssembler::EmitBranch(Register rt, Register rs, Label* label, bool equal) { in EmitBranch() argument 106 if (label->IsBound()) { in EmitBranch() 107 offset = label->Position() - buffer_.Size(); in EmitBranch() 110 offset = label->position_; in EmitBranch() 111 label->LinkTo(buffer_.Size()); in EmitBranch() 120 void MipsAssembler::EmitJump(Label* label, bool link) { in EmitJump() argument 122 if (label->IsBound()) { in EmitJump() 123 offset = label->Position() - buffer_.Size(); in EmitJump() 126 offset = label->position_; in EmitJump() 127 label->LinkTo(buffer_.Size()); in EmitJump() [all …]
|
D | assembler_mips.h | 349 void EmitBranch(Register rt, Register rs, Label* label, bool equal); 350 void EmitJump(Label* label, bool link); 351 void Bind(Label* label, bool is_jump);
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 60 void X86Assembler::call(Label* label) { in call() argument 64 EmitLabel(label, kSize); in call() 1140 void X86Assembler::j(Condition condition, Label* label) { in j() argument 1142 if (label->IsBound()) { in j() 1145 int offset = label->Position() - buffer_.Size(); in j() 1158 EmitLabelLink(label); in j() 1175 void X86Assembler::jmp(Label* label) { in jmp() argument 1177 if (label->IsBound()) { in jmp() 1180 int offset = label->Position() - buffer_.Size(); in jmp() 1191 EmitLabelLink(label); in jmp() [all …]
|
D | assembler_x86.h | 223 void call(Label* label); 418 void j(Condition condition, Label* label); 422 void jmp(Label* label); 453 void Bind(Label* label); 598 void EmitLabel(Label* label, int instruction_size); 599 void EmitLabelLink(Label* label); 600 void EmitNearLabelLink(Label* label);
|
/art/test/023-many-interfaces/src/ |
D | ManyInterfaces.java | 173 private static void report(String label, long start, long end, int iter, in report() argument 176 System.out.println(label + ": " + (end - start) / 1000 + "us" in report() 179 System.out.println(label + ": done"); in report()
|
/art/compiler/utils/arm/ |
D | assembler_arm.cc | 250 void ArmAssembler::EmitBranch(Condition cond, Label* label, bool link) { in EmitBranch() argument 251 if (label->IsBound()) { in EmitBranch() 252 EmitType5(cond, label->Position() - buffer_.Size(), link); in EmitBranch() 256 EmitType5(cond, label->position_, link); in EmitBranch() 257 label->LinkTo(position); in EmitBranch() 1045 void ArmAssembler::b(Label* label, Condition cond) { in b() argument 1046 EmitBranch(cond, label, false); in b() 1050 void ArmAssembler::bl(Label* label, Condition cond) { in bl() argument 1051 EmitBranch(cond, label, true); in bl() 1073 void ArmAssembler::MarkExceptionHandler(Label* label) { in MarkExceptionHandler() argument [all …]
|
D | assembler_arm.h | 361 void b(Label* label, Condition cond = AL); 362 void bl(Label* label, Condition cond = AL); 381 void MarkExceptionHandler(Label* label); 434 void Bind(Label* label); 632 void EmitBranch(Condition cond, Label* label, bool link);
|