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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
22 def run_hotshot(filename, profile, args):
23 prof = hotshot.Profile(profile)
28 stats = hotshot.stats.load(profile)
43 parser.add_option("-p", "--profile", action="store", default=PROFILE,
44 dest="profile", help='Specify profile file to use')
52 return run_hotshot(filename, options.profile, args[1:])
    [all...]
  /external/python/cpython2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
22 def run_hotshot(filename, profile, args):
23 prof = hotshot.Profile(profile)
28 stats = hotshot.stats.load(profile)
43 parser.add_option("-p", "--profile", action="store", default=PROFILE,
44 dest="profile", help='Specify profile file to use')
52 return run_hotshot(filename, options.profile, args[1:]
    [all...]
  /frameworks/base/core/java/android/util/
Config.java 43 public static final boolean PROFILE = false;
  /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...]
  /external/v8/src/
code-events.h 76 #define PROFILE(the_isolate, Call) (the_isolate)->code_event_dispatcher()->Call;
  /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) {
  /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.
  /external/libogg/win32/
Makefile 96 PROFILE = -Wall -W -pg -g -O20 -ffast-math -fsigned-char -g -O2
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 31 #define PROFILE 0
39 #if PROFILE
568 #if PROFILE
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_loader.h 165 uint8 PROFILE;
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalCooling.java 87 private static final String PROFILE = "Profile";
288 } else if (name.equalsIgnoreCase(PROFILE)) {
366 } else if (name.equalsIgnoreCase(PROFILE)) {
374 // This indicates we have not seen any <Profile> tag.
375 // Consider it as if we have only one 'Default' Profile.
471 // Assume 'Default' profile if there is no profile parameter
    [all...]
ThermalService.java 95 private static final String PROFILE = "Profile";
297 } else if (name.equalsIgnoreCase(PROFILE)) {
435 // This indicates we have not seen any <Profile> tag.
436 // Consider it as if we have only one 'Default' Profile.
441 } else if (name.equalsIgnoreCase(PROFILE)) {
580 Log.i(TAG, "Zones under Profile: " + key);
596 /* Start monitoring the zones in Default Thermal Profile */
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 44 private static final boolean PROFILE = false;
226 if (PROFILE) {
282 if (PROFILE) {
  /external/libavc/test/encoder/
main.c 113 PROFILE,
189 { "--", "--profile", PROFILE, "Profile mode: Supported values BASE, MAIN, HIGH\n" },
    [all...]
  /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...]
  /hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/
vbp_loader.h 321 uint8 PROFILE;
  /hardware/intel/img/psb_video/src/mrst/
psb_H264.c 81 } PROFILE;
110 uint32_t profile; // ENTDEC BE_PROFILE & FE_PROFILE member in struct:context_H264_s
302 VAProfile profile,
352 switch (obj_config->profile) {
423 switch (obj_config->profile) {
426 ctx->profile = H264_BASELINE_PROFILE;
431 ctx->profile = H264_MAIN_PROFILE;
436 ctx->profile = H264_HIGH_PROFILE;
719 REGIO_WRITE_FIELD_LITE(ctx->reg_SPS0, MSVDX_VEC_H264, CR_VEC_H264_BE_SPS0, H264_BE_SPS0_DEFAULT_MATRIX_FLAG, (ctx->profile == H264_BASELINE_PROFILE)); /* Always use suplied matrix non baseline otherwise use default*/
    [all...]
  /hardware/intel/img/psb_video/src/
pnw_H264.c 89 } PROFILE;
125 uint32_t profile; // ENTDEC BE_PROFILE & FE_PROFILE member in struct:context_H264_s
310 VAProfile profile,
322 (profile == VAProfileH264High))
329 (profile == VAProfileH264High))
376 switch (obj_config->profile) {
435 switch (obj_config->profile) {
437 ctx->profile = H264_BASELINE_PROFILE;
442 ctx->profile = H264_MAIN_PROFILE;
448 ctx->profile = H264_HIGH_PROFILE
    [all...]
vc1_header.h 51 CONDOVER affects overlap smoothing in advanced profile.
165 IMG_UINT8 PROFILE;
201 uint32_t profile; member in struct:context_VC1_s
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
RenderScript.java 284 * PROFILE context, Intended to be used once the first time an
288 PROFILE (2);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
icm.h 175 } PROFILE;
176 typedef PROFILE *PPROFILE,*LPPROFILE;
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 191 * PROFILE context, Intended to be used once the first time an
195 PROFILE (2);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 106 protected static final boolean PROFILE = false;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 98 import android.provider.ContactsContract.Profile;
238 // The database tag to use for representing the profile DB in contacts transactions.
239 /* package */ static final String PROFILE_DB_TAG = "profile";
414 public static final int PROFILE = 19000;
445 // Inserts into URIs in this map will direct to the profile database if the parent record's
447 // map) is in the profile ID-space (see {@link ProfileDatabaseHelper#PROFILE_ID_SPACE}).
    [all...]

Completed in 1318 milliseconds

1 2 3