Home
last modified time | relevance | path

Searched defs:Edge (Results 1 – 25 of 105) sorted by relevance

12345

/external/rust/crates/plotters-backend/src/rasterizer/
Dpolygon.rs6 struct Edge { struct
13 impl Edge { argument
14 fn horizontal_sweep(mut from: BackendCoord, mut to: BackendCoord) -> Option<Edge> { in horizontal_sweep()
31 fn vertical_sweep(from: BackendCoord, to: BackendCoord) -> Option<Edge> { in vertical_sweep()
50 impl PartialOrd for Edge { implementation
56 impl PartialEq for Edge { implementation
62 impl Eq for Edge {} implementation
64 impl Ord for Edge { implementation
/external/skia/src/gpu/geometry/
DGrTriangulator.h390 struct GrTriangulator::Edge { struct
391 Edge(Vertex* top, Vertex* bottom, int winding, EdgeType type) in Edge() function
415 EdgeType fType; argument
416 Edge* fLeft; // The linked list of edges in the active edge list. argument
417 Edge* fRight; // " argument
418 Edge* fPrevEdgeAbove; // The linked list of edges in the bottom Vertex's "edges above". argument
419 Edge* fNextEdgeAbove; // " argument
420 Edge* fPrevEdgeBelow; // The linked list of edges in the top Vertex's "edges below". argument
421 Edge* fNextEdgeBelow; // " argument
424 Edge* fLeftPolyPrev; argument
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dpropagator.h33 struct Edge { struct
34 Edge(BasicBlock* b1, BasicBlock* b2) : source(b1), dest(b2) { in Edge() function
40 bool operator<(const Edge& o) const { argument
/external/deqp-deps/SPIRV-Tools/source/opt/
Dpropagator.h33 struct Edge { struct
34 Edge(BasicBlock* b1, BasicBlock* b2) : source(b1), dest(b2) { in Edge() argument
40 bool operator<(const Edge& o) const { argument
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dpropagator.h33 struct Edge { struct
34 Edge(BasicBlock* b1, BasicBlock* b2) : source(b1), dest(b2) { in Edge() argument
40 bool operator<(const Edge& o) const { argument
/external/tensorflow/tensorflow/lite/delegates/gpu/common/memory_management/
Dmin_cost_flow_assignment.cc145 struct Edge { struct in tflite::gpu::__anon934092910111::MinCostFlowSolver
146 Edge(size_t dst, int cap, int cost) : dst(dst), cap(cap), cost(cost) {} in Edge() argument
148 size_t dst;
149 int cap;
150 int cost;
/external/skia/src/core/
DSkRegion_path.cpp391 struct Edge { struct
402 Edge* fNext; argument
419 static void find_link(Edge* base, Edge* stop) { in find_link() argument
/external/tensorflow/tensorflow/core/grappler/
Dgraph_view.h96 struct Edge { struct
97 Edge(OutputPort s, InputPort d) : src(s), dst(d) {} in Edge() function
104 friend H AbslHashValue(H h, const Edge& e) { in AbslHashValue() argument
108 OutputPort src;
109 InputPort dst;
/external/guice/extensions/grapher/src/com/google/inject/grapher/
DEdge.java27 public abstract class Edge { class
31 protected Edge(NodeId fromId, NodeId toId) { in Edge() method in Edge
/external/tensorflow/tensorflow/compiler/tf2xla/
Dresource_util.cc86 absl::flat_hash_map<const Edge*, ResourceUsageAnalysis::NodeInfo>* in PropagateFromStackOrTensorArraySourceOp()
102 absl::flat_hash_map<const Edge*, ResourceUsageAnalysis::NodeInfo>* in PropagateFromArgOp()
137 absl::flat_hash_map<const Edge*, ResourceUsageAnalysis::NodeInfo>* in UpdateResourceUsageFromFunctionBodyAnalysis()
186 absl::flat_hash_map<const Edge*, ResourceUsageAnalysis::NodeInfo>* in PropagateThroughCallOp()
229 absl::flat_hash_map<const Edge*, ResourceUsageAnalysis::NodeInfo>* in PropagateThroughIdentityOp()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector.h396 struct Edge { struct
410 Edge edges_[BV::kSize * 32]; argument
/external/rust/crates/bindgen/src/ir/
Dtraversal.rs15 pub struct Edge { struct
17 kind: EdgeKind, argument
20 impl Edge { implementation
22 pub fn new(to: ItemId, kind: EdgeKind) -> Edge { in new()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DSummaryBasedOptimizations.cpp51 auto GetCallSiteRelFreq = [](FunctionSummary::EdgeTy &Edge) { in computeSyntheticCounts()
74 auto GetProfileCount = [&](ValueInfo V, FunctionSummary::EdgeTy &Edge) { in computeSyntheticCounts()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DModuleSummaryIndex.cpp269 struct Edge { struct
270 uint64_t SrcMod;
271 int Hotness;
272 GlobalValue::GUID Src;
273 GlobalValue::GUID Dst;
/external/ComputeLibrary/arm_compute/graph/
DINode.h40 class Edge; variable
DEdge.h51Edge(EdgeID id, INode *producer, unsigned int producer_idx, INode *consumer, unsigned int consumer… in Edge() function
/external/llvm/lib/IR/
DGCOV.cpp185 GCOVEdge *Edge = Edges.back().get(); in readGCNO() local
409 for (const GCOVEdge *Edge : SrcEdges) in dump() local
415 for (const GCOVEdge *Edge : DstEdges) in dump() local
725 for (const GCOVEdge *Edge : Block.dsts()) { in printBranchInfo() local
/external/skia/tests/
DTriangulatingPathRendererTests.cpp896 struct Edge { struct
897 Edge reverse() const { return {fP1, fP0}; } in reverse() argument
901 static bool operator<(const Edge& a, const Edge& b) { in operator <() argument
/external/llvm/include/llvm/Analysis/
DLazyCallGraph.h912 inline LazyCallGraph::Edge::Edge() : Value() {} in Edge() function
913 inline LazyCallGraph::Edge::Edge(Function &F, Kind K) : Value(&F, K) {} in Edge() function
914 inline LazyCallGraph::Edge::Edge(Node &N, Kind K) : Value(&N, K) {} in Edge() function
/external/pdfium/xfa/fwl/
Dfwl_widgethit.h28 Edge, enumerator
/external/perfetto/src/trace_processor/importers/memory_tracker/
Dgraph.cc24 using Edge = GlobalNodeGraph::Edge; typedef
186 Edge::Edge(Node* source, Node* target, int priority) in Edge() function in perfetto::trace_processor::Edge
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles_test.cc35 struct Edge { struct
36 int from;
37 int to;
/external/openscreen/third_party/abseil/src/absl/synchronization/internal/
Dgraphcycles_test.cc35 struct Edge { struct
36 int from;
37 int to;
/external/angle/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles_test.cc35 struct Edge { struct
36 int from;
37 int to;
/external/libtextclassifier/abseil-cpp/absl/synchronization/internal/
Dgraphcycles_test.cc35 struct Edge { struct
36 int from;
37 int to;

12345