HomeSort by relevance Sort by last modified time
    Searched refs:pclass (Results 1 - 25 of 26) sorted by null

1 2

  /external/oprofile/libpp/
callgraph_container.h 142 * @param pclass profile class nr
147 bool debug_info, size_t pclass);
151 size_t pclass, profile_container const & pc,
155 size_t pclass, profile_container const & pc,
format_output.cpp 171 for (size_t pclass = 0 ; pclass < nr_classes; ++pclass) {
305 out << f.sample.counts[f.pclass];
315 f.counts.cumulated_samples[f.pclass] += f.sample.counts[f.pclass];
316 out << f.counts.cumulated_samples[f.pclass];
325 return get_percent(f.sample.counts[f.pclass], f.counts.total[f.pclass]);
333 f.counts.cumulated_percent[f.pclass] += f.sample.counts[f.pclass]
    [all...]
profile_container.h 59 * @param pclass the profile class to add results for
67 std::string const & app_name, size_t pclass);
147 symbol_entry const * symbol, size_t pclass,
xml_utils.cpp 46 string get_event_num(size_t pclass)
48 return classes.v[pclass].ptemplate.event;
104 string get_cpu_num(size_t pclass)
106 return classes.v[pclass].ptemplate.cpu;
296 profile_class & pclass = classes.v[i]; local
297 size_t event = atoi(pclass.ptemplate.event.c_str());
305 size_t cpu = atoi(pclass.ptemplate.cpu.c_str());
312 if ((*sc_ptr)[j].unitmask == pclass.ptemplate.unitmask) {
325 (*sc_ptr)[new_index].unitmask = pclass.ptemplate.unitmask;
330 out << init_attr(CPU_NUM, pclass.ptemplate.cpu)
    [all...]
profile_container.cpp 75 size_t pclass)
95 symb_entry.sample.counts[pclass] = count;
96 total_count[pclass] += count;
128 add_samples(abfd, i, p_it, symbol, pclass, start);
136 symbol_entry const * symbol, size_t pclass,
145 sample.counts[pclass] = it.count();
213 // Give a sort order on filename for the selected pclass.
arrange_profiles.cpp 241 opd_header const get_first_header(profile_class const & pclass)
243 profile_set const & profile = *(pclass.profiles.begin());
285 opd_header const get_header(profile_class const & pclass,
288 opd_header header = get_first_header(pclass);
293 profile_set const & profile = *(pclass.profiles.begin());
626 void add_profile(profile_class & pclass, parsed_filename const & parsed,
629 list<profile_set>::iterator it = pclass.profiles.begin();
630 list<profile_set>::iterator const end = pclass.profiles.end();
642 pclass.profiles.push_back(set);
670 profile_class & pclass local
    [all...]
xml_utils.h 50 size_t pclass);
callgraph_container.cpp 427 string const & app_image, size_t pclass,
438 pclass, pc, debug_info, merge_lib);
445 string const & app_image, size_t pclass,
496 debug_info, pclass);
504 profile_container const & pc, bool debug_info, size_t pclass)
562 arc_count[pclass] =
format_output.h 89 : symbol(sym), sample(s), pclass(pc),
93 size_t pclass; member in struct:format_output::formatter::field_datum
  /external/lldb/source/DataFormatters/
TypeSynthetic.cpp 68 ScriptedSyntheticChildren::FrontEnd::FrontEnd(std::string pclass, ValueObject &backend) :
70 m_python_class(pclass),
  /external/chromium_org/third_party/webrtc/base/
sigslot.h 582 bool connected(has_slots_interface* pclass)
591 if ((*it)->getdest() == pclass)
599 void disconnect(has_slots_interface* pclass)
607 if((*it)->getdest() == pclass)
611 pclass->signal_disconnect(this);
736 bool connected(has_slots_interface* pclass)
745 if ((*it)->getdest() == pclass)
753 void disconnect(has_slots_interface* pclass)
761 if((*it)->getdest() == pclass)
765 pclass->signal_disconnect(this)
    [all...]
  /external/oprofile/pp/
opreport.cpp 54 size_t pclass);
59 add_files(list<profile_sample_files> const & files, size_t pclass)
68 counts[pclass] += count;
95 count_type add_profile(profile_set const & profile, size_t pclass);
125 size_t pclass)
131 count_type app_count = summ.add_files(profile.files, pclass);
132 counts[pclass] += app_count;
141 count_type lib_count = summ.add_files(it->files, pclass);
142 counts[pclass] += lib_count;
  /external/lldb/include/lldb/DataFormatters/
TypeSynthetic.h 479 const char* pclass,
485 if (pclass)
486 m_python_class = pclass;
533 FrontEnd (std::string pclass,
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
asn1_gen.c 122 static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass);
389 static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass)
417 *pclass = V_ASN1_UNIVERSAL;
421 *pclass = V_ASN1_APPLICATION;
425 *pclass = V_ASN1_PRIVATE;
429 *pclass = V_ASN1_CONTEXT_SPECIFIC;
443 *pclass = V_ASN1_CONTEXT_SPECIFIC;
  /external/openssl/crypto/asn1/
asn1_gen.c 119 static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass);
386 static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass)
414 *pclass = V_ASN1_UNIVERSAL;
418 *pclass = V_ASN1_APPLICATION;
422 *pclass = V_ASN1_PRIVATE;
426 *pclass = V_ASN1_CONTEXT_SPECIFIC;
440 *pclass = V_ASN1_CONTEXT_SPECIFIC;
tasn_dec.c 1266 int ptag, pclass; local
1276 pclass = ctx->pclass;
1282 i = ASN1_get_object(&p, &plen, &ptag, &pclass, len);
1287 ctx->pclass = pclass;
1312 if ((exptag != ptag) || (expclass != pclass))
1340 *oclass = pclass;
asn1_lib.c 95 int *pclass, long omax)
131 *pclass=xclass;
asn1t.h 648 int pclass; /* class value */ member in struct:ASN1_TLC_st
asn1.h     [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_dec.c 1223 int ptag, pclass; local
1233 pclass = ctx->pclass;
1239 i = ASN1_get_object(&p, &plen, &ptag, &pclass, len);
1244 ctx->pclass = pclass;
1268 if ((exptag != ptag) || (expclass != pclass))
1296 *oclass = pclass;
    [all...]
asn1_lib.c 97 int *pclass, long omax)
133 *pclass=xclass;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ConstructorTest.java 192 Class<? extends ConstructorTestHelper> pclass = new ConstructorTestHelper().getClass(); local
193 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0]);
194 val = ctor.getDeclaringClass().equals(pclass);
  /external/chromium_org/third_party/boringssl/src/include/openssl/
asn1t.h 595 int pclass; /* class value */ member in struct:ASN1_TLC_st
asn1.h     [all...]
  /external/openssl/include/openssl/
asn1t.h 648 int pclass; /* class value */ member in struct:ASN1_TLC_st

Completed in 1297 milliseconds

1 2