Searched refs:dstId (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/mlir/lib/Transforms/ |
D | LoopFusion.cpp | 334 bool hasEdge(unsigned srcId, unsigned dstId, Value value = nullptr) { in hasEdge() 335 if (outEdges.count(srcId) == 0 || inEdges.count(dstId) == 0) { in hasEdge() 339 return edge.id == dstId && (!value || edge.value == value); in hasEdge() 341 bool hasInEdge = llvm::any_of(inEdges[dstId], [=](Edge &edge) { in hasEdge() 348 void addEdge(unsigned srcId, unsigned dstId, Value value) { in addEdge() 349 if (!hasEdge(srcId, dstId, value)) { in addEdge() 350 outEdges[srcId].push_back({dstId, value}); in addEdge() 351 inEdges[dstId].push_back({srcId, value}); in addEdge() 358 void removeEdge(unsigned srcId, unsigned dstId, Value value) { in removeEdge() 359 assert(inEdges.count(dstId) > 0); in removeEdge() [all …]
|
/external/perfetto/ui/src/common/ |
D | actions_unittest.ts | 172 dstId: `${secondTrackId}`, 188 dstId: 'c', 204 dstId: 'a', 220 dstId: 'a', 234 dstId: 'c',
|
D | actions.ts | 344 args: {srcId: string; op: 'before' | 'after', dstId: string}): void { 349 if (curTrackId === args.dstId && args.op === 'before') { 355 if (curTrackId === args.dstId && args.op === 'after') {
|
/external/perfetto/ui/src/frontend/ |
D | track_panel.ts | 170 const dstId = this.attrs!.trackState.id; constant 171 globals.dispatch(Actions.moveTrack({srcId, op: this.dropping, dstId}));
|
/external/tensorflow/tensorflow/core/profiler/internal/gpu/ |
D | cupti_tracer.cc | 680 << " src: " << record->srcId << " dst: " << record->dstId; in AddUnifiedMemoryActivityEvent() 717 event.memcpy_info.destination = record->dstId; in AddUnifiedMemoryActivityEvent()
|