Home
last modified time | relevance | path

Searched refs:PathID (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DProfile.h54 using PathID = unsigned; variable
64 std::vector<std::pair<PathID, Data>> PathData;
71 Expected<std::vector<FuncID>> expandPath(PathID P) const;
75 PathID internPath(ArrayRef<FuncID> P);
121 PathID ID = 0;
134 DenseMap<PathID, TrieNode *> PathIDMap;
137 PathID NextID = 1;
/external/llvm-project/llvm/include/llvm/XRay/
DProfile.h54 using PathID = unsigned; variable
64 std::vector<std::pair<PathID, Data>> PathData;
71 Expected<std::vector<FuncID>> expandPath(PathID P) const;
75 PathID internPath(ArrayRef<FuncID> P);
121 PathID ID = 0;
134 DenseMap<PathID, TrieNode *> PathIDMap;
137 PathID NextID = 1;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DProfile.cpp131 Expected<std::vector<Profile::FuncID>> Profile::expandPath(PathID P) const { in expandPath()
143 Profile::PathID Profile::internPath(ArrayRef<FuncID> P) { in internPath()
195 using PathDataMap = DenseMap<Profile::PathID, Profile::Data>; in mergeProfilesByThread()
207 auto &PathID = PathAndData.first; in mergeProfilesByThread() local
210 Merged.internPath(cantFail(P.get().expandPath(PathID))); in mergeProfilesByThread()
234 using PathDataMap = DenseMap<Profile::PathID, Profile::Data>; in mergeProfilesByStack()
334 DenseMap<Profile::ThreadID, DenseMap<Profile::PathID, Profile::Data>> in profileFromTrace()
393 std::vector<std::pair<Profile::PathID, Profile::Data>>( in profileFromTrace()
/external/llvm-project/llvm/lib/XRay/
DProfile.cpp131 Expected<std::vector<Profile::FuncID>> Profile::expandPath(PathID P) const { in expandPath()
143 Profile::PathID Profile::internPath(ArrayRef<FuncID> P) { in internPath()
195 using PathDataMap = DenseMap<Profile::PathID, Profile::Data>; in mergeProfilesByThread()
207 auto &PathID = PathAndData.first; in mergeProfilesByThread() local
210 Merged.internPath(cantFail(P.get().expandPath(PathID))); in mergeProfilesByThread()
234 using PathDataMap = DenseMap<Profile::PathID, Profile::Data>; in mergeProfilesByStack()
334 DenseMap<Profile::ThreadID, DenseMap<Profile::PathID, Profile::Data>> in profileFromTrace()
393 std::vector<std::pair<Profile::PathID, Profile::Data>>( in profileFromTrace()
/external/angle/src/libANGLE/capture/
Dcapture_gles_ext_params.cpp2036 PathID path, in CapturePathCommandsCHROMIUM_commands()
2049 PathID path, in CapturePathCommandsCHROMIUM_coords()
2062 PathID path, in CaptureGetPathParameterfvCHROMIUM_value()
2072 PathID path, in CaptureGetPathParameterivCHROMIUM_value()
2085 PathID pathBase, in CaptureCoverFillPathInstancedCHROMIUM_paths()
2099 PathID pathBase, in CaptureCoverFillPathInstancedCHROMIUM_transformValues()
2113 PathID pathBase, in CaptureCoverStrokePathInstancedCHROMIUM_paths()
2127 PathID pathBase, in CaptureCoverStrokePathInstancedCHROMIUM_transformValues()
2141 PathID pathBase, in CaptureStencilStrokePathInstancedCHROMIUM_paths()
2156 PathID pathBase, in CaptureStencilStrokePathInstancedCHROMIUM_transformValues()
[all …]
/external/llvm-project/llvm/unittests/XRay/
DProfileTest.cpp39 auto PathID = P.internPath({3, 2, 1}); in TEST() local
40 auto PathOrError = P.expandPath(PathID); in TEST()