HomeSort by relevance Sort by last modified time
    Searched refs:dead (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /dalvik/dx/tests/003-magic-version-access/
class-bad-magic.txt 5 dead babe # magic
  /external/clang/test/CodeGen/
switch-dce.c 7 // CHECK-NOT: @dead
10 // CHECK-NOT: @dead
13 void dead();
22 dead();
28 // CHECK-NOT: @dead
31 // CHECK-NOT: @dead
36 dead();
47 // CHECK-NOT: @dead
50 // CHECK-NOT: @dead
55 dead();
    [all...]
  /external/compiler-rt/test/asan/TestCases/Darwin/
dead-strip.c 1 // Test that AddressSanitizer does not re-animate dead globals when dead
5 // detected after dead stripping has been performed. This proves that the
14 int dead[1] = {}; variable
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 13 #define comment /##/ dead tokens live here
21 #define nested(x) int x comment cute little dead tokens...
24 nested(baz) rise of the dead tokens
  /external/iproute2/testsuite/tests/ip/tunnel/
add_tunnel.t 12 ts_ip "$0" "Add GRE tunnel over IPv6" tunnel add name $TUNNEL_NAME mode ip6gre local dead:beef::1 remote dead:beef::2
  /external/elfutils/libdwfl/
dwfl_end.c 52 Dwfl_Module *dead = next; local
53 next = dead->next;
54 __libdwfl_module_free (dead);
  /external/clang/test/Sema/
warn-unreachable.c 7 int dead();
33 dead(); // expected-warning {{will never be executed}}
37 dead(); // expected-warning {{will never be executed}}
43 dead();
54 dead(); // expected-warning {{will never be executed}}
68 dead(); // expected-warning {{will never be executed}}
71 dead();
81 dead(); // expected-warning {{will never be executed}}
91 dead() : dead();
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/opt/
dead_variable_elim_test.cpp 26 // %dead is unused. Make sure we remove it along with its name.
37 OpName %dead "dead"
42 %dead = OpVariable %_ptr_Private_float Private
72 // Since %dead is exported, make sure we keep it. It could be referenced
84 OpName %dead "dead"
85 OpDecorate %dead LinkageAttributes "dead" Export
90 %dead = OpVariable %_ptr_Private_float Privat
    [all...]
cfg_cleanup_test.cpp 97 OpName %dead "dead"
99 OpDecorate %dead RelaxedPrecision
112 %dead = OpVariable %_ptr_Function_float Function
113 OpStore %dead %float_2
246 OpName %dead "dead"
252 %dead = OpLabel
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/
dead_variable_elim_test.cpp 26 // %dead is unused. Make sure we remove it along with its name.
37 OpName %dead "dead"
42 %dead = OpVariable %_ptr_Private_float Private
72 // Since %dead is exported, make sure we keep it. It could be referenced
84 OpName %dead "dead"
85 OpDecorate %dead LinkageAttributes "dead" Export
90 %dead = OpVariable %_ptr_Private_float Privat
    [all...]
cfg_cleanup_test.cpp 97 OpName %dead "dead"
99 OpDecorate %dead RelaxedPrecision
112 %dead = OpVariable %_ptr_Function_float Function
113 OpStore %dead %float_2
246 OpName %dead "dead"
252 %dead = OpLabel
  /external/iproute2/testsuite/tests/ip/route/
add_default_route.t 24 ts_ip "$0" "Add dead:beef::1/64 addr on $DEV" -6 addr add dead:beef::1/64 dev $DEV
25 ts_ip "$0" "Add default route via dead:beef::2" route add default via dead:beef::2
27 test_on "default via dead:beef::2 dev $DEV"
32 test_on "default via dead:beef::2 dev $DEV"
  /external/iproute2/ip/
routel 42 dead|onlink|pervasive|offload|notify|linkdown|unresolved)
  /external/clang/test/SemaCXX/
warn-unreachable.cpp 5 int dead();
35 dead(); // expected-warning {{will never be executed}}
46 dead() : dead();
107 dead(); // expected-warning {{will never be executed}}
110 // Handle 'try' code dominating a dead return.
301 if (false) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by adding parentheses to mark code as explicitly dead}}
304 if (true) // expected-note {{silence by adding parentheses to mark code as explicitly dead}}
314 if (!true) // expected-note {{silence by adding parentheses to mark code as explicitly dead}}
331 if (0) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by adding parentheses to mark code as explicitly dead}}
    [all...]
  /external/ipsec-tools/src/racoon/
schedule.h 51 int dead; /* dead or alive */ member in struct:sched
schedule.c 90 if (p->dead)
99 /* mark it with dead. and call the function. */
100 p->dead = 1;
148 new->dead = 0;
201 sc->dead = 1;
215 if (!sc->dead) {
  /external/skqp/src/sksl/ir/
SkSLVariable.h 55 bool dead() const { function in struct:SkSL::Variable
68 // becomes zero during optimization), the variable is dead and may be eliminated.
70 // Tracks how many sites write to the variable. If this is zero, the variable is dead and may be
  /external/v8/src/compiler/
value-numbering-reducer.cc 47 size_t dead = capacity_;
52 if (dead != capacity_) {
53 // Reuse dead entry that we discovered on the way.
54 entries_[dead] = node;
116 // Skip dead entries, but remember their indices so we can reuse them.
118 dead = i;
161 // Insert the old entries into the new block (skipping dead nodes).
branch-elimination.cc 22 dead_(js_graph->Dead()) {}
65 // Check if {branch} is dead because we might have a stale side-table entry.
79 Replace(use, condition_value ? control_input : dead());
82 Replace(use, condition_value ? dead() : control_input);
88 return Replace(dead());
126 ReplaceWithValue(node, dead(), effect, control);
135 return Replace(dead());
common-operator-reducer.h 54 Node* dead() const { return dead_; } function in class:v8::internal::compiler::final
  /external/tensorflow/tensorflow/core/common_runtime/
pending_counts_test.cc 43 // The dead count is no longer updated once pending is 0.
147 int pending, dead; local
153 // Don't increment the dead count this time
154 c.adjust_for_activation(h, false, &pending, &dead);
158 EXPECT_EQ(c.dead_count(h), dead);
160 // Increment the dead count this time
161 c.adjust_for_activation(h, true, &pending, &dead);
164 EXPECT_EQ(c.dead_count(h), dead);
scoped_allocator.cc 102 bool dead = false; local
108 dead = true;
112 if (dead) {
  /external/tensorflow/tensorflow/core/grappler/optimizers/
loop_optimizer.cc 763 GraphView::OutputPort dead(&node, dead_fanout);
764 identity_switches.insert(dead);
768 for (const MutableGraphView::InputPort& port : view.GetFanout(dead)) {
782 MutableGraphView::InputPort dead = zombie_inputs.PopBack(); local
783 if (nodes_to_preserve.find(dead.node->name()) !=
789 if (local_dead_nodes.find(dead.node) != local_dead_nodes.end()) {
793 if (IsMerge(*dead.node)) {
794 const int num_data_inputs = dead.node->attr().at("N").i();
801 MutableGraphView::OutputPort value_index(dead.node, 1);
813 // Merge node can become real dead only if all data inputs are dead
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_ordering_test.cc 407 // %dead = Constant(123.0)
409 // %root should interfere with %dead.
418 HloInstruction* dead = builder.AddInstruction( local
424 schedule.set_sequence(entry, {param, root, dead});
431 EXPECT_TRUE(ordering.ExecutesBefore(root, dead));
432 EXPECT_FALSE(ordering.ExecutesBefore(dead, root));
435 dataflow->GetValueDefinedAt(root), dataflow->GetValueDefinedAt(dead),
439 dataflow->GetValueDefinedAt(dead),
451 // %dead = Constant(123.0)
457 // %root should interfere with %dead
466 HloInstruction* dead = subbuilder.AddInstruction( local
    [all...]
  /external/skia/src/sksl/ir/
SkSLVariable.h 55 bool dead() const { function in struct:SkSL::Variable
72 // becomes zero during optimization), the variable is dead and may be eliminated.
74 // Tracks how many sites write to the variable. If this is zero, the variable is dead and may be

Completed in 648 milliseconds

1 2 3 4 5