Home
last modified time | relevance | path

Searched defs:enter (Results 1 – 25 of 84) sorted by relevance

1234

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_pass.cpp72 bool vpass::visit(node& n, bool enter) { return true; } in visit()
73 bool vpass::visit(container_node& n, bool enter) { return true; } in visit()
74 bool vpass::visit(alu_group_node& n, bool enter) { return true; } in visit()
75 bool vpass::visit(cf_node& n, bool enter) { return true; } in visit()
76 bool vpass::visit(alu_node& n, bool enter) { return true; } in visit()
77 bool vpass::visit(alu_packed_node& n, bool enter) { return true; } in visit()
78 bool vpass::visit(fetch_node& n, bool enter) { return true; } in visit()
79 bool vpass::visit(region_node& n, bool enter) { return true; } in visit()
80 bool vpass::visit(repeat_node& n, bool enter) { return true; } in visit()
81 bool vpass::visit(depart_node& n, bool enter) { return true; } in visit()
[all …]
Dsb_dce_cleanup.cpp45 bool dce_cleanup::visit(node& n, bool enter) { in visit()
56 bool dce_cleanup::visit(alu_group_node& n, bool enter) { in visit()
64 bool dce_cleanup::visit(cf_node& n, bool enter) { in visit()
78 bool dce_cleanup::visit(alu_node& n, bool enter) { in visit()
89 bool dce_cleanup::visit(alu_packed_node& n, bool enter) { in visit()
100 bool dce_cleanup::visit(fetch_node& n, bool enter) { in visit()
111 bool dce_cleanup::visit(region_node& n, bool enter) { in visit()
139 bool dce_cleanup::visit(container_node& n, bool enter) { in visit()
Dsb_ssa_builder.cpp63 bool ssa_prepare::visit(cf_node& n, bool enter) { in visit()
73 bool ssa_prepare::visit(alu_node& n, bool enter) { in visit()
81 bool ssa_prepare::visit(fetch_node& n, bool enter) { in visit()
89 bool ssa_prepare::visit(region_node& n, bool enter) { in visit()
107 bool ssa_prepare::visit(repeat_node& n, bool enter) { in visit()
119 bool ssa_prepare::visit(depart_node& n, bool enter) { in visit()
140 bool ssa_rename::visit(alu_group_node& n, bool enter) { in visit()
154 bool ssa_rename::visit(cf_node& n, bool enter) { in visit()
163 bool ssa_rename::visit(alu_node& n, bool enter) { in visit()
213 bool ssa_rename::visit(alu_packed_node& n, bool enter) { in visit()
[all …]
Dsb_dump.cpp32 bool dump::visit(node& n, bool enter) { in visit()
56 bool dump::visit(container_node& n, bool enter) { in visit()
86 bool dump::visit(bb_node& n, bool enter) { in visit()
102 bool dump::visit(alu_group_node& n, bool enter) { in visit()
120 bool dump::visit(cf_node& n, bool enter) { in visit()
151 bool dump::visit(alu_node& n, bool enter) { in visit()
167 bool dump::visit(alu_packed_node& n, bool enter) { in visit()
188 bool dump::visit(fetch_node& n, bool enter) { in visit()
202 bool dump::visit(region_node& n, bool enter) { in visit()
232 bool dump::visit(repeat_node& n, bool enter) { in visit()
[all …]
Dsb_liveness.cpp40 bool liveness::visit(container_node& n, bool enter) { in visit()
51 bool liveness::visit(bb_node& n, bool enter) { in visit()
60 bool liveness::visit(alu_group_node& n, bool enter) { in visit()
67 bool liveness::visit(cf_node& n, bool enter) { in visit()
82 bool liveness::visit(alu_node& n, bool enter) { in visit()
91 bool liveness::visit(alu_packed_node& n, bool enter) { in visit()
101 bool liveness::visit(fetch_node& n, bool enter) { in visit()
110 bool liveness::visit(region_node& n, bool enter) { in visit()
151 bool liveness::visit(repeat_node& n, bool enter) { in visit()
160 bool liveness::visit(depart_node& n, bool enter) { in visit()
[all …]
Dsb_gvn.cpp41 bool gvn::visit(node& n, bool enter) { in visit()
87 bool gvn::visit(cf_node& n, bool enter) { in visit()
95 bool gvn::visit(alu_node& n, bool enter) { in visit()
103 bool gvn::visit(alu_packed_node& n, bool enter) { in visit()
111 bool gvn::visit(fetch_node& n, bool enter) { in visit()
119 bool gvn::visit(region_node& n, bool enter) { in visit()
Dsb_ir.cpp33 bool node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
34 bool container_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
35 bool alu_group_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
36 bool alu_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
37 bool cf_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
38 bool fetch_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
39 bool region_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
41 bool repeat_node::accept(vpass& p, bool enter) { in accept()
45 bool depart_node::accept(vpass& p, bool enter) { in accept()
48 bool if_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
[all …]
Dsb_psi_ops.cpp33 bool r600_sb::psi_ops::visit(alu_node& n, bool enter) { in visit()
39 bool psi_ops::visit(node& n, bool enter) { in visit()
Dsb_bc_dump.cpp45 bool bc_dump::visit(cf_node& n, bool enter) { in visit()
67 bool bc_dump::visit(alu_node& n, bool enter) { in visit()
101 bool bc_dump::visit(fetch_node& n, bool enter) { in visit()
/external/tensorflow/tensorflow/core/graph/
Dalgorithm.cc28 const std::function<void(T)>& enter, in DFSFromHelper()
89 void DFS(const Graph& g, const std::function<void(Node*)>& enter, in DFS()
98 const std::function<void(Node*)>& enter, in DFSFrom()
106 const std::function<void(const Node*)>& enter, in DFSFrom()
113 void ReverseDFS(const Graph& g, const std::function<void(Node*)>& enter, in ReverseDFS()
123 const std::function<void(T)>& enter, in ReverseDFSFromHelper()
181 const std::function<void(const Node*)>& enter, in ReverseDFSFrom()
188 const std::function<void(Node*)>& enter, in ReverseDFSFrom()
/external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/instrumentation/
DThreadInstrumentation.java87 private static void enter(@Advice.This Thread thread) { in enter() method in ThreadInstrumentation.Start
104 private static void enter(@Advice.This Thread thread) { in enter() method in ThreadInstrumentation.Run
DExecutorInstrumentation.java104 private static void enter(@Advice.Argument(value = 0, readOnly = false) Runnable runnable) { in enter() method in ExecutorInstrumentation.Execute
DUrlInstrumentation.java86 private static Closeable enter(@Advice.Origin("#t\\##m") String classAndMethodName) { in enter() method in UrlInstrumentation.GetContent
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodAdvice.java54 private static Callable<?> enter(@Identifier String identifier, in enter() method in MockMethodAdvice
280 private static boolean enter(@Identifier String id, in enter() method in MockMethodAdvice.ForHashCode
288 private static void enter(@Advice.This Object self, in enter() method in MockMethodAdvice.ForHashCode
301 private static boolean enter(@Identifier String identifier, in enter() method in MockMethodAdvice.ForEquals
309 private static void enter(@Advice.This Object self, in enter() method in MockMethodAdvice.ForEquals
/external/strace/
Dmpers.awk53 function enter(array_idx, function
/external/u-boot/drivers/misc/
Dmxs_ocotp.c80 static void mxs_ocotp_scale_vddio(bool enter, uint32_t *val) in mxs_ocotp_scale_vddio()
137 static int mxs_ocotp_scale_hclk(bool enter, uint32_t *val) in mxs_ocotp_scale_hclk()
/external/autotest/client/site_tests/usbpd_DisplayPortSink/
Dusbpd_DisplayPortSink.py21 def _set_displayport(self, port, opos, enter): argument
/external/skia/include/private/
DGrSingleOwner.h30 void enter() { in enter() function
/external/skqp/include/private/
DGrSingleOwner.h30 void enter() { in enter() function
/external/u-boot/arch/arm/lib/
Dmemcpy.S44 .macro enter reg1 reg2 macro
/external/okhttp/okio/okio/src/main/java/okio/
DAsyncTimeout.java61 public final void enter() { in enter() method in AsyncTimeout
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DAsyncTimeout.java63 public final void enter() { in enter() method in AsyncTimeout
/external/python/cpython2/PC/VC6/
Dbuild_tkinter.py25 def enter(dir): function
/external/tensorflow/tensorflow/core/grappler/utils/
Dtraversal.h79 std::function<bool(const NodeDef*)> enter; member
/external/python/cpython2/Lib/
Dsched.py57 def enter(self, delay, priority, action, argument): member in scheduler

1234