/external/v8/test/mjsunit/tools/ |
D | profile.js | 53 function countNodes(profile, traverseFunc) { argument 55 traverseFunc.call(profile, function () { count++; }); 61 this.profile = new Profile(); 75 this.profile.addLibrary('lib1', 0x11000, 0x12000); 76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900); 77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500); 78 this.profile.addLibrary('lib2', 0x21000, 0x22000); 79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900); 80 this.profile.addStaticCode('lib2-f2', 0x21200, 0x21500); 81 this.profile.addCode('T', 'F1', 0x50100, 0x100); [all …]
|
/external/llvm/test/Transforms/SampleProfile/ |
D | syntax.ll | 1 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/syntax.prof 2>&1 | FileCheck -check-… 2 ; RUN: not opt < %s -sample-profile -sample-profile-file=missing.prof 2>&1 | FileCheck -check-prefi… 3 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_fn_header.prof 2>&1 | FileCh… 4 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_sample_line.prof 2>&1 | File… 5 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_line_values.prof 2>&1 | File… 6 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_discriminator_value.prof 2>&… 7 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_samples.prof 2>&1 | FileChec… 8 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_mangle.prof 2>&1 >/dev/null 14 ; NO-DEBUG: warning: No debug information found in function empty: Function profile not used 15 ; MISSING-FILE: missing.prof: Could not open profile: [all …]
|
/external/icu/icu4c/source/common/ |
D | usprep.cpp | 137 UStringPrepProfile *profile = NULL; in usprep_internal_flushCache() local 156 profile = (UStringPrepProfile *) e->value.pointer; in usprep_internal_flushCache() 159 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 165 usprep_unload(profile); in usprep_internal_flushCache() 175 uprv_free(profile); in usprep_internal_flushCache() 222 loadData(UStringPrepProfile* profile, in loadData() argument 259 if(profile->sprepData==NULL) { in loadData() 260 profile->sprepData=dataMemory; in loadData() 262 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); in loadData() 263 uprv_memcpy(&profile->sprepTrie, &_sprepTrie, sizeof(UTrie)); in loadData() [all …]
|
/external/llvm/docs/CommandGuide/ |
D | llvm-profdata.rst | 12 The :program:`llvm-profdata` tool is a small utility for working with profile 36 :program:`llvm-profdata merge` takes several profile data files 38 indexed profile data file. 40 By default profile data is merged without modification. This means that the 58 indexed profile data can't be written to standard output. 62 Specify an input file name along with a weight. The profile counts of the input 69 Specify that the input profile is an instrumentation-based profile. 73 Specify that the input profile is a sample-based profile. 79 Emit the profile using a binary encoding. For instrumentation-based profile 84 Emit the profile in text mode. This option can also be used with both [all …]
|
/external/e2fsprogs/e2fsck/ |
D | prof_err.et | 14 "A profile section header has a non-zero value" 15 error_code PROF_BAD_LINK_LIST, "Bad linked list in profile structures" 16 error_code PROF_BAD_GROUP_LVL, "Bad group level in profile structures" 18 "Bad parent pointer in profile structures" 19 error_code PROF_MAGIC_ITERATOR, "Bad magic value in profile iterator" 21 error_code PROF_EINVAL, "Invalid argument passed to profile library" 22 error_code PROF_READ_ONLY, "Attempt to modify read-only profile" 29 error_code PROF_SECTION_SYNTAX, "Syntax error in profile section header" 30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation" 31 error_code PROF_EXTRA_CBRACE, "Extra closing brace in profile" [all …]
|
D | profile.c | 209 (prf_file_t profile); 211 static errcode_t profile_get_value(profile_t profile, const char *name, 305 profile_t profile; in profile_init() local 310 profile = malloc(sizeof(struct _profile_t)); in profile_init() 311 if (!profile) in profile_init() 313 memset(profile, 0, sizeof(struct _profile_t)); in profile_init() 314 profile->magic = PROF_MAGIC_PROFILE; in profile_init() 315 last = &profile->first_file; in profile_init() 352 if (!profile->first_file) { in profile_init() 359 *ret_profile = profile; in profile_init() [all …]
|
D | profile.h | 62 (profile_t profile); 65 (profile_t profile, const char *def_string); 68 (profile_t profile, const char *name, const char *subname, 72 (profile_t profile, const char *name, const char *subname, 77 (profile_t profile, const char *name, const char *subname, 82 (profile_t profile, const char *name, const char *subname, 87 (profile_t profile, const char *name, const char *subname, 92 (profile_t profile, const char *const *names,
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 69 virtual void Profile(llvm::FoldingSetNodeID& profile) = 0; 133 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() argument 134 profile.AddInteger((unsigned) RegionValueKind); in Profile() 135 profile.AddPointer(R); in Profile() 138 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() argument 139 Profile(profile, R); in Profile() 177 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() argument 180 profile.AddInteger((unsigned) ConjuredKind); in Profile() 181 profile.AddPointer(S); in Profile() 182 profile.AddPointer(LCtx); in Profile() [all …]
|
/external/mesa3d/src/glsl/builtins/tools/ |
D | generate_builtins.py | 99 def write_profile(filename, profile): argument 103 print '#error builtins profile', profile, 'failed to compile' 106 print 'static const char prototypes_for_' + profile + '[] =' 116 print 'static const char *functions_for_' + profile + ' [] = {' 123 for (filename, profile) in profiles: 124 write_profile(filename, profile) 271 for (filename, profile) in profiles: 272 if profile.endswith('_vert'): 274 elif profile.endswith('_frag'): 279 version = re.sub(r'_(glsl|vert|frag)$', '', profile) [all …]
|
/external/autotest/client/site_tests/network_ShillInitScripts/ |
D | mock_flimflam.py | 28 def CreateProfile(self, profile): argument 34 self.add_method_call('CreateProfile', profile) 40 def RemoveProfile(self, profile): argument 46 self.add_method_call('RemoveProfile', profile) 51 def PushProfile(self, profile): argument 57 self.add_method_call('PushProfile', profile) 63 def InsertUserProfile(self, profile, user_hash): argument 70 self.add_method_call('InsertUserProfile', (profile, user_hash)) 76 def PopProfile(self, profile): argument 82 self.add_method_call('PopProfile', profile)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar | ... .eclipse.equinox.p2.engine.IProfile profile
org.eclipse.equinox.internal.p2. ... |
D | org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar | ... .eclipse.equinox.p2.engine.IProfile profile
org.eclipse.equinox.internal.provisional. ... |
/external/llvm/test/tools/llvm-profdata/ |
D | sample-profile-basic.test | 4 RUN: llvm-profdata show --sample %p/Inputs/sample-profile.proftext | FileCheck %s --check-prefix=SH… 12 RUN: llvm-profdata show --sample --function=_Z3bari %p/Inputs/sample-profile.proftext | FileCheck %… 18 3- Convert the profile to binary encoding and check that they are both 20 RUN: llvm-profdata merge --sample %p/Inputs/sample-profile.proftext --binary -o - | llvm-profdata s… 21 RUN: llvm-profdata show --sample %p/Inputs/sample-profile.proftext -o %t-text 24 4- Merge the binary and text encodings of the profile and check that the 26 RUN: llvm-profdata merge --sample %p/Inputs/sample-profile.proftext -o %t-binprof 27 RUN: llvm-profdata merge --sample --text %p/Inputs/sample-profile.proftext %t-binprof -o - | FileCh… 32 5- Detect invalid text encoding (e.g. instrumentation profile text format). 34 BADTEXT: error: {{.+}}: Unrecognized sample profile encoding format
|
D | text-format-errors.test | 1 Tests for instrumentation profile bad encoding. 6 INVALID-COUNT-LATER: error: {{.*}}invalid-count-later.proftext: Malformed instrumentation profile d… 11 BAD-HASH: error: {{.*}}bad-hash.proftext: Malformed instrumentation profile data 15 NO-COUNTS: error: {{.*}}no-counts.proftext: Malformed instrumentation profile data 19 BINARY: error: {{.+}}: Unrecognized instrumentation profile encoding format 22 5- Detect malformed value profile data 25 VP: Malformed instrumentation profile data 27 6- Detect truncated value profile data 29 VPTRUNC: Truncated profile data
|
/external/compiler-rt/make/platform/ |
D | clang_linux.mk | 52 Configs += builtins-i386 profile-i386 54 Arch.profile-i386 := i386 59 Configs += builtins-x86_64 profile-x86_64 61 Arch.profile-x86_64 := x86_64 74 CFLAGS.profile-i386 := $(CFLAGS) -m32 75 CFLAGS.profile-x86_64 := $(CFLAGS) -m64 79 FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \ 83 FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
|
/external/libpng/contrib/examples/ |
D | iccfrompng.c | 69 png_bytep profile; in extract() local 71 if (png_get_iCCP(png_ptr, info_ptr, &name, &compression_type, &profile, in extract() 76 memcpy(result, profile, *proflen); in extract() 99 png_bytep profile = extract(fp, &proflen); in extract_one_file() local 101 if (profile != NULL && profile != no_profile) in extract_one_file() 127 if (fwrite(profile, proflen, 1, of) == 1 && in extract_one_file() 154 free(profile); in extract_one_file() 157 else if (verbose && profile == no_profile) in extract_one_file()
|
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 247 CpuProfile* profile = profiles->StopProfiling(""); in TEST() local 248 CHECK(profile); in TEST() 252 profile->top_down()->root()->children(); in TEST() 312 CpuProfile* profile = profiles->StopProfiling(""); in TEST() local 313 CHECK(profile); in TEST() 316 const ProfileNode* node = profile->top_down()->root(); in TEST() 359 const i::CpuProfile* profile = in FindCpuProfile() local 363 if (profile == profiler->GetProfile(i)) in FindCpuProfile() 416 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name); in TEST() local 417 CHECK(profile->GetStartTime() <= profile->GetEndTime()); in TEST() [all …]
|
/external/autotest/client/site_tests/network_DefaultProfileCreation/ |
D | network_DefaultProfileCreation.py | 48 profile = None 52 profile = f.read() 53 if profile: 58 if profile is None: 68 time.time() - start_time, profile) 70 if setting not in profile: 72 logging.error('Full profile contents are:\n%s', profile)
|
/external/mesa3d/src/gallium/state_trackers/va/ |
D | va_config.c | 51 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile, in vlVaQueryConfigEntrypoints() argument 59 switch (profile) { in vlVaQueryConfigEntrypoints() 62 VA_INFO("Using profile %08x\n",profile); in vlVaQueryConfigEntrypoints() 75 VA_ERROR("Unsupported profile %08x\n",profile); in vlVaQueryConfigEntrypoints() 85 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, in vlVaGetConfigAttributes() argument 95 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, in vlVaCreateConfig() argument 114 vlVaQueryConfigAttributes(VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, in vlVaQueryConfigAttributes() argument
|
/external/autotest/client/site_tests/hardware_VideoDecodeCapable/src/ |
D | vaapimodule.cc | 119 VAProfile *profile = new VAProfile[num_profiles]; in va_query_profiles() local 121 VAStatus status = vaQueryConfigProfiles(va_display, profile, &num_profiles); in va_query_profiles() 124 delete [] profile; in va_query_profiles() 131 size_t value = static_cast<size_t>(profile[i]); in va_query_profiles() 134 delete [] profile; in va_query_profiles() 140 int profile; in va_query_entrypoints() local 141 if (!PyArg_ParseTuple(args, "Oi", &bundle, &profile)) in va_query_entrypoints() 152 static_cast<VAProfile>(profile), in va_query_entrypoints() 170 int profile; in va_get_rt_format() local 172 if (!PyArg_ParseTuple(args, "Oii", &bundle, &profile, &entrypoint)) in va_get_rt_format() [all …]
|
/external/jemalloc/bin/ |
D | jeprof.in | 577 my ($profile, $symbols, $libs, $thread) = @_; 580 my $total = TotalProfile($profile); 583 $profile = RemoveUninterestingFrames($symbols, $profile); 587 $profile = FocusProfile($symbols, $profile, $main::opt_focus); 592 $profile = IgnoreProfile($symbols, $profile, $main::opt_ignore); 595 my $calls = ExtractCalls($symbols, $profile); 599 my $reduced = ReduceProfile($symbols, $profile); 622 PrintSymbolizedProfile($symbols, $profile, $main::prog); 626 if (PrintDot($main::prog, $symbols, $profile, $flat, $cumulative, $total)) { 652 InteractiveMode($profile, $symbols, $libs, $total); [all …]
|
/external/deqp/scripts/egl/ |
D | common.py | 75 def getInterface (registry, api, version=None, profile=None, **kwargs): argument 76 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs) 102 profile = check(api, version) 103 if profile is True: 104 profile = None 105 elif profile is False: 107 iface = getInterface(registry, api, version=version, profile=profile)
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_decoder.c | 36 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile) in vl_profile_supported() argument 39 switch (u_reduce_video_profile(profile)) { in vl_profile_supported() 49 enum pipe_video_profile profile, in vl_create_decoder() argument 64 profile, in vl_create_decoder() 71 switch (u_reduce_video_profile(profile)) { in vl_create_decoder() 73 return vl_create_mpeg12_decoder(pipe, profile, entrypoint, chroma_format, in vl_create_decoder()
|
/external/autotest/client/cros/scripts/ |
D | profile | 76 profile = shill.get_dbus_object(shill.DBUS_TYPE_PROFILE, path) 78 profile.DeleteEntry(identifier) 88 for profile in shill.get_profiles(): 89 print_profile_path(profile.object_path, active_profile.object_path) 91 profile.GetProperties(utf8_strings=True)) 96 pprint.pprint(shill.dbus2primitive(profile.GetEntry(ident)), 106 for profile in shill.get_profiles(): 107 print_profile_path(profile.object_path, active_profile.object_path) 109 profile.GetProperties(utf8_strings=True))
|
/external/dng_sdk/source/ |
D | dng_color_spec.cpp | 67 const dng_camera_profile *profile) in dng_color_spec() argument 100 if (!profile || !profile->IsValid (fChannels)) in dng_color_spec() 105 if (profile->WasStubbed ()) in dng_color_spec() 110 fTemperature1 = profile->CalibrationTemperature1 (); in dng_color_spec() 111 fTemperature2 = profile->CalibrationTemperature2 (); in dng_color_spec() 113 fColorMatrix1 = profile->ColorMatrix1 (); in dng_color_spec() 114 fColorMatrix2 = profile->ColorMatrix2 (); in dng_color_spec() 116 fForwardMatrix1 = profile->ForwardMatrix1 (); in dng_color_spec() 117 fForwardMatrix2 = profile->ForwardMatrix2 (); in dng_color_spec() 119 fReductionMatrix1 = profile->ReductionMatrix1 (); in dng_color_spec() [all …]
|