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

1 2 3 4

  /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/elfutils/libdwfl/
dwfl_end.c 65 Dwfl_Module *dead = next; local
66 next = dead->next;
67 __libdwfl_module_free (dead);
  /external/clang/test/Sema/
warn-unreachable.c 5 int dead();
31 dead(); // expected-warning {{will never be executed}}
35 dead(); // expected-warning {{will never be executed}}
41 dead();
52 dead(); // expected-warning {{will never be executed}}
66 dead(); // expected-warning {{will never be executed}}
69 dead();
79 dead(); // expected-warning {{will never be executed}}
89 dead() : dead();
    [all...]
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 12 #define comment /##/ dead tokens live here
19 #define nested(x) int x comment cute little dead tokens...
21 nested(baz) rise of the dead tokens
  /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}}
  /external/chromium_org/v8/test/mjsunit/compiler/
dead-code3.js 29 a + b; // dead
34 a | 0; // dead
35 b | 0; // dead
36 return a; // x and y are both dead
40 a == 2 ? a : b; // dead
47 z + 3; // dead
55 z + 3; // dead
59 return a; // z is dead
dead-code4.js 29 (a | 0) + (b | 0); // dead
34 a | 0; // dead
35 b | 0; // dead
36 return a; // x and y are both dead
40 a == 2 ? (a | 0) : (b | 0); // dead
47 (z | 0) + 3; // dead
55 (z | 0) + 3; // dead
59 return a; // z is dead
dead-code.js 30 return a; // x is dead
36 return a; // x and y are both dead
43 return a; // z is dead
51 return a; // z is dead
60 return a; // z is dead
dead-code2.js 30 return a; // x is dead
35 return a; // x and y are both dead
44 return a; // z is dead
54 return a; // z is dead
65 return a; // z and w are dead
dead-code5.js 51 a == 2 ? (a * b) : (b * a); // dead
58 z * 3; // dead
66 z * 3; // dead
70 return a; // w is dead
dead-string-add-warm.js 32 return a; // x, "a", and "b" are dead code
38 return a; // x and y are both dead
46 return a; // x and y are both dead
dead-string-add.js 30 return a; // x, "a", and "b" are dead code
36 return a; // x and y are both dead
44 return a; // x and y are both dead
dead-string-char-from-code.js 32 return a; // x is dead code
38 return a; // x and y are both dead
46 return a; // x and y are both dead
  /external/oprofile/daemon/liblegacy/
opd_proc.h 38 * is used with dead field to defer opd_proc deletion */
41 int dead; member in struct:opd_proc
97 * Deal with an exit() notification by setting the flag "dead"
132 * opd_age_procs - age all dead process preparing them for a deletion
  /frameworks/base/services/java/com/android/server/am/
ContentProviderConnection.java 35 // The provider of this connection is now dead.
36 public boolean dead; field in class:ContentProviderConnection
87 if (dead) {
88 sb.append(" DEAD");
  /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/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)
  /external/qemu/audio/
noaudio.c 101 int dead = hw->samples - live; local
104 if (dead) {
113 samples = audio_MIN (samples, dead);
esdaudio.c 84 int dead; member in struct:__anon26569
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:__anon26576
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/chromium_org/v8/test/webkit/
dfg-cfa-merge-with-dead-use-at-tail.js 25 "Tests that a dead use of a variable at the tail of a basic block doesn't confuse the CFA into believing that the variable being used is dead as well."
dfg-dead-redundant-get-array-length.js 25 "Tests that having a dead, and redundant, use of array.length doesn't cause compiler crashes."
29 var x = array.length; // This is dead. If it wasn't, it would be redundant with the one below.

Completed in 637 milliseconds

1 2 3 4