/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | LiveIntervals.h | 157 /// uses, and it doesn't remove dead defs. 158 /// Dead PHIDef values are marked as unused. New dead machine instructions 159 /// are added to the dead vector. Returns true if the interval may have been 162 SmallVectorImpl<MachineInstr*> *dead = nullptr); 165 /// shrinkToUses(LiveInterval *li, SmallVectorImpl<MachineInstr*> *dead) 455 /// Walk the values in \p LI and check for dead values: 458 /// - Completely dead machine instructions are added to the \p dead vector 463 SmallVectorImpl<MachineInstr*> *dead);
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | example.c | 90 [OP_DEATHNOTE] = "dead", 103 dead:8, member 390 reg->dead = 0; in flush_reg() 450 output_comment(state, "marking pseudo %s in reg %s dead", show_pseudo(pseudo), reg->name); in mark_reg_dead() 452 reg->dead++; in mark_reg_dead() 666 /* If "src" only has one user, and the contents are dead, we can re-use it */ in copy_reg() 667 if (src->busy == 1 && src->dead == 1) in copy_reg() 867 if (reg->dead) { in kill_dead_reg() 873 reg->dead--; in kill_dead_reg() 877 assert(!reg->dead); in kill_dead_reg() [all...] |
H A D | cgcc | 131 return 1 if $arg =~ /^-v(no-?)?(entry|dead)$/;
|
/third_party/pulseaudio/src/modules/echo-cancel/ |
H A D | module-echo-cancel.c | 185 bool dead; member 210 bool dead; member 1404 u->dead = true; in source_output_kill_cb() 1431 u->dead = true; in sink_input_kill_cb() 1459 if (u->dead) in source_output_may_move_to_cb() 1472 if (u->dead) in sink_input_may_move_to_cb() 1590 if (msg->dead) in canceller_process_msg_cb() 1787 u->dead = false; in pa__init() 2148 u->dead = true; in pa__done() 2191 u->ec->msg->dead in pa__done() [all...] |
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | headergen2.c | 121 if (val->varinfo.dead) in printvalue() 229 if (bf->varinfo.dead) in printbitfield() 238 if (elem->varinfo.dead) in printdelem()
|
H A D | rnn.h | 82 int dead; member
|
H A D | rnn.c | 1117 vi->dead = 1; in prepvarinfo() 1121 vi->dead = 0; in prepvarinfo() 1124 if (vi->dead) in prepvarinfo() 1148 if (val->varinfo.dead) in prepvalue() 1236 if (bf->varinfo.dead) in prepbitfield() 1265 if (elem->varinfo.dead) in prepdelem()
|
/third_party/curl/lib/ |
H A D | multi.c | 519 if(multi->dead) { in curl_multi_add_handle() 520 /* a "dead" handle cannot get added transfers while any existing easy in curl_multi_add_handle() 525 multi->dead = FALSE; in curl_multi_add_handle() 1927 if(multi->dead) { 3021 multi->dead = TRUE; 3064 multi->dead = TRUE; 3125 /* This just marks the multi handle as "dead" without returning an 3128 multi->dead = TRUE; 3434 if(multi->dead) { 3485 if(!multi->timer_cb || multi->dead) [all...] |
H A D | rtsp.c | 56 struct connectdata *conn, bool dead); 181 struct connectdata *conn, bool dead) in rtsp_disconnect() 183 (void) dead; in rtsp_disconnect() 180 rtsp_disconnect(struct Curl_easy *data, struct connectdata *conn, bool dead) rtsp_disconnect() argument
|
H A D | curl_rtmp.c | 59 struct connectdata *conn, bool dead);
|
H A D | smb.c | 252 struct connectdata *conn, bool dead); 1128 struct connectdata *conn, bool dead) in smb_disconnect() 1131 (void) dead; in smb_disconnect() 1127 smb_disconnect(struct Curl_easy *data, struct connectdata *conn, bool dead) smb_disconnect() argument
|
/third_party/node/deps/v8/src/compiler/ |
H A D | branch-elimination.h | 120 Node* dead() const { return dead_; } in dead() function in v8::internal::compiler::final
|
H A D | graph-reducer.h | 143 JSHeapBroker* broker, Node* dead = nullptr,
|
H A D | loop-analysis.h | 223 void CopyNodes(Graph* graph, Zone* tmp_zone_, Node* dead, in CopyNodes() argument
|
/third_party/node/test/parallel/ |
H A D | test-cluster-basic.js | 87 dead: false
|
/third_party/curl/lib/vssh/ |
H A D | wolfssh.c | 70 bool dead); 1114 bool dead) in wsftp_disconnect() 1117 (void)dead; in wsftp_disconnect() 1112 wsftp_disconnect(struct Curl_easy *data, struct connectdata *conn, bool dead) wsftp_disconnect() argument
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | aggressive_dead_code_elim_test.cpp | 438 // This demonstrates that "dead" function calls are not eliminated. in TEST_F() 516 // dead uses of them are. 529 // vec4 dead; 530 // gl_FragColor = foo(dead, BaseColor); 546 OpName %dead "dead" 562 %dead = OpVariable %_ptr_Function_v4float Function 565 %21 = OpLoad %v4float %dead 587 OpName %dead "dead" [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | aggressive_dead_code_elim_test.cpp | 438 // This demonstrates that "dead" function calls are not eliminated. in TEST_F() 516 // dead uses of them are. 529 // vec4 dead; 530 // gl_FragColor = foo(dead, BaseColor); 546 OpName %dead "dead" 562 %dead = OpVariable %_ptr_Function_v4float Function 565 %21 = OpLoad %v4float %dead 587 OpName %dead "dead" [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | hashtablez_sampler.h | 89 HashtablezInfo* dead ABSL_GUARDED_BY(init_mu); 276 // `graveyard_.dead` is a circular linked list. When it is empty, 277 // `graveyard_.dead == &graveyard`. The list is circular so that 278 // every item on it (even the last) has a non-null dead pointer. This allows 279 // `Iterate` to determine if a given sample is live or dead using only 282 // For example, nodes [A, B, C, D, E] with [A, C, E] alive and [B, D] dead
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | nfa.rs | 78 /// The second state (index 1) is always the dead state. Dead states are 83 /// the dead state. 635 self.add_state(0)?; // the dead state, only used for leftmost in compile() 909 // set to the dead state for ALL states following a match, not in fill_failure_transitions() 911 // transition to the dead state on all match states, the dead in fill_failure_transitions() 975 /// state back to the start state with transitions to the dead state. 986 /// none exist, we transition to the dead state, which signals that 1002 /// Sets all transitions on the dead state to point back to the dead stat [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | protocol-esound.c | 83 bool dead; member 1242 if (c->dead) in do_work() 1268 c->dead = true; in do_work() 1381 if (c->dead && pa_sink_input_safe_to_remove(i)) in sink_input_pop_cb() 1519 c->dead = false; in pa_esound_protocol_connect()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveIntervals.cpp | 266 /// aliasing registers. The range should be empty, or contain only dead 273 // Create all values as dead defs before extending to uses. Note that roots in computeRegUnitRange() 447 SmallVectorImpl<MachineInstr*> *dead) { in shrinkToUses() 499 // Handle dead values. in shrinkToUses() 500 bool CanSeparate = computeDeadValues(*li, dead); in shrinkToUses() 506 SmallVectorImpl<MachineInstr*> *dead) { in computeDeadValues() 530 // This is a dead PHI. Remove it. in computeDeadValues() 536 // This is a dead def. Make sure the instruction knows. in computeDeadValues() 544 if (dead && MI->allDefsAreDead()) { in computeDeadValues() 545 LLVM_DEBUG(dbgs() << "All defs dead in computeDeadValues() 446 shrinkToUses(LiveInterval *li, SmallVectorImpl<MachineInstr*> *dead) shrinkToUses() argument 505 computeDeadValues(LiveInterval &LI, SmallVectorImpl<MachineInstr*> *dead) computeDeadValues() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ra_init.cpp | 278 bool dead = a->is_dead(); 280 if (dead) {
|
/third_party/pulseaudio/src/modules/ |
H A D | module-loopback.c | 186 bool dead; member 245 u->msg->dead = true; in teardown() 1449 if (msg->dead) in loopback_process_msg_cb() 1907 u->msg->dead = false; in pa__init()
|
/third_party/spirv-tools/test/opt/ |
H A D | aggressive_dead_code_elim_test.cpp | 438 // This demonstrates that "dead" function calls are not eliminated. in TEST_F() 516 // dead uses of them are. 529 // vec4 dead; 530 // gl_FragColor = foo(dead, BaseColor); 546 OpName %dead "dead" 562 %dead = OpVariable %_ptr_Function_v4float Function 565 %21 = OpLoad %v4float %dead 587 OpName %dead "dead" [all...] |