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

1 2 3 4 5

  /hardware/intel/common/libva/test/basic/
test_common.c 88 #define PROFILE(profile) case VAProfile##profile: return("VAProfile" #profile);
90 const char *profile2string(VAProfile profile)
92 switch(profile)
94 PROFILE(None)
95 PROFILE(MPEG2Simple)
96 PROFILE(MPEG2Main)
97 PROFILE(MPEG4Simple
    [all...]
  /packages/services/Telephony/src/com/android/phone/
Profiler.java 33 // TODO: Instead of doing all these "if (PROFILE)" checks here, every
35 // Profiler.PROFILE first, so the method calls will get optimized out
37 private static final boolean PROFILE = false;
60 //((ViewRoot)p).profile();
66 if (PROFILE) {
72 if (PROFILE) {
78 if (PROFILE) {
85 if (PROFILE) {
95 if (PROFILE) {
101 if (PROFILE) {
    [all...]
CallTime.java 37 /* package */ static final boolean PROFILE = true;
105 if (PROFILE && isTraceReady()) {
167 if (PROFILE && isTraceRunning()) {
194 if (PROFILE & sProfileState == PROFILE_STATE_READY) {
223 if (PROFILE) {
  /frameworks/base/core/java/android/util/
Config.java 43 public static final boolean PROFILE = false;
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlinclude.h 14 #ifdef PROFILE
15 #include "profile.h"
30 #ifdef PROFILE
34 #endif // PROFILE
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlinclude.h 14 #ifdef PROFILE
15 #include "profile.h"
30 #ifdef PROFILE
34 #endif // PROFILE
  /external/vogar/src/vogar/
TestProperties.java 53 * Profile enabled?
55 public static final String PROFILE = "profile";
58 * Profile frame depth
63 * Profile interval in milliseconds
68 * Profile output file
73 * Profile thread group instead of just single thread (where supported)
  /external/webrtc/webrtc/base/
profiler.h 17 // PROFILE("My event");
54 #define PROFILE(msg) rtc::ProfilerScope UNIQUE_VAR(msg)
56 #define PROFILE_F() PROFILE(__FUNCTION__)
65 // Starts and stops a profile event. Useful when an event is not easily
77 #define PROFILE(msg) (void)0
141 // Used by PROFILE macro.
profiler_unittest.cc 34 // Profile a long-running function.
59 { // Profile a scope.
60 PROFILE(kEvent1Name);
72 { // Profile a second event.
73 PROFILE(kEvent2Name);
90 PROFILE(kEvent1Name);
  /development/perftests/panorama/feature_stab/src/dbregtest/
dbregtest.cpp 27 #if PROFILE
112 #if PROFILE
198 #if PROFILE
205 #if PROFILE
231 #if PROFILE
240 #if PROFILE
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 27 #if PROFILE
112 #if PROFILE
198 #if PROFILE
205 #if PROFILE
231 #if PROFILE
240 #if PROFILE
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_common_defs.h 43 PROFILE syntax element. */
147 // From Sequence Layer for Advanced Profile
148 uint8_t PROFILE; /** 2 bit(s). */
164 // From EntryPoint Layer for Advanced Profile
206 /** This structure represents the sequence header for advanced profile. */
218 unsigned PROFILE:2;
225 unsigned PROFILE:2;
392 unsigned PROFILE:4;
397 unsigned PROFILE:4;
518 /* Picture layer for simple or main profile. *
    [all...]
vc1parse_ipic.c 10 // or main profile bitstream or progressive BI picture in main profile
19 * or main profile bitstream or progressive BI picture in main profile
34 /* rounding control is implied for simple and main profile, SMPTE 421M 8.3.7.
36 if (md->PROFILE != VC1_PROFILE_ADVANCED)
73 /* MVRANGE but only for main profile. */
vc1parse_pic_com.c 17 * main profile down to macroblock layer.
33 if (md->PROFILE != VC1_PROFILE_ADVANCED)
35 // As per spec, for main/simple profile, if the size of the coded picture is <= 1B,
vc1parse.c 24 * advanced profile header.
42 md->PROFILE = rcv.struct_c.PROFILE >> 2;
58 if ((md->PROFILE == VC1_PROFILE_SIMPLE) ||
59 (md->MULTIRES && md->PROFILE == VC1_PROFILE_MAIN))
91 viddec_fw_vc1_set_rcv_profile(&wi.vc1_sh_struct_a_c, rcv.struct_c.PROFILE);
105 * Parse sequence layer. This function is only applicable to advanced profile
127 md->PROFILE = sh.seq_flags.PROFILE;
218 viddec_fw_vc1_set_profile(&wi_sl.vc1_sl, sh.seq_flags.PROFILE);
    [all...]
vc1parse_ppic.c 10 // or main profile bitstream.
18 * or main profile bitstream. This parser starts after PTYPE was parsed but
33 /* rounding control is implied for simple and main profile, SMPTE 421M 8.3.7.
35 if (md->PROFILE != VC1_PROFILE_ADVANCED)
  /development/perftests/panorama/feature_stab/src/dbreg/
dbreg.cpp 23 #if PROFILE
377 #if PROFILE
386 #if PROFILE
391 # if PROFILE
399 #if PROFILE
411 # if PROFILE
433 #if PROFILE
441 # if PROFILE
467 #if PROFILE
dbreg.h 31 #define PROFILE 0
39 #if PROFILE
568 #if PROFILE
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.cpp 23 #if PROFILE
377 #if PROFILE
386 #if PROFILE
391 # if PROFILE
399 #if PROFILE
411 # if PROFILE
433 #if PROFILE
441 # if PROFILE
467 #if PROFILE
dbreg.h 31 #define PROFILE 0
39 #if PROFILE
568 #if PROFILE
  /external/v8/src/ic/
ic-compiler.cc 179 PROFILE(isolate(), CodeCreateEvent(Logger::LOAD_INITIALIZE_TAG, *code, 0));
187 PROFILE(isolate(), CodeCreateEvent(Logger::STORE_INITIALIZE_TAG, *code, 0));
195 PROFILE(isolate(),
206 PROFILE(isolate(), CodeCreateEvent(Logger::STORE_GENERIC_TAG, *code, 0));
214 PROFILE(isolate(), CodeCreateEvent(Logger::STORE_MEGAMORPHIC_TAG, *code, 0));
225 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, *name));
  /external/vogar/test/vogar/target/
TestRunnerRule.java 45 setProperty(TestProperties.PROFILE, testRunnerProperties.profile());
  /toolchain/binutils/binutils-2.25/opcodes/
xc16x-desc.c 87 { "PROFILE", &bool_attr[0], &bool_attr[0] },
635 { "h-gr", HW_H_GR, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_gr_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
636 { "h-cr", HW_H_CR, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_gr_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
637 { "h-ext", HW_H_EXT, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_ext_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
638 { "h-psw", HW_H_PSW, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_psw_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
639 { "h-grb", HW_H_GRB, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_grb_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
640 { "h-cc", HW_H_CC, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_conditioncode_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
641 { "h-ecc", HW_H_ECC, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_extconditioncode_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
642 { "h-grb8", HW_H_GRB8, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_grb8_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } },
643 { "h-r8", HW_H_R8, CGEN_ASM_KEYWORD, (PTR) & xc16x_cgen_opval_r8_names, { 0|A(CACHE_ADDR)|A(PROFILE), { { { (1<<MACH_BASE), 0 } } } } }
    [all...]
  /external/jemalloc/bin/
jeprof.in 33 # Program for printing the profile generated by common/profiler.cc,
36 # The profile contains a sequence of entries of the form:
38 # This program parses the profile, and generates user-readable
43 # % tools/jeprof "program" "profile"
46 # % tools/jeprof --text "program" "profile"
49 # % tools/jeprof --gv "program" "profile"
52 # % tools/jeprof --gv --focus=Mutex "program" "profile"
55 # % tools/jeprof --gv --focus=Mutex --ignore=string "program" "profile"
59 # % tools/jeprof --list=IBF_CheckDocid "program" "profile"
64 # % tools/jeprof --disasm=IBF_CheckDocid "program" "profile"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 119 #if defined(DEBUG) || defined(PROFILE)

Completed in 459 milliseconds

1 2 3 4 5