| /openbsd/src/gnu/llvm/clang/lib/Analysis/ |
| D | CFGReachabilityAnalysis.cpp | 24 : analyzed(cfg.getNumBlockIDs(), false) {} in CFGReverseBlockReachabilityAnalysis() 31 if (!analyzed[DstBlockID]) { in isReachable() 33 analyzed[DstBlockID] = true; in isReachable() 44 llvm::BitVector visited(analyzed.size()); in mapReachability() 47 DstReachability.resize(analyzed.size(), false); in mapReachability()
|
| /openbsd/src/usr.bin/tput/ |
| D | tput.c | 241 int analyzed; in tput_cmd() local 296 analyzed = 1; in tput_cmd() 302 analyzed = 2; in tput_cmd() 310 analyzed = 2; in tput_cmd() 316 analyzed = 3; in tput_cmd() 323 analyzed = _nc_tparm_analyze(NULL, s, p_is_s, &popcount); in tput_cmd() 340 analyzed = _nc_tparm_analyze(NULL, s, p_is_s, &popcount); in tput_cmd() 355 if (analyzed < popcount) { in tput_cmd() 356 analyzed = popcount; in tput_cmd() 358 if (opt_v && (analyzed != provided)) { in tput_cmd() [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | ipa.c | 116 || !node->analyzed in cgraph_remove_unreachable_nodes() 136 && node->analyzed in cgraph_remove_unreachable_nodes() 137 && (!e->inline_failed || !e->callee->analyzed in cgraph_remove_unreachable_nodes() 169 if (!node->analyzed || !DECL_EXTERNAL (node->decl) in cgraph_remove_unreachable_nodes() 192 node->analyzed = false; in cgraph_remove_unreachable_nodes() 195 node->analyzed = false; in cgraph_remove_unreachable_nodes()
|
| D | cgraphunit.c | 286 cgraph_varpool_first_unanalyzed_node->analyzed = true; in cgraph_varpool_analyze_pending_decls() 420 node->analyzed = false; in cgraph_reset_node() 766 if (node->analyzed in verify_cgraph_node() 968 node->analyzed = true; in cgraph_analyze_function() 1120 gcc_assert (!node->analyzed && node->reachable); in cgraph_finalize_compilation_unit() 1170 gcc_assert (node->analyzed == node->local.finalized); in cgraph_finalize_compilation_unit() 1445 if (!node->local.externally_visible && node->analyzed in cgraph_function_and_variable_visibility() 1452 && node->analyzed in cgraph_function_and_variable_visibility() 1609 if (node->analyzed in cgraph_optimize() 1786 new_version->analyzed = true; in cgraph_copy_node_for_versioning()
|
| D | cgraph.h | 163 unsigned analyzed : 1; member 220 unsigned analyzed : 1; member
|
| D | cgraph.c | 797 if (node->analyzed) in dump_cgraph_varpool_node() 1078 new->analyzed = n->analyzed; in cgraph_clone_node() 1150 if (!node->analyzed) in cgraph_function_body_availability()
|
| D | ipa-utils.c | 173 if ((node->analyzed) in ipa_utils_reduced_inorder()
|
| D | tree-optimize.c | 448 if (e->callee->analyzed) in tree_rest_of_compilation()
|
| D | ipa-inline.c | 909 if (node->analyzed && (node->needed || node->reachable)) in cgraph_decide_inlining() 1201 if (node->analyzed && (node->needed || node->reachable)) in cgraph_early_inlining() 1208 if (node->analyzed && node->local.inlinable in cgraph_early_inlining()
|
| D | ipa-reference.c | 921 if (node->analyzed in static_execute() 1302 if (node->analyzed in static_execute()
|
| D | ipa-pure-const.c | 624 if (node->analyzed && cgraph_is_master_clone (node)) in static_execute()
|
| D | passes.c | 950 if (node->analyzed) in execute_ipa_pass_list()
|
| /openbsd/src/gnu/llvm/clang/include/clang/Analysis/Analyses/ |
| D | CFGReachabilityAnalysis.h | 35 ReachableSet analyzed; variable
|
| /openbsd/src/usr.bin/tic/ |
| D | tic.c | 2082 int analyzed = _nc_tparm_analyze(NULL, value, p_is_s, &popcount); in check_params() local 2083 if (analyzed < popcount) { in check_params() 2084 analyzed = popcount; in check_params() 2086 if (actual != analyzed && expected != analyzed) { in check_params() 2089 if ((user_cap == analyzed) && using_extensions) { in check_params() 2093 analyzed, name, user_cap); in check_params() 2098 analyzed, name, actual); in check_params() 3020 int analyzed = _nc_tparm_analyze(NULL, value, p_is_s, &popcount); in check_ANSI_cap() local 3021 if (analyzed < popcount) { in check_ANSI_cap() 3022 analyzed = popcount; in check_ANSI_cap() [all …]
|
| /openbsd/src/gnu/llvm/clang/docs/analyzer/developer-docs/ |
| D | DebugChecks.rst | 25 function being analyzed. 31 top-level function being analyzed. 34 top-level function being analyzed. 38 are several functions analyzed, display one graph per function. Beware 112 also be analyzed as a top-level function (in which case both TRUE and FALSE
|
| D | nullability.rst | 52 * We can either take the branch; this way the branch is analyzed 86 …alse positives but the functions that takes nullable parameters will be analyzed separately as wel…
|
| /openbsd/src/gnu/gcc/gcc/doc/ |
| D | loop.texi | 39 At the moment, loop structures are analyzed and this information is 81 The loops are analyzed through @code{loop_optimizer_init} function. The 144 exactly one exit and the loops were analyzed with 303 Given an SSA name, its behavior in loops can be analyzed using the 305 does not have to be fully analyzed and it may contain references to 371 All its operands are analyzed by @code{iv_analyze}, and hence they must 460 contained in the analyzed loop body, and the second vector will contain 464 analyzed loop contains side effects, such as calls that potentially can 465 interfere with the data references in the current analyzed loop, the 471 scanning of the loop body: the loop body is analyzed in execution order,
|
| /openbsd/src/regress/sys/netinet/arp/ |
| D | README | 5 sends them to REMOTE. The replies to LOCAL are analyzed. The
|
| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/ |
| D | README.txt | 55 the behavior of the analyzed program from the entry point. To 115 The second prints to the console what function is being analyzed. The
|
| /openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/ |
| D | AnalyzerOptions.def | 340 "Whether the analyzed application runs in a controlled environment. " 349 "won't be analyzed.", 355 "flex\" won't be analyzed.",
|
| /openbsd/src/usr.bin/file/magdir/ |
| D | freebsd | 74 # NetBSD-style). (The old "netbsd" file analyzed FreeBSD demand paged
|
| /openbsd/src/gnu/llvm/llvm/docs/ |
| D | MergeFunctions.rst | 658 were analyzed before (function *F*) it calls ``mergeTwoFunctions(Function*, 665 ``FnTree``, and analyzed again. 714 mark it as to-be-analyzed-again (put to ``Deferred`` set), we also remove 761 3.1. first mark all callers of *G* as to-be-analyzed-again, using
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | CXXRecordDeclDefinitionBits.def | 146 /// member can't be fully analyzed without performing overload resolution.
|
| D | OperationKinds.def | 41 /// CK_Dependent - A conversion which cannot yet be analyzed because
|
| /openbsd/src/gnu/llvm/clang/lib/Sema/ |
| D | AnalysisBasedWarnings.cpp | 2349 bool analyzed = false; in IssueWarnings() local 2358 analyzed = true; in IssueWarnings() 2384 if (!analyzed) in IssueWarnings()
|