Home
last modified time | relevance | path

Searched refs:dead (Results 1 - 25 of 94) sorted by relevance

1234

/third_party/pulseaudio/src/pulse/
H A Dglib-mainloop.c36 int dead; member
50 int dead; member
64 int dead; member
101 if (force || e->dead) { in cleanup_io_events()
104 if (e->dead) { in cleanup_io_events()
134 if (force || e->dead) { in cleanup_time_events()
137 if (e->dead) { in cleanup_time_events()
142 if (!e->dead && e->enabled) { in cleanup_time_events()
169 if (force || e->dead) { in cleanup_defer_events()
172 if (e->dead) { in cleanup_defer_events()
[all...]
H A Dohos_glib-mainloop.c37 int dead; member
51 int dead; member
65 int dead; member
102 if (force || e->dead) { in cleanup_io_events()
105 if (e->dead) { in cleanup_io_events()
135 if (force || e->dead) { in cleanup_time_events()
138 if (e->dead) { in cleanup_time_events()
143 if (!e->dead && e->enabled) { in cleanup_time_events()
170 if (force || e->dead) { in cleanup_defer_events()
173 if (e->dead) { in cleanup_defer_events()
[all...]
H A Dmainloop.c58 bool dead:1; member
73 bool dead:1; member
88 bool dead:1; member
190 pa_assert(!e->dead); in mainloop_io_enable()
207 pa_assert(!e->dead); in mainloop_io_free()
209 e->dead = true; in mainloop_io_free()
258 pa_assert(!e->dead); in mainloop_defer_enable()
273 pa_assert(!e->dead); in mainloop_defer_free()
275 e->dead = true; in mainloop_defer_free()
287 pa_assert(!e->dead); in mainloop_defer_set_destroy()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dbranch-elimination.cc145 Replace(use, condition_value ? control_input : dead()); in ReduceBranch()
148 Replace(use, condition_value ? dead() : control_input); in ReduceBranch()
154 return Replace(dead()); in ReduceBranch()
224 ReplaceWithValue(node, dead(), dead(), merge); in TryPullTrapIntoMerge()
246 return Replace(dead()); in ReduceTrapConditional()
284 ReplaceWithValue(node, dead(), dead(), dead()); in ReduceTrapConditional()
293 // General case: This will always trap. Mark its outputs as dead an in ReduceTrapConditional()
[all...]
H A Dcommon-operator-reducer.cc131 Replace(use, (decision == Decision::kTrue) ? control : dead()); in ReduceBranch()
134 Replace(use, (decision == Decision::kFalse) ? control : dead()); in ReduceBranch()
140 return Replace(dead()); in ReduceBranch()
167 ReplaceWithValue(node, dead(), effect, control); in ReduceDeoptimizeConditional()
175 return Replace(dead()); in ReduceDeoptimizeConditional()
261 // Check that the branch is not dead already. in ReducePhi()
365 // Mark the Merge {control} and Return {node} as {dead}. in ReduceReturn()
366 Replace(control, dead()); in ReduceReturn()
367 return Replace(dead()); in ReduceReturn()
381 // Mark the Merge {control} and Return {node} as {dead} in ReduceReturn()
[all...]
H A Dvalue-numbering-reducer.cc47 size_t dead = capacity_; in Reduce()
52 if (dead != capacity_) { in Reduce()
53 // Reuse dead entry that we discovered on the way. in Reduce()
54 entries_[dead] = node; in Reduce()
116 // Skip dead entries, but remember their indices so we can reuse them. in Reduce()
118 dead = i; in Reduce()
161 // Insert the old entries into the new block (skipping dead nodes). in Grow()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Ddead_variable_elim_test.cpp26 // %dead is unused. Make sure we remove it along with its name.
37 OpName %dead "dead" in TEST_F()
42 %dead = OpVariable %_ptr_Private_float Private in TEST_F()
72 // Since %dead is exported, make sure we keep it. It could be referenced
84 OpName %dead "dead" in TEST_F()
85 OpDecorate %dead LinkageAttributes "dead" Export in TEST_F()
90 %dead in TEST_F()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Ddead_variable_elim_test.cpp26 // %dead is unused. Make sure we remove it along with its name.
37 OpName %dead "dead" in TEST_F()
42 %dead = OpVariable %_ptr_Private_float Private in TEST_F()
72 // Since %dead is exported, make sure we keep it. It could be referenced
84 OpName %dead "dead" in TEST_F()
85 OpDecorate %dead LinkageAttributes "dead" Export in TEST_F()
90 %dead in TEST_F()
[all...]
/third_party/spirv-tools/test/opt/
H A Ddead_variable_elim_test.cpp26 // %dead is unused. Make sure we remove it along with its name.
37 OpName %dead "dead" in TEST_F()
42 %dead = OpVariable %_ptr_Private_float Private in TEST_F()
72 // Since %dead is exported, make sure we keep it. It could be referenced
84 OpName %dead "dead" in TEST_F()
85 OpDecorate %dead LinkageAttributes "dead" Export in TEST_F()
90 %dead in TEST_F()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dhashtablez_sampler.cc83 dead = nullptr; in PrepareForSampling()
89 graveyard_.dead = &graveyard_; in HashtablezSampler()
116 sample->dead = graveyard_.dead; in PushDead()
117 graveyard_.dead = sample; in PushDead()
124 // graveyard_.dead == &graveyard_ in PopDead()
126 HashtablezInfo* sample = graveyard_.dead; in PopDead()
130 graveyard_.dead = sample->dead; in PopDead()
163 if (s->dead in Iterate()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dioline.c62 bool dead:1; member
94 l->dead = false; in pa_ioline_new()
136 l->dead = true; in pa_ioline_close()
159 if (l->dead) in pa_ioline_puts()
203 if (l->dead) in pa_ioline_set_callback()
214 if (l->dead) in pa_ioline_set_drain_callback()
224 pa_assert(!l->dead); in failure()
249 while (!l->dead && l->rbuf_valid_length > skip) { in scan_for_lines()
285 while (l->io && !l->dead && pa_iochannel_is_readable(l->io)) { in do_read()
350 while (l->io && !l->dead in do_write()
[all...]
H A Dhook-list.c64 slot->dead = false; in pa_hook_connect()
83 pa_assert(!slot->dead); in pa_hook_slot_free()
86 slot->dead = true; in pa_hook_slot_free()
101 if (slot->dead) in pa_hook_fire()
114 if (slot->dead) { in pa_hook_fire()
H A Dcore-subscribe.c42 bool dead; member
72 s->dead = false; in pa_subscription_new()
84 pa_assert(!s->dead); in pa_subscription_free()
86 s->dead = true; in pa_subscription_free()
172 if (!s->dead && pa_subscription_match_flags(s->mask, e->type)) in defer_cb()
182 /* Remove dead subscriptions */ in defer_cb()
187 if (s->dead) in defer_cb()
H A Drtpoll.c71 bool dead; member
200 if (i->dead) in reset_all_revents()
226 if (i->dead) in pa_rtpoll_run()
255 if (i->dead) in pa_rtpoll_run()
267 if (i->dead) in pa_rtpoll_run()
355 if (i->dead) in pa_rtpoll_run()
376 if (i->dead) in pa_rtpoll_run()
418 i->dead = false; in pa_rtpoll_item_new()
451 i->dead = true; in pa_rtpoll_item_free()
H A Dpstream.c132 bool dead; member
247 if (!p->dead && p->srb) { in do_pstream_read_write()
253 while (!p->dead && r == 0) { in do_pstream_read_write()
260 if (!p->dead && pa_iochannel_is_readable(p->io)) { in do_pstream_read_write()
263 } else if (!p->dead && pa_iochannel_is_hungup(p->io)) in do_pstream_read_write()
266 while (!p->dead && pa_iochannel_is_writable(p->io)) { in do_pstream_read_write()
450 if (p->dead) { in pa_pstream_send_packet()
490 if (p->dead) in pa_pstream_send_memblock()
532 if (p->dead) in pa_pstream_send_release()
556 if (p->dead) in memimport_release_cb()
[all...]
/third_party/elfutils/libdwfl/
H A Ddwfl_end.c55 Dwfl_Module *dead = next; in dwfl_end() local
56 next = dead->next; in dwfl_end()
57 __libdwfl_module_free (dead); in dwfl_end()
/third_party/node/test/internet/
H A Dtest-dgram-multicast-multi-process.js42 let listening, sendSocket, done, timer, dead;
59 dead += 1;
60 console.error('[PARENT] Worker %d died. %d dead of %d',
62 dead,
65 if (dead === listeners) {
134 dead = 0;
H A Dtest-dgram-multicast-ssmv6-multi-process.js21 let listening, sendSocket, done, timer, dead;
53 dead += 1;
54 console.error('[PARENT] Worker %d died. %d dead of %d',
56 dead,
59 if (dead === listeners) {
128 dead = 0;
H A Dtest-dgram-multicast-ssm-multi-process.js21 let listening, sendSocket, done, timer, dead;
53 dead += 1;
54 console.error('[PARENT] Worker %d died. %d dead of %d',
56 dead,
59 if (dead === listeners) {
128 dead = 0;
H A Dtest-dgram-broadcast-multi-process.js62 let dead = 0;
95 dead += 1;
96 console.error('[PARENT] Worker %d died. %d dead of %d',
98 dead,
103 if (dead === listeners) {
/third_party/pulseaudio/src/utils/
H A Dpasuspender.c52 static int dead = 1; variable
99 dead = 0; in start_child()
192 } else if (dead) in context_state_callback()
193 /* already started, and dead, so let's quit */ in context_state_callback()
214 dead = 1; in sigchld_callback()
339 if (!dead) in main()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dscalar_replacement_pass.cpp88 std::vector<Instruction*> dead; in ReplaceVariable() local
90 inst, [this, &replacements, &dead](Instruction* user) { in ReplaceVariable()
93 dead.push_back(user); in ReplaceVariable()
100 dead.push_back(user); in ReplaceVariable()
109 dead.push_back(user); in ReplaceVariable()
116 dead.push_back(user); in ReplaceVariable()
124 dead.push_back(user); in ReplaceVariable()
140 dead.push_back(inst); in ReplaceVariable()
145 // If there are no dead instructions to clean up, return with no changes. in ReplaceVariable()
146 if (dead in ReplaceVariable()
[all...]
H A Daggressive_dead_code_elim_pass.cpp68 // eliminate dead targets early and simplify subsequent checks. in operator ()()
176 // is dead. in IsTargetDead()
178 bool dead = true; in IsTargetDead() local
179 get_def_use_mgr()->ForEachUser(tInst, [&dead](Instruction* user) { in IsTargetDead()
182 dead = false; in IsTargetDead()
184 return dead; in IsTargetDead()
283 // If dead instruction is selection merge, remember merge block in KillDeadInstructions()
378 // removed if either the target or the in operand are dead. in AddDecorationsToWorkList()
680 // been marked, it is safe to remove dead global values. in ProcessImpl()
684 "A dead instructio in ProcessImpl()
782 bool dead = true; ProcessGlobalValues() local
809 bool dead = true; ProcessGlobalValues() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dscalar_replacement_pass.cpp88 std::vector<Instruction*> dead; in ReplaceVariable() local
90 inst, [this, &replacements, &dead](Instruction* user) { in ReplaceVariable()
93 dead.push_back(user); in ReplaceVariable()
100 dead.push_back(user); in ReplaceVariable()
109 dead.push_back(user); in ReplaceVariable()
116 dead.push_back(user); in ReplaceVariable()
124 dead.push_back(user); in ReplaceVariable()
140 dead.push_back(inst); in ReplaceVariable()
145 // If there are no dead instructions to clean up, return with no changes. in ReplaceVariable()
146 if (dead in ReplaceVariable()
[all...]
/third_party/skia/src/gpu/
H A DGrThreadSafeCache.cpp186 void GrThreadSafeCache::recycleEntry(Entry* dead) { in recycleEntry() argument
187 SkASSERT(!dead->fPrev && !dead->fNext && !dead->fList); in recycleEntry()
189 dead->makeEmpty(); in recycleEntry()
191 dead->fNext = fFreeEntryList; in recycleEntry()
192 fFreeEntryList = dead; in recycleEntry()

Completed in 16 milliseconds

1234