HomeSort by relevance Sort by last modified time
    Searched refs:Profiles (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/ProfileData/
SampleProfReader.h 10 // This file contains definitions needed for reading sample profiles.
19 // Sample profiles are written as ASCII text. The file is divided into
235 : Profiles(0), Ctx(C), Buffer(std::move(B)) {}
242 /// \brief Read sample profiles from the associated file.
248 /// \brief Print all the profiles on stream \p OS.
253 return &Profiles[F.getName()];
256 /// \brief Return all the profiles.
257 StringMap<FunctionSamples> &getProfiles() { return Profiles; }
278 /// to their corresponding profiles.
279 StringMap<FunctionSamples> Profiles;
    [all...]
  /external/llvm/unittests/ProfileData/
SampleProfTest.cpp 65 StringMap<FunctionSamples> Profiles;
66 Profiles[FooName] = std::move(FooSamples);
67 Profiles[BarName] = std::move(BarSamples);
70 EC = Writer->write(Profiles);
  /external/autotest/client/common_lib/cros/
dbus_send_unittests.py 100 string "Profiles"
165 'Profiles': ['/profile/default'],
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 10 // This file implements the class that reads LLVM sample profiles. It
41 OS << "Function: " << FName << ": " << Profiles[FName];
44 /// \brief Dump all the function profiles found on stream \p OS.
46 for (const auto &I : Profiles)
181 Profiles[FName] = FunctionSamples();
182 FunctionSamples &FProfile = Profiles[FName];
373 Profiles[*FName] = FunctionSamples();
374 FunctionSamples &FProfile = Profiles[*FName];
550 // body, there will be identical replicated profiles for the
553 FProfile = &Profiles[Name]
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsps2.c 41 of each CRD, CSA the profiles are converted to Lab via a device
51 the device -> XYZ transform. These cases identifies monochrome profiles (often
61 NOTE: CLUT-based monochrome profiles are NOT supported. So, cmsFLAGS_MATRIXINPUT
62 flag is forced on such profiles.
75 On simpler profiles, the PCS is already XYZ, so no conversion is required.
868 cmsHPROFILE Profiles[2];
883 Profiles[0] = hProfile;
884 Profiles[1] = hLab;
886 xform = cmsCreateMultiprofileTransform(Profiles, 2, InputFormat, TYPE_Lab_DBL, Intent, 0);
    [all...]
  /system/bt/doc/
directory_layout.md 23 * profiles - *Bluetooth Profiles* - **TBD** Collection of all profiles.
24 * stack - **Deprecated** - The Stack - Push to proper spot in *./profiles*
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 55 // Hint for common error of forgetting -sample for sample profiles.
177 StringMap<FunctionSamples> &Profiles = Reader->getProfiles();
178 for (StringMap<FunctionSamples>::iterator I = Profiles.begin(),
179 E = Profiles.end();
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 23 // BUG(rsc): Profiles are incomplete and inaccurate on NetBSD and OS X.
28 // Packages can create and maintain their own profiles; the most common
34 // Each Profile has a unique name. A few profiles are predefined:
41 // These predefined profiles maintain themselves and panic on an explicit
63 // profiles records all registered profiles.
64 var profiles struct { var
94 profiles.mu.Lock()
95 if profiles.m == nil {
96 // Initial built-in profiles
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 23 // BUG(rsc): Profiles are incomplete and inaccurate on NetBSD and OS X.
28 // Packages can create and maintain their own profiles; the most common
34 // Each Profile has a unique name. A few profiles are predefined:
41 // These predefined profiles maintain themselves and panic on an explicit
63 // profiles records all registered profiles.
64 var profiles struct { var
94 profiles.mu.Lock()
95 if profiles.m == nil {
96 // Initial built-in profiles
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 41 // To view all available profiles, open http://localhost:6060/debug/pprof/
206 // listing the available profiles.
216 profiles := pprof.Profiles()
217 if err := indexTmpl.Execute(w, profiles); err != nil {
229 profiles:<br>
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 41 // To view all available profiles, open http://localhost:6060/debug/pprof/
206 // listing the available profiles.
216 profiles := pprof.Profiles()
217 if err := indexTmpl.Execute(w, profiles); err != nil {
229 profiles:<br>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddmmc.h 141 FEATURE_DATA_PROFILE_LIST_EX Profiles[0];
  /external/ImageMagick/www/api/
profile.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Dealing with Image Profiles</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, dealing, with, image, profiles, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
59 <p>CloneImageProfiles() clones one or more image profiles.</p>
182 <p>ProfileImage() associates, applies, or removes an ICM, IPTC, or generic profile with / to / from an image. If the profile is NULL, it is removed from the image otherwise added or applied. Use a name of '*' and a profile of NULL to remove all profiles from the image.</p>
184 <p>ICC and ICM profiles are handled as follows: If the image does not have an associated color profile, the one you provide is associated with the image and the image pixels are not transformed. Otherwise, the colorspace transform defined by the existing and new profile are applied to the image pixels and the new profile is associated with the image.</p>
249 <p>ResetImageProfileIterator() resets the image profile iterator. Use it in conjunction with GetNextImageProfile() to iterate over all the profiles associated with an image.</p>
271 <p>SetImageProfile() adds a named profile to the image. If a profile with the same name already exists, it is replaced. This method differs from the ProfileImage() method in that it does not apply CMS color profiles.</p>
292 <dd>the profile name, for example icc, exif, and 8bim (8bim is the Photoshop wrapper for iptc profiles). </dd>
302 <p>SyncImageProfiles() synchronizes image properties with the image profiles. Currently we only support updating the EXIF resolution and orientation.</p>
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/
profile.go 6 // methods to encode/decode profiles in this format.
192 // because legacy profiles don't obey the convention of putting main
433 // Merge adds profile p adjusted by ratio r into profile p. Profiles
435 // TODO(rsilvera): consider normalizing the profiles based on the
475 // Compatible determines if two profiles can be compared/merged.
476 // returns nil if the profiles are compatible; otherwise an error with
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/
profile.go 6 // methods to encode/decode profiles in this format.
192 // because legacy profiles don't obey the convention of putting main
433 // Merge adds profile p adjusted by ratio r into profile p. Profiles
435 // TODO(rsilvera): consider normalizing the profiles based on the
475 // Compatible determines if two profiles can be compared/merged.
476 // returns nil if the profiles are compatible; otherwise an error with
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 
  /external/jemalloc/bin/
jeprof.in 97 # These are used for dynamic profiles
100 # These are the web pages that servers need to support for dynamic profiles
118 my $PROFILES = "($HEAP_PAGE|$PROFILE_PAGE|$PMUPROFILE_PAGE|" .
127 # 64-bit profiles. To err on the safe size, default to 64-bit here:
148 jeprof [options] <program> <profiles>
149 <profiles> is a space separated list of profile names.
150 jeprof [options] <symbolized-profiles>
151 <symbolized-profiles> is a list of profile files where each file contains
182 --seconds=<n> Length of time for dynamic profiles [default=30 secs]
242 JEPROF_TMPDIR Profiles directory. Defaults to \$HOME/jepro
    [all...]

Completed in 1256 milliseconds