| /src/sys/sys/ |
| stddef.h | 125 * unreachable() 141 #define unreachable() __unreachable() /* sys/cdefs.h */ macro
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| util.h | 43 #define unreachable() JEMALLOC_INTERNAL_UNREACHABLE() macro
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| util.h | 43 #define unreachable() JEMALLOC_INTERNAL_UNREACHABLE() macro
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| util.h | 43 #define unreachable() JEMALLOC_INTERNAL_UNREACHABLE() macro 68 unreachable();
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| util.h | 43 #define unreachable() JEMALLOC_INTERNAL_UNREACHABLE() macro 68 unreachable();
|
| /src/external/bsd/kyua-cli/dist/utils/ |
| sanity.hpp | 58 unreachable, enumerator in enum:utils::assert_type 175 #define UNREACHABLE UNREACHABLE_MSG("") 189 utils::sanity_failure(utils::unreachable, __FILE__, __LINE__, msg); \
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| AnalyzerStatsChecker.cpp | 31 "The # of unreachable blocks in analyzing top level functions"); 71 unsigned total = 0, unreachable = 0; local 77 // Check if the block is unreachable 79 ++unreachable; 83 // We never 'reach' the entry block, so correct the unreachable count 84 unreachable--; 87 unreachable--; 104 NumBlocksUnreachable += unreachable; 108 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: " 109 << unreachable << " | Exhausted Block: [all...] |
| /src/external/bsd/atf/dist/atf-c/detail/ |
| sanity_test.c | 54 enum type { inv, pre, post, unreachable }; enumerator in enum:type 82 case unreachable: 84 UNREACHABLE; 141 case unreachable: 208 ATF_TC(unreachable); variable 209 ATF_TC_HEAD(unreachable, tc) 211 atf_tc_set_md_var(tc, "descr", "Tests the UNREACHABLE macro"); 213 ATF_TC_BODY(unreachable, tc) 217 do_test(unreachable, false); 218 do_test(unreachable, true) [all...] |
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| stddef.h | 473 #define unreachable() (__builtin_unreachable ()) macro
|
| /src/usr.sbin/traceroute6/ |
| traceroute6.c | 90 * unreachable" (which means we got to "host") or hit a max (which 157 * sends an unreachable message using whatever ttl remains in the 193 * network or protocol unreachable, respectively), !S or !F (source 196 * almost all the probes result in some kind of unreachable, traceroute 681 u_long unreachable = 0; local 704 ++unreachable; 708 ++unreachable; 712 ++unreachable; 716 ++unreachable; 735 (unreachable > 0 && unreachable >= ((nprobes + 1) / 2))) [all...] |
| /src/sys/net/ |
| bpfjit.c | 216 bool unreachable; member in struct:bpfjit_insn_data 1291 bool unreachable; local 1298 unreachable = false; 1303 unreachable = false; 1304 insn_dat[i].unreachable = unreachable; 1306 if (unreachable) 1312 unreachable = true; 1319 unreachable = true; 1435 unreachable = true [all...] |
| /src/external/gpl3/gcc/dist/libgfortran/caf/ |
| single.c | 1150 /* Emitted when a theorectically unreachable part is reached. */ 1151 const char unreachable[] = "Fatal error: unreachable alternative found.\n"; variable 1249 caf_runtime_error (unreachable); 1324 caf_runtime_error (unreachable); 1438 caf_runtime_error (unreachable); 1473 caf_runtime_error (unreachable); 1529 caf_runtime_error (unreachable); 1533 caf_runtime_error (unreachable); 2117 caf_runtime_error (unreachable); [all...] |
| /src/external/gpl3/gcc.old/dist/libgfortran/caf/ |
| single.c | 1153 /* Emitted when a theorectically unreachable part is reached. */ 1154 const char unreachable[] = "Fatal error: unreachable alternative found.\n"; variable 1252 caf_runtime_error (unreachable); 1327 caf_runtime_error (unreachable); 1441 caf_runtime_error (unreachable); 1476 caf_runtime_error (unreachable); 1532 caf_runtime_error (unreachable); 1536 caf_runtime_error (unreachable); 2120 caf_runtime_error (unreachable); [all...] |
| /src/lib/libc/time/ |
| private.h | 1063 # undef unreachable macro 1064 # define unreachable() abort() macro 1065 #elif !defined unreachable 1068 # define unreachable() __builtin_unreachable() macro 1071 # define unreachable() __builtin_unreachable() macro 1073 # ifndef unreachable 1074 # define unreachable() ((void) 0) macro
|
| /src/usr.sbin/traceroute/ |
| traceroute.c | 45 * unreachable" (which means we got to "host") or hit a max (which 112 * sends an unreachable message using whatever ttl remains in the 148 * network or protocol unreachable, respectively), !S or !F (source 151 * almost all the probes result in some kind of unreachable, traceroute 933 int unreachable = 0; local 1000 ++unreachable; 1005 ++unreachable; 1019 ++unreachable; 1025 ++unreachable; 1030 ++unreachable; [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| socket_wrapper.c | 780 int unreachable, 810 if (unreachable) { 848 if (unreachable) { 849 packet->ip.p.icmp.type = 0x03; /* destination unreachable */ 850 packet->ip.p.icmp.code = 0x01; /* host unreachable */ 942 int unreachable = 0; local 998 /* Unreachable: resend the data of SWRAP_CONNECT_SEND */ 1002 unreachable = 1; 1139 unreachable = 1; 1198 tcp_seq, tcp_ack, tcp_ctl, unreachable, [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_interceptors.cc | 2622 static void unreachable() { function in namespace:__tsan 2623 Report("FATAL: ThreadSanitizer: unreachable called\n"); 2791 REAL(atexit) = (int(*)(void(*)()))unreachable;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| sched-rgn.cc | 261 have nonlocal gotos, or if we have an unreachable loop. */ 326 /* Unreachable loops with more than one basic block are detected 329 Unreachable loops with a single block are detected here. This 633 bool unreachable; 763 /* Another check for unreachable blocks. The earlier test in 764 is_cfg_nonregular only finds unreachable blocks that do not 769 dfs_nr is zero for any block, then it must be unreachable. */ 770 unreachable = false; 774 unreachable = true; 785 /* Do not perform region scheduling if there are any unreachable 632 bool unreachable; local [all...] |
| ipa-prop.cc | 3496 bool unreachable = false; local 3537 unreachable = true; 3603 if (dump_file && !unreachable)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| sched-rgn.cc | 260 have nonlocal gotos, or if we have an unreachable loop. */ 325 /* Unreachable loops with more than one basic block are detected 328 Unreachable loops with a single block are detected here. This 631 int num_bbs, num_insns, unreachable; 761 /* Another check for unreachable blocks. The earlier test in 762 is_cfg_nonregular only finds unreachable blocks that do not 767 dfs_nr is zero for any block, then it must be unreachable. */ 768 unreachable = 0; 772 unreachable = 1; 783 /* Do not perform region scheduling if there are any unreachable 630 int num_bbs, num_insns, unreachable; local [all...] |
| ipa-prop.cc | 3385 bool unreachable = false; local 3426 unreachable = true; 3492 if (dump_file && !unreachable)
|
| /src/external/mpl/bind/dist/lib/dns/ |
| zone.c | 675 struct dns_unreachable unreachable[UNREACH_CACHE_SIZE]; member in struct:dns_zonemgr 10108 UNREACHABLE(); 14161 "unreachable (cached)", 14398 "(source %s) is unreachable (cached)", 16629 UNREACHABLE(); 16935 UNREACHABLE(); 16964 UNREACHABLE(); 18624 "primary %s (source %s) is unreachable (cached)", 19202 UNREACHABLE(); 19268 memset(zmgr->unreachable, 0, sizeof(zmgr->unreachable)) [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| zone.c | 668 struct dns_unreachable unreachable[UNREACH_CACHE_SIZE]; member in struct:dns_zonemgr 10141 UNREACHABLE(); 14046 "unreachable (cached)", 14274 "(source %s) is unreachable (cached)", 18018 "master %s (source %s) is unreachable (cached)", 18131 UNREACHABLE(); 18726 memset(zmgr->unreachable, 0, sizeof(zmgr->unreachable)); 18728 atomic_init(&zmgr->unreachable[i].expire, 0); 18735 /* Unreachable lock. * [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| gfortran.h | 2839 int unreachable; member in struct:gfc_case
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| gfortran.h | 2746 int unreachable; member in struct:gfc_case
|