/external/dynamic_depth/internal/dynamic_depth/ |
D | profiles.cc | 11 void Profiles::GetNamespaces( in GetNamespaces() 22 std::unique_ptr<Profiles> Profiles::FromProfileArray( in FromProfileArray() 28 std::unique_ptr<Profiles> profiles(new Profiles()); in FromProfileArray() 33 std::unique_ptr<Profiles> Profiles::FromDeserializer( in FromDeserializer() 35 std::unique_ptr<Profiles> profiles(new Profiles()); in FromDeserializer() 39 DynamicDepthConst::Namespace(DynamicDepthConst::Profiles()), in FromDeserializer() 40 DynamicDepthConst::Profiles(), i); in FromDeserializer() 43 DynamicDepthConst::Namespace(DynamicDepthConst::Profiles()), in FromDeserializer() 44 DynamicDepthConst::Profiles(), ++i)) { in FromDeserializer() 57 const std::vector<const Profile*> Profiles::GetProfiles() const { in GetProfiles() [all …]
|
D | const.h | 32 static const char* Profiles();
|
D | const.cc | 75 const char* DynamicDepthConst::Profiles() { return kProfiles; } in Profiles() function in dynamic_depth::DynamicDepthConst
|
D | device.cc | 59 auto profiles = Profiles::FromDeserializer(deserializer); in ParseFields() 146 const Profiles* Device::GetProfiles() const { return params_->profiles.get(); } in GetProfiles()
|
D | depth_jpeg.cc | 46 const Profiles* profiles = device->GetProfiles(); in ValidateAndroidDynamicDepthBuffer()
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | profiles.h | 17 class Profiles : public Element { 30 static std::unique_ptr<Profiles> FromProfileArray( 35 static std::unique_ptr<Profiles> FromDeserializer( 44 Profiles(const Profiles&) = delete; 45 void operator=(const Profiles&) = delete; 48 Profiles() = default;
|
D | device.h | 34 std::unique_ptr<Profiles> profiles; 97 const Profiles* GetProfiles() const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
D | SampleProfReader.h | 269 : Profiles(0), Ctx(C), Buffer(std::move(B)), Format(Format) {} 293 if (Profiles.count(Fname)) in getSamplesFor() 294 return &Profiles[Fname]; in getSamplesFor() 299 StringMap<FunctionSamples> &getProfiles() { return Profiles; } in getProfiles() 327 StringMap<FunctionSamples> Profiles;
|
/external/llvm/include/llvm/ProfileData/ |
D | SampleProfReader.h | 260 : Profiles(0), Ctx(C), Buffer(std::move(B)) {} in SampleProfileReader() 278 return &Profiles[F.getName()]; in getSamplesFor() 282 StringMap<FunctionSamples> &getProfiles() { return Profiles; } in getProfiles() 307 StringMap<FunctionSamples> Profiles;
|
/external/llvm/unittests/ProfileData/ |
D | SampleProfTest.cpp | 87 StringMap<FunctionSamples> Profiles; in testRoundTrip() local 88 Profiles[FooName] = std::move(FooSamples); in testRoundTrip() 89 Profiles[BarName] = std::move(BarSamples); in testRoundTrip() 92 EC = Writer->write(Profiles); in testRoundTrip()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ProfileData/ |
D | SampleProfTest.cpp | 86 StringMap<FunctionSamples> Profiles; in testRoundTrip() local 87 Profiles[FooName] = std::move(FooSamples); in testRoundTrip() 88 Profiles[BarName] = std::move(BarSamples); in testRoundTrip() 91 EC = Writer->write(Profiles); in testRoundTrip()
|
/external/llvm/lib/ProfileData/ |
D | SampleProfReader.cpp | 41 OS << "Function: " << FName << ": " << Profiles[FName]; in dumpFunctionProfile() 46 for (const auto &I : Profiles) in dump() 178 Profiles[FName] = FunctionSamples(); in read() 179 FunctionSamples &FProfile = Profiles[FName]; in read() 375 Profiles[*FName] = FunctionSamples(); in read() 376 FunctionSamples &FProfile = Profiles[*FName]; in read() 616 FProfile = &Profiles[Name]; in readOneFunctionProfile() 685 FunctionSamples &TargetProfile = Profiles[TargetName]; in readOneFunctionProfile() 797 for (const auto &I : Profiles) { in computeSummary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/ |
D | SampleProfReader.cpp | 52 OS << "Function: " << FName << ": " << Profiles[FName]; in dumpFunctionProfile() 57 for (const auto &I : Profiles) in dump() 222 Profiles[FName] = FunctionSamples(); in read() 223 FunctionSamples &FProfile = Profiles[FName]; in read() 436 Profiles[*FName] = FunctionSamples(); in read() 437 FunctionSamples &FProfile = Profiles[*FName]; in read() 716 FProfile = &Profiles[Name]; in readOneFunctionProfile() 893 for (const auto &I : Profiles) { in computeSummary()
|
/external/pdfium/third_party/lcms/src/ |
D | cmsps2.c | 868 cmsHPROFILE Profiles[2]; in WriteInputLUT() local 883 Profiles[0] = hProfile; in WriteInputLUT() 884 Profiles[1] = hLab; in WriteInputLUT() 886 xform = cmsCreateMultiprofileTransform(Profiles, 2, InputFormat, TYPE_Lab_DBL, Intent, 0); in WriteInputLUT() 1285 cmsHPROFILE Profiles[3]; in WriteOutputLUT() local 1310 Profiles[0] = hLab; in WriteOutputLUT() 1311 Profiles[1] = hProfile; in WriteOutputLUT() 1314 Profiles, 2, TYPE_Lab_DBL, in WriteOutputLUT()
|
/external/freetype/docs/ |
D | raster.txt | 18 2. Profiles and Spans 20 b. Decomposing Outlines into Profiles 22 d. Computing Profiles Extents 23 e. Computing Profiles Coordinates 164 2. Profiles and Spans 235 b. Decomposing Outlines into Profiles 338 d. Computing Profiles Extents 525 e. Computing Profiles Coordinates
|
/external/grpc-grpc-java/buildscripts/ |
D | sonatype-upload.sh | 23 * Build Promotion > Staging Profiles
|
/external/llvm/tools/llvm-profdata/ |
D | llvm-profdata.cpp | 195 StringMap<FunctionSamples> &Profiles = Reader->getProfiles(); in mergeSampleProfile() local 196 for (StringMap<FunctionSamples>::iterator I = Profiles.begin(), in mergeSampleProfile() 197 E = Profiles.end(); in mergeSampleProfile()
|
/external/ltp/testcases/realtime/testcases/realtime/doc/ |
D | AUTOMATED_RUN | 3 Profiles help users maintaining sets of tests for specific requirements.
|
/external/ltp/testcases/realtime/doc/ |
D | AUTOMATED_RUN | 3 Profiles help users maintaining sets of tests for specific requirements.
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/ |
D | llvm-profdata.cpp | 356 StringMap<FunctionSamples> &Profiles = Reader->getProfiles(); in mergeSampleProfile() local 357 for (StringMap<FunctionSamples>::iterator I = Profiles.begin(), in mergeSampleProfile() 358 E = Profiles.end(); in mergeSampleProfile()
|
/external/llvm/docs/CommandGuide/ |
D | llvm-profdata.rst | 47 Profiles passed in via ``-weighted-input``, ``-input-files``, or via positional
|
/external/python/cpython3/Lib/test/ |
D | cfgparser.2 | 227 # You must uncomment the [Profiles] share below 228 ; logon path = \\%L\Profiles\%U 370 ;[Profiles]
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstrInfo.td | 15 // AMDGPU DAG Profiles
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/ |
D | llvm-profdata.rst | 47 Profiles passed in via ``-weighted-input``, ``-input-files``, or via positional
|
/external/libsrtp2/ |
D | CHANGES | 193 PR #258 - Add AES-GCM to DTLS-SRTP Protection Profiles
|