HomeSort by relevance Sort by last modified time
    Searched full:dead (Results 151 - 175 of 1683) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/test/Transforms/CorrelatedValuePropagation/
range.ll 11 %dead = icmp eq i32 %a, 7
12 br i1 %dead, label %end, label %else
31 %dead = icmp ugt i32 %a, 15
32 br i1 %dead, label %end, label %else
  /external/llvm/test/Transforms/Inline/
invoke_test-2.ll 2 ; throw, that the dead handler is now unreachable.
  /external/llvm/test/Transforms/SimplifyCFG/
2009-01-18-PHIPropCrash.ll 3 ; Dead use caused invariant violation.
preserve-branchweights-partial.ll 8 ; NOTE: There are some obviously dead blocks and missing branch weight
  /external/protobuf/gtest/xcode/Config/
ReleaseProject.xcconfig 24 // Dead code strip does not affect ObjC code but can help for C
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
Logging.java 43 // Declare values here to avoid dead code warnings; it means we have some extra
  /external/qemu/audio/
esdaudio.c 84 int dead; member in struct:__anon32953
343 if (esd->dead > threshold) {
352 incr = to_grab = esd->dead;
398 esd->dead -= incr;
409 int live, incr, dead; local
417 dead = hw->samples - live;
418 incr = audio_MIN (dead, esd->incr);
420 esd->dead = dead - incr;
422 if (esd->dead > 0)
    [all...]
paaudio.c 57 int dead; member in struct:__anon32960
202 if (pa->dead > threshold) {
211 incr = to_grab = pa->dead;
239 pa->dead -= incr;
250 int live, incr, dead; local
258 dead = hw->samples - live;
259 incr = audio_MIN (dead, pa->incr);
261 pa->dead = dead - incr;
263 if (pa->dead > 0)
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 42 /// Called immediately before erasing a dead machine instruction.
92 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead);
213 /// eliminateDeadDefs - Try to delete machine instructions that are now dead
215 /// and further dead efs to be eliminated.
219 void eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead,
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.cpp 147 // some dead code. We could remove dead code in an ad-hoc manner, but that
217 // Optimize PHIs before DCE: removing dead PHI cycles may make more
218 // instructions dead.
229 // With optimization, dead code should already be eliminated. However
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
prune.h 87 vector<StateId> dead; local
88 dead.push_back(fst->AddState());
94 dead.push_back(state);
105 arc.nextstate = dead[0];
113 fst->DeleteStates(dead);
  /external/webrtc/src/system_wrappers/source/
thread_posix.cc 301 bool dead = false; local
305 dead = _dead;
310 for (int i = 0; i < 1000 && !dead; i++)
318 dead = _dead;
321 if (dead)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
timevar.def 96 DEFTIMEVAR (TV_DELETE_TRIVIALLY_DEAD , "trivially dead code")
106 DEFTIMEVAR (TV_DF_NOTE , "df reg dead/unused notes")
199 DEFTIMEVAR (TV_DCE , "dead code elimination")
200 DEFTIMEVAR (TV_DSE1 , "dead store elim1")
201 DEFTIMEVAR (TV_DSE2 , "dead store elim2")
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 1 //===-- DeadArgumentElimination.cpp - Eliminate dead arguments ------------===//
10 // This pass deletes dead arguments from internal functions. Dead argument
11 // elimination removes arguments which are directly dead, as well as arguments
12 // only passed into function calls as dead arguments of other functions. This
13 // pass also deletes dead return values in a similar way.
16 // interprocedural passes, which add possibly-dead arguments or return values.
50 /// DAE - The dead argument elimination pass.
83 /// explicitly dead (even if we know they are), since anything not alive
85 /// thus become dead in the end
    [all...]
  /external/clang/test/Analysis/
dtor.cpp 47 // Remove dead bindings...
64 // Remove dead bindings...
81 // Remove dead bindings...
92 // Remove dead bindings...
103 // Remove dead bindings...
121 // Remove dead bindings...
  /external/oprofile/daemon/liblegacy/
opd_proc.c 78 proc->dead = 0;
325 proc->dead = 1;
385 * age dead proc in such way if a proc doesn't receive any samples
391 if (proc->dead) {
392 proc->dead += proc->accessed;
394 if (--proc->dead == 0)
  /external/clang/lib/Analysis/
ReachableCode.cpp 88 // to stop at control-flow; only part of a return statement may be dead,
89 // without the whole return statement being dead.
104 // well be reachable via a different control flow, thus it's not dead.
108 // We hit control flow or a dead end. Stop searching.
340 // Dead Code Scanner.
456 // Look for any dead code within the block.
460 // No dead code. Possibly an empty block. Look at dead predecessors.
481 // strongly-connected component of dead code for emitting a
487 // If we didn't find a dead root, then report the dead code with th
    [all...]
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 140 elen[n] = -2; /* n is a dead element */
142 w[n] = 0; /* n is a dead element */
150 elen[i] = -2; /* element i is dead */
158 elen[i] = -1; /* node i is dead */
227 if((nvi = nv[i]) <= 0) continue; /* node i dead, or seen */
244 w[e] = 0; /* e is now a dead element */
297 w[e] = 0; /* e is a dead element */
307 if((nvj = nv[j]) <= 0) continue; /* node j dead or in Lk */
320 elen[i] = -1; /* node i is dead */
343 if(nv[i] >= 0) continue; /* skip if i is dead */
    [all...]
  /frameworks/base/media/java/android/media/
AudioManager.java 772 Log.e(TAG, "Dead object in adjustStreamVolume", e);
805 Log.e(TAG, "Dead object in adjustVolume", e);
839 Log.e(TAG, "Dead object in adjustSuggestedStreamVolume", e);
    [all...]
  /art/compiler/optimizing/
ssa_phi_elimination.cc 57 // we only remove phis with no users (dead phis might use dead phis).
  /external/chromium_org/base/process/
process_iterator_linux.cc 109 // Is the process in 'Zombie' state, i.e. dead but waiting to be reaped?
115 // (e.g. WaitForProcessesToExit doesn't clean up after dead children yet.)
  /external/chromium_org/components/keyed_service/content/
browser_context_keyed_service_factory.cc 20 // isn't dead). See if we need to readd it once we've gone through normal
126 // maintain a big map of dead pointers, but also since we may have a second
refcounted_browser_context_keyed_service_factory.cc 18 // isn't dead). See if we need to readd it once we've gone through normal
113 // maintain a big map of dead pointers, but also since we may have a second
  /external/chromium_org/sync/syncable/
syncable_delete_journal.h 50 // prevent back-from-dead problem. |deleted_entries| are only valid during
86 // bookkeeping to prevent back-from-dead entries that are deleted elsewhere
  /external/chromium_org/third_party/android_testrunner/
patch.diff 85 - # process already dead. No action required.
93 + # Can't kill a dead process.

Completed in 2615 milliseconds

1 2 3 4 5 67 8 91011>>