Home
last modified time | relevance | path

Searched refs:p (Results 76 – 100 of 110) sorted by relevance

12345

/art/test/660-clinit/src/
DMain.java47 Print p = new Print(); in main() local
/art/compiler/optimizing/
Dgraph_checker.cc99 HBasicBlock* p = *it++; in VisitBasicBlock() local
101 for (; it != end && *it == p; ++it) { in VisitBasicBlock()
105 std::count(p->GetSuccessors().begin(), p->GetSuccessors().end(), block); in VisitBasicBlock()
110 block->GetBlockId(), p_count_in_block_predecessors, p->GetBlockId(), in VisitBasicBlock()
111 p->GetBlockId(), block_count_in_p_successors, block->GetBlockId())); in VisitBasicBlock()
Dinduction_var_range.cc1133 HInductionVarAnalysis::InductionInfo* p = info; in GenerateLastValuePeriodic() local
1134 for (; p->induction_class == HInductionVarAnalysis::kPeriodic; p = p->op_b, ++period) { in GenerateLastValuePeriodic()
1135 DCHECK_EQ(p->op_a->induction_class, HInductionVarAnalysis::kInvariant); in GenerateLastValuePeriodic()
1136 if (p->op_a->operation != HInductionVarAnalysis::kFetch) { in GenerateLastValuePeriodic()
1140 DCHECK_EQ(p->induction_class, HInductionVarAnalysis::kInvariant); in GenerateLastValuePeriodic()
1141 if (p->operation != HInductionVarAnalysis::kFetch) { in GenerateLastValuePeriodic()
Dinduction_var_analysis.cc214 for (HInstruction* m = cond->GetPrevious(), *p = nullptr; m && !m->IsSuspendCheck(); m = p) { in RewriteBreakLoopBody() local
215 p = m->GetPrevious(); in RewriteBreakLoopBody()
/art/dexlayout/
Ddexlayout.cc289 static void DumpEscapedString(const char* p, FILE* out_file) { in DumpEscapedString() argument
291 for (; *p; p++) { in DumpEscapedString()
292 switch (*p) { in DumpEscapedString()
309 putc(*p, out_file); in DumpEscapedString()
318 static void DumpXmlAttribute(const char* p, FILE* out_file) { in DumpXmlAttribute() argument
319 for (; *p; p++) { in DumpXmlAttribute()
320 switch (*p) { in DumpXmlAttribute()
343 putc(*p, out_file); in DumpXmlAttribute()
/art/test/988-method-trace/src/art/
DTest988.java381 for (Printable p : results) {
382 p.Print();
/art/test/800-smali/smali/
DsameFieldNames.smali39 .field static public p:Ljava/lang/Integer;
/art/imgdiag/
Dimgdiag.cc774 MemberInfo::NameAndSize>& p : member_info_.offset_to_name_size_) { in DiffEntryContents() local
775 const size_t offset = p.first; in DiffEntryContents()
776 if (memcmp(base_ptr + offset, remote_bytes + offset, p.second.size_) != 0) { in DiffEntryContents()
777 dirty_members.insert(p.first); in DiffEntryContents()
801 MemberInfo::NameAndSize>& p : member_info_.offset_to_name_size_) { in DumpDirtyEntries() local
802 const size_t offset = p.first; in DumpDirtyEntries()
803 const size_t size = p.second.size_; in DumpDirtyEntries()
805 << p.second.name_ in DumpDirtyEntries()
/art/test/1939-proxy-frames/src/art/
DTest1939.java162 (p, m, a) -> {
/art/runtime/hprof/
Dhprof.cc559 for (const auto& p : classes_) { in WriteClassTable() local
560 mirror::Class* c = p.first; in WriteClassTable()
561 HprofClassSerialNumber sn = p.second; in WriteClassTable()
577 for (const auto& p : strings_) { in WriteStringTable() local
578 const std::string& string = p.first; in WriteStringTable()
579 const HprofStringId id = p.second; in WriteStringTable()
/art/cmdline/
Dcmdline_parser.h493 auto&& p = CmdlineParser(ignore_unrecognized_, in Build()
499 return std::move(p); in Build()
/art/dexdump/
Ddexdump.cc366 static void dumpEscapedString(std::string_view p) { in dumpEscapedString() argument
368 for (char c : p) { in dumpEscapedString()
405 static void dumpXmlAttribute(std::string_view p) __attribute__((optnone)) { in dumpXmlAttribute() argument
406 for (const char* c = p.begin(); c < p.end(); ++c) { in dumpXmlAttribute()
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc462 for (auto&& p : types_accessed) { in ProcessDexFile()
463 uses.push_back(p.second); in ProcessDexFile()
/art/tools/ahat/
DREADME.txt8 -p <port>
/art/test/dexdump/
Dcheckers.txt632 name : 'p'
838 … |014b: sput-object v0, Lcom/google/android/checkers/g;.p:[B // field@0068
881 … |01b2: sget-object v0, Lcom/google/android/checkers/g;.p:[B // field@0068
893 … |01cc: iput-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
962 … |0251: sput-object v5, Lcom/google/android/checkers/g;.p:[B // field@0068
967 … |025b: iget-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
970 … |0261: iget-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
973 … |0267: iget-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
976 … |026d: iget-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
993 … |028e: iget-object v0, v9, Lcom/google/android/checkers/CheckersView;.p:Lcom/google/android/…
[all …]
/art/runtime/gc/
Dheap.h702 bool IsInBootImageOatFile(const void* p) const
716 bool IsBootImageAddress(const void* p) const { in IsBootImageAddress() argument
717 return reinterpret_cast<uintptr_t>(p) - boot_images_start_address_ < boot_images_size_; in IsBootImageAddress()
/art/test/906-iterate-heap/src/art/
DTest906.java352 Object p = new Object(); field in Test906.FloatObject
/art/tools/jfuzz/
Djfuzz.cc767 uint64_t p = pow(array_size_, array_dim_); in emitArrayInit() local
768 if (p > 20) { in emitArrayInit()
/art/runtime/
Ddebugger.cc653 uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) { in ExamineNativeObject() argument
654 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); in ExamineNativeObject()
Dinstrumentation.cc740 for (auto& p : requested_instrumentation_levels_) { in UpdateInstrumentationLevels() local
741 if (p.second == InstrumentationLevel::kInstrumentWithInstrumentationStubs) { in UpdateInstrumentationLevels()
742 p.second = InstrumentationLevel::kInstrumentWithInterpreter; in UpdateInstrumentationLevels()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2081 for (StackReference<mirror::Object>* p = gc_mark_stack_->Begin(); in ProcessMarkStackOnce() local
2082 p != gc_mark_stack_->End(); ++p) { in ProcessMarkStackOnce()
2083 refs.push_back(p->AsMirrorPtr()); in ProcessMarkStackOnce()
2132 for (StackReference<mirror::Object>* p = mark_stack->Begin(); p != mark_stack->End(); ++p) { in ProcessThreadLocalMarkStacks() local
2133 mirror::Object* to_ref = p->AsMirrorPtr(); in ProcessThreadLocalMarkStacks()
Dmark_sweep.cc480 uint32_t* p = reinterpret_cast<uint32_t*>(holder_); in operator ()() local
481 oss << &p[i] << ": " << "holder+" << (i * sizeof(uint32_t)) << " = " << std::hex << p[i] in operator ()()
/art/test/
DREADME.md157 integration](https://ci.chromium.org/p/art/g/luci/console). In addition, two
/art/libdexfile/dex/
Ddex_instruction.cc63 #define INSTRUCTION_DESCR(opcode, c, p, format, index, flags, eflags, vflags) \ argument
Ddex_instruction.h84 #define INSTRUCTION_ENUM(opcode, cname, p, f, i, a, e, v) cname = (opcode), argument

12345