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

1 2 3

  /external/clang/test/CodeGen/
unreachable.c 2 // CHECK-NOT: @unreachable
5 extern int unreachable();
9 unreachable();
14 int a = unreachable();
21 unreachable();
23 unreachable();
35 unreachable();
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 32 "The # of unreachable blocks in analyzing top level functions");
72 unsigned total = 0, unreachable = 0; local
78 // Check if the block is unreachable
80 ++unreachable;
84 // We never 'reach' the entry block, so correct the unreachable count
85 unreachable--;
88 unreachable--;
105 NumBlocksUnreachable += unreachable;
109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
110 << unreachable << " | Exhausted Block:
    [all...]
  /external/iproute2/ip/
routel 28 broadcast|local|unreachable) via=$network
ifcfg 132 ip route add unreachable 224.0.0.0/24 >& /dev/null
133 ip route add unreachable 255.255.255.255 >& /dev/null
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 28 MsgHandler unreachable(unsigned int pID);
41 inline mcld::MsgHandler mcld::unreachable(unsigned int pID) function in class:mcld
43 return getDiagnosticEngine().report(pID, DiagnosticEngine::Unreachable);
  /external/chromium_org/v8/test/mjsunit/es6/
iteration-semantics.js 99 throw "unreachable";
125 function* unreachable(iterable) {
132 function set_never() { throw "unreachable"; }
144 function never() { throw "unreachable"; }
215 assertThrows('fold(sum, 0, unreachable(null))', TypeError);
216 assertThrows('fold(sum, 0, unreachable(undefined))', TypeError);
219 assertThrows('fold(sum, 0, unreachable({}))', TypeError);
220 assertThrows('fold(sum, 0, unreachable(false))', TypeError);
221 assertThrows('fold(sum, 0, unreachable(37))', TypeError);
327 if (name == 'next' && n-- < 0) throw "unreachable";
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes.js 25 "Tests that code that is dead, unreachable, and contains a chain of nodes that use each other in an untyped way doesn't result in the IR getting corrupted."
31 var x = a; // It's dead and unreachable, and it involves a GetScopeVar(GetScopeRegisters(GetMyScope())).
38 // Since the function contains unreachable code we need a higher optimization threshold.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 45 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/libnl/lib/route/
rtnl.c 63 __ADD(RTN_UNREACHABLE,unreachable)
  /external/iputils/
traceroute6.c 70 * unreachable" (which means we got to "host") or hit a max (which
137 * sends an unreachable message using whatever ttl remains in the
173 * network or protocol unreachable, respectively), !S or !F (source
176 * almost all the probes result in some kind of unreachable, traceroute
596 int unreachable = 0; local
626 ++unreachable;
630 ++unreachable;
635 ++unreachable;
649 (unreachable > 0 && unreachable >= nprobes-1)
    [all...]
  /external/libunwind/src/arm/
Gresume.c 103 unreachable();
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_settings.h 167 // Records that the data reduction proxy is unreachable or not.
168 void SetUnreachable(bool unreachable);
170 // Returns whether the data reduction proxy is unreachable. Returns true
data_reduction_proxy_settings.cc 223 void DataReductionProxySettings::SetUnreachable(bool unreachable) {
224 unreachable_ = unreachable;
  /external/libunwind/src/sh/
Gresume.c 112 unreachable();
  /frameworks/compile/mclinker/lib/LD/
ELFReaderIf.cpp 115 unreachable(diag::unreachable_invalid_section_idx) << pShndx
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
FlowControl.pxd 71 @cython.locals(block=ControlBlock, parent=ControlBlock, unreachable=set)
  /external/libunwind/include/
libunwind_i.h 91 # define unreachable() __builtin_unreachable() macro
93 # define unreachable() do { } while (1) macro
  /external/bison/src/
reader.c 641 muscle_percent_define_default ("lr.keep-unreachable-states", "false");
  /external/libunwind/src/aarch64/
Gresume.c 122 unreachable();
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 131 unreachable(diag::err_cannot_trace_file) << (*input)->type()
  /external/llvm/utils/vim/
llvm.vim 35 syn keyword llvmStatement umax umin une uno unreachable unwind urem va_arg
  /frameworks/compile/mclinker/tools/mcld/lib/
OutputFormatOptions.cpp 208 mcld::unreachable(mcld::diag::unrecognized_output_file) << pModule.name();

Completed in 722 milliseconds

1 2 3