Home
last modified time | relevance | path

Searched refs:Profile (Results 1 – 25 of 240) sorted by relevance

12345678910

/netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/
H A DProfile.cpp25 Profile::Profile(const Profile &O) { in Profile() function in llvm::xray::Profile
37 Profile &Profile::operator=(const Profile &O) { in operator =()
38 Profile P = O; in operator =()
78 static Expected<std::vector<Profile::FuncID>> readPath(DataExtractor &Extractor, in readPath()
81 std::vector<Profile::FuncID> Path; in readPath()
96 static Expected<Profile::Data> readData(DataExtractor &Extractor, in readData()
101 Profile::Data D; in readData()
121 Error Profile::addBlock(Block &&B) { in addBlock()
131 Expected<std::vector<Profile::FuncID>> Profile::expandPath(PathID P) const { in expandPath()
137 std::vector<Profile::FuncID> Path; in expandPath()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A DProfile.h27 class Profile; variable
37 Expected<Profile> loadProfile(StringRef Filename);
41 Profile mergeProfilesByThread(const Profile &L, const Profile &R);
45 Profile mergeProfilesByStack(const Profile &L, const Profile &R);
48 Expected<Profile> profileFromTrace(const Trace &T);
51 class Profile {
85 Profile() = default;
86 ~Profile() = default;
88 Profile(Profile &&O) noexcept in Profile() function
93 Profile &operator=(Profile &&O) noexcept {
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagOperands.cpp15 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID) const { in Profile() function in GIMatchDagOperand
16 Profile(ID, Idx, Name, IsDef); in Profile()
19 void GIMatchDagOperand::Profile(FoldingSetNodeID &ID, size_t Idx, in Profile() function in GIMatchDagOperand
32 void GIMatchDagOperandList::Profile(FoldingSetNodeID &ID) const { in Profile() function in GIMatchDagOperandList
34 GIMatchDagOperand::Profile(ID, I.index(), I.value().getName(), in Profile()
80 GIMatchDagOperand::Profile(ID, i, I.Operands[i].Name, in makeOperandList()
101 GIMatchDagOperand::Profile(ID, 0, "$", true); in makeMIPredicateOperandList()
102 GIMatchDagOperand::Profile(ID, 1, "mi", false); in makeMIPredicateOperandList()
123 GIMatchDagOperand::Profile(ID, 0, "$", true); in makeTwoMOPredicateOperandList()
124 GIMatchDagOperand::Profile(ID, 1, "mi0", false); in makeTwoMOPredicateOperandList()
[all …]
H A DGIMatchDagOperands.h60 void Profile(FoldingSetNodeID &ID) const;
65 static void Profile(FoldingSetNodeID &ID, size_t Idx, StringRef Name,
98 void Profile(FoldingSetNodeID &ID) const;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributeImpl.h77 void Profile(FoldingSetNodeID &ID) const { in Profile() function
79 Profile(ID, getKindAsEnum(), static_cast<uint64_t>(0)); in Profile()
81 Profile(ID, getKindAsEnum(), getValueAsInt()); in Profile()
83 Profile(ID, getKindAsString(), getValueAsString()); in Profile()
85 Profile(ID, getKindAsEnum(), getValueAsType()); in Profile()
88 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() function
94 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { in Profile() function
99 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() function
269 void Profile(FoldingSetNodeID &ID) const { in Profile() function
270 Profile(ID, makeArrayRef(begin(), end())); in Profile()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile() function in CompoundValData
34 T.Profile(ID); in Profile()
38 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile() function in LazyCompoundValData
45 void PointerToMemberData::Profile( in Profile() function in PointerToMemberData
58 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { in Profile() function
59 X.first.Profile(ID); in Profile()
65 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { in Profile() function
66 X.first.Profile(ID); in Profile()
67 X.second.Profile(ID); in Profile()
96 X.Profile(ID); in getValue()
[all …]
H A DSymbolManager.cpp159 SymbolRegionValue::Profile(profile, R); in getRegionValueSymbol()
178 SymbolConjured::Profile(profile, E, T, Count, LCtx, SymbolTag); in conjureSymbol()
195 SymbolDerived::Profile(profile, parentSymbol, R); in getDerivedSymbol()
211 SymbolExtent::Profile(profile, R); in getExtentSymbol()
229 SymbolMetadata::Profile(profile, R, S, T, LCtx, Count, SymbolTag); in getMetadataSymbol()
246 SymbolCast::Profile(ID, Op, From, To); in getCastSymbol()
263 SymIntExpr::Profile(ID, lhs, op, v, t); in getSymIntExpr()
281 IntSymExpr::Profile(ID, lhs, op, rhs, t); in getIntSymExpr()
299 SymSymExpr::Profile(ID, lhs, op, rhs, t); in getSymSymExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h53 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() function
58 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
59 Profile(profile, R); in Profile()
108 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() function
119 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
120 Profile(profile, S, T, Count, LCtx, SymbolTag); in Profile()
153 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent, in Profile() function
160 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
161 Profile(profile, parentSymbol, R); in Profile()
190 static void Profile(llvm::FoldingSetNodeID& profile, const SubRegion *R) { in Profile() function
[all …]
H A DEnvironment.h44 static void Profile(llvm::FoldingSetNodeID &ID, in Profile() function
50 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
51 Profile(ID, *this); in Profile()
80 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile() function
81 env->ExprBindings.Profile(ID); in Profile()
86 void Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function
87 Profile(ID, this); in Profile()
H A DBasicValueFactory.h55 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
58 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } in Profile() function
74 static void Profile(llvm::FoldingSetNodeID& ID,
78 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); } in Profile() function
95 static void Profile(llvm::FoldingSetNodeID &ID, const NamedDecl *D,
98 void Profile(llvm::FoldingSetNodeID &ID) { Profile(ID, D, L); } in Profile() function
H A DMemRegion.h113 virtual void Profile(llvm::FoldingSetNodeID& ID) const = 0;
212 void Profile(llvm::FoldingSetNodeID &ID) const override;
267 void Profile(llvm::FoldingSetNodeID &ID) const override;
396 void Profile(llvm::FoldingSetNodeID &ID) const override;
488 void Profile(llvm::FoldingSetNodeID& ID) const override;
605 void Profile(llvm::FoldingSetNodeID& ID) const override;
650 void Profile(llvm::FoldingSetNodeID& ID) const override;
737 void Profile(llvm::FoldingSetNodeID& ID) const override;
775 void Profile(llvm::FoldingSetNodeID& ID) const override;
810 void Profile(llvm::FoldingSetNodeID& ID) const override { in Profile() function
[all …]
H A DRangedConstraintManager.h46 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
97 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
99 It.Profile(ID); in Profile()
251 static void Profile(llvm::FoldingSetNodeID &ID, const RangeSet &RS) { in Profile() function
257 void Profile(llvm::FoldingSetNodeID &ID) const { Profile(ID, *this); } in Profile() function
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTemplateName.h157 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
159 static void Profile(llvm::FoldingSetNodeID &ID,
330 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
366 void Profile(llvm::FoldingSetNodeID &ID);
368 static void Profile(llvm::FoldingSetNodeID &ID,
427 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
428 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl()); in Profile()
431 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, in Profile() function
525 void Profile(llvm::FoldingSetNodeID &ID) { in Profile() function
527 Profile(ID, getQualifier(), getIdentifier()); in Profile()
[all …]
H A DType.h585 void Profile(llvm::FoldingSetNodeID &ID) const {
1076 void Profile(llvm::FoldingSetNodeID &ID) const {
1420 void Profile(llvm::FoldingSetNodeID &ID) const {
1421 Profile(ID, getBaseType(), Quals);
1424 static void Profile(llvm::FoldingSetNodeID &ID,
1429 Quals.Profile(ID);
2596 void Profile(llvm::FoldingSetNodeID &ID) {
2597 Profile(ID, getElementType());
2600 static void Profile(llvm::FoldingSetNodeID &ID, QualType Element) {
2622 void Profile(llvm::FoldingSetNodeID &ID) {
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h229 static void Profile(const T &X, FoldingSetNodeID &ID) { in Profile() function
230 X.Profile(ID); in Profile()
232 static void Profile(T &X, FoldingSetNodeID &ID) { in Profile() function
233 X.Profile(ID); in Profile()
264 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { in Profile() function
265 X.Profile(ID, Context); in Profile()
337 inline void Add(const T &x) { FoldingSetTrait<T>::Profile(x, *this); } in Add()
377 FoldingSetTrait<T>::Profile(X, TempID); in Equals()
383 FoldingSetTrait<T>::Profile(X, TempID); in ComputeHash()
393 ContextualFoldingSetTrait<T, Ctx>::Profile(X, TempID, Context); in Equals()
[all …]
H A DImmutableMap.h54 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) { in Profile() function
55 ImutContainerInfo<T>::Profile(ID, V.first); in Profile()
56 ImutContainerInfo<S>::Profile(ID, V.second); in Profile()
227 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) { in Profile() function
231 inline void Profile(FoldingSetNodeID& ID) const { in Profile() function
232 return Profile(ID,*this); in Profile()
357 static inline void Profile(FoldingSetNodeID &ID, const ImmutableMapRef &M) { in Profile() function
361 inline void Profile(FoldingSetNodeID &ID) const { return Profile(ID, *this); } in Profile() function
H A DImmutableList.h44 static inline void Profile(FoldingSetNodeID& ID, const T& H, in Profile() function
50 void Profile(FoldingSetNodeID& ID) { in Profile() function
51 Profile(ID, Head, Tail); in Profile()
143 void Profile(FoldingSetNodeID& ID) const { in Profile() function
182 ListTy::Profile(ID, Head, TailImpl); in concat()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h80 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
157 void Profile(llvm::FoldingSetNodeID &ID) const override;
179 void Profile(llvm::FoldingSetNodeID &ID) const override;
198 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
221 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
305 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
330 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
359 void Profile(llvm::FoldingSetNodeID &ID) const override;
381 void Profile(llvm::FoldingSetNodeID &ID) const override;
396 void Profile(llvm::FoldingSetNodeID &ID) const override;
/netbsd-src/etc/bluetooth/
H A Dprotocols24 # Human Interface Device Profile, Bluetooth SIG
28 # Extended Service Discovery Profile [ESDP] for Universal Plug and Play(tm), Bluetooth SIG
37 # Unrestricted Digital Information Profile, Bluetooth SIG
43 # 3D Synchronization Profile, Bluetooth SIG
46 # Internet Protocol Support Profile [IPSP], Bluetooth SIG
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DTemplateName.cpp40 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) { in Profile() function in SubstTemplateTemplateParmStorage
41 Profile(ID, Parameter, Replacement); in Profile()
44 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in SubstTemplateTemplateParmStorage
51 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in SubstTemplateTemplateParmPackStorage
53 Profile(ID, Context, Parameter, getArgumentPack()); in Profile()
56 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in SubstTemplateTemplateParmPackStorage
61 ArgPack.Profile(ID, Context); in Profile()
H A DTemplateBase.cpp304 void TemplateArgument::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in TemplateArgument
312 getAsType().Profile(ID); in Profile()
316 getNullPtrType().Profile(ID); in Profile()
320 getParamTypeForDecl().Profile(ID); in Profile()
343 getAsIntegral().Profile(ID); in Profile()
344 getIntegralType().Profile(ID); in Profile()
348 getAsExpr()->Profile(ID, Context, true); in Profile()
354 Args.Args[I].Profile(ID, Context); in Profile()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DPathDiagnostic.h115 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } in Profile() function
369 void Profile(llvm::FoldingSetNodeID &ID) const;
394 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
395 Start.Profile(ID); in Profile()
396 End.Profile(ID); in Profile()
480 virtual void Profile(llvm::FoldingSetNodeID &ID) const;
527 void Profile(llvm::FoldingSetNodeID &ID) const override;
628 void Profile(llvm::FoldingSetNodeID &ID) const override;
702 void Profile(llvm::FoldingSetNodeID &ID) const override;
725 void Profile(llvm::FoldingSetNodeID &ID) const override;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSMTAPI.h58 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
62 Profile(ID1);
63 Other.Profile(ID2);
107 Profile(ID1);
108 Other.Profile(ID2);
112 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DPathDiagnostic.cpp208 D->Profile(profile); in HandlePathDiagnostic()
1085 void PathDiagnosticLocation::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticLocation
1091 void PathDiagnosticPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticPiece
1103 void PathDiagnosticCallPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticCallPiece
1104 PathDiagnosticPiece::Profile(ID); in Profile()
1109 void PathDiagnosticSpotPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticSpotPiece
1110 PathDiagnosticPiece::Profile(ID); in Profile()
1114 void PathDiagnosticControlFlowPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticControlFlowPiece
1115 PathDiagnosticPiece::Profile(ID); in Profile()
1120 void PathDiagnosticMacroPiece::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in PathDiagnosticMacroPiece
[all …]
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Danimation65 >>11 byte 6 \b, Release %d General Profile
66 >>11 byte 9 \b, Release %d General Profile
69 >>11 byte 9 \b, Release %d Adaptive Streaming Profile
72 >>11 byte 9 \b, Release %d Media Segment Profile
84 >>11 byte 6 \b, Release %d Progressive Download Profile
85 >>11 byte 9 \b, Release %d Progressive Download Profile
93 >>11 byte 8 \b, Release %d Media Stream Recording Profile
94 >>11 byte 9 \b, Release %d Media Stream Recording Profile
106 >8 string caaa \b, CMAF Media Profile - AAC Adaptive Audio
107 >8 string caac \b, CMAF Media Profile - AAC Core
[all …]

12345678910