Home
last modified time | relevance | path

Searched refs:p_it (Results 1 – 5 of 5) sorted by relevance

/external/oprofile/libutil++/
Dcverb.cpp101 pair<recorder_t::iterator, recorder_t::iterator> p_it = in setup() local
103 if (p_it.first == p_it.second) in setup()
105 for (; p_it.first != p_it.second; ++p_it.first) in setup()
106 p_it.first->second->set = true; in setup()
/external/oprofile/pp/
Dopgprof.cpp117 profile_t::iterator_pair p_it = cg_db.samples_range(); in output_cg() local
118 for (; p_it.first != p_it.second; ++p_it.first) { in output_cg()
119 bfd_vma from = p_it.first.vma() >> 32; in output_cg()
120 bfd_vma to = p_it.first.vma() & 0xffffffff; in output_cg()
125 u32 count = p_it.first.count(); in output_cg()
126 if (count != p_it.first.count()) { in output_cg()
129 << p_it.first.count() - count << endl; in output_cg()
131 op_write_u32(fp, p_it.first.count()); in output_cg()
/external/oprofile/libpp/
Dsymbol_container.cpp52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol); in find() local
53 for ( ; p_it.first != p_it.second; ++p_it.first) in find()
54 result.push_back(*p_it.first); in find()
Dprofile_container.cpp87 profile_t::iterator_pair p_it = in add() local
89 count_type count = accumulate(p_it.first, p_it.second, 0ull); in add()
128 add_samples(abfd, i, p_it, symbol, pclass, start); in add()
135 profile_t::iterator_pair const & p_it, in add_samples() argument
142 for (it = p_it.first; it != p_it.second ; ++it) { in add_samples()
Dcallgraph_container.cpp146 profile_t::iterator_pair p_it = profile.samples_range( in caller_sym() local
156 for (; p_it.first != p_it.second; ++p_it.first) { in caller_sym()
157 samples.push_back(make_pair(p_it.first.vma(), in caller_sym()
158 p_it.first.count())); in caller_sym()