/freebsd-src/crypto/openssl/util/ |
H A D | lang-compress.pl | 23 # Regexp for things that should be preserved 24 my $preserved = 43 (?| # All things preserved end up in $1 52 $preserved 66 (?| # All things preserved end up in $1 73 $preserved 81 (?| # All things preserved end up in $1 88 $preserved 124 # Regexp for things that should be preserved 125 my $preserved = [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PassManager.h | 286 /// needs to be invalidated both when its own information isn't preserved and 485 /// invalidate them, unless they are preserved by the PreservedAnalyses set. 600 /// If the proxy analysis itself is not preserved, we assume that the set of 605 /// Regardless of whether the proxy analysis is marked as preserved, all of 607 /// based on the set of preserved analyses. 303 bool preserved() { preserved() function
|
/freebsd-src/contrib/openpam/doc/man/ |
H A D | openpam_readword.3 | 33 including the newline character, are preserved as-is. 36 which is preserved as-is, unless that character is a newline, in 42 preserved as-is. 44 Within a double-quoted string, a single quote is preserved as-is, 45 and a backslash is preserved as-is unless used to escape a double 51 If a hash character occurs within a word, however, it is preserved
|
/freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
H A D | PassManager.cpp | 32 // If literally everything is preserved, we're done. in invalidate() 36 // If this proxy isn't marked as preserved, then even if the result remains in invalidate() 42 // forcibly cleared. When preserved, this proxy will only invalidate results in invalidate() 45 if (!PAC.preserved() && !PAC.preservedSet<AllAnalysesOn<Module>>()) { in invalidate() 50 // Directly check if the relevant set is preserved. in invalidate() 59 // Check to see whether the preserved set needs to be pruned based on in invalidate() 133 // Then intersect the preserved set so that invalidation of module in run() 138 // The FunctionAnalysisManagerModuleProxy is preserved because (we assume) in run()
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ |
H A D | PassAnalysisSupport.h | 52 /// Sets of analyses required and preserved by a pass 58 SmallVector<AnalysisID, 2> Preserved; variable 87 /// Add the specified ID to the set of analyses preserved by this pass. 89 pushUnique(Preserved, ID); in addPreservedID() 93 pushUnique(Preserved, &ID); in addPreservedID() 96 /// Add the specified Pass class to the set of analyses preserved by this pass. 99 pushUnique(Preserved, &PassClass::ID); in addPreserved() 124 /// preserved by this pass. If no such Pass exists, do nothing. This can be 125 /// useful when a pass is trivially preserved, but may not be linked in. Be 141 /// that only depend on the CFG are preserved by this pass. [all …]
|
/freebsd-src/bin/cp/ |
H A D | cp.1 | 178 If the user ID and group ID cannot be preserved, no error message 182 be preserved, the set-user-ID bit is not preserved 185 be preserved, the set-group-ID bit is not preserved 188 and either the user ID or group ID cannot be preserved, neither 189 the set-user-ID nor set-group-ID bits are preserved in the copy's
|
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopPassManager.cpp | 36 // the remaining analysis results in the AnalysisManager are preserved. We in run() 40 // be preserved, but unrolling should invalidate the parent loop's analyses. in run() 132 // Finally, we intersect the final preserved analyses to compute the in runWithLoopNestPasses() 133 // aggregate preserved set for this pass manager. in runWithLoopNestPasses() 136 // Check if the current pass preserved the loop-nest object or not. in runWithLoopNestPasses() 137 IsLoopNestPtrValid &= PassPA->getChecker<LoopNestAnalysis>().preserved(); in runWithLoopNestPasses() 179 // Finally, we intersect the final preserved analyses to compute the in runWithoutLoopNestPasses() 180 // aggregate preserved set for this pass manager. in runWithoutLoopNestPasses() 314 if (LAR.MSSA && !PassPA.getChecker<MemorySSAAnalysis>().preserved()) in run() 338 // Then intersect the preserved set so that invalidation of module in run()
|
/freebsd-src/contrib/openpam/lib/libpam/ |
H A D | openpam_readword.c | 159 * including the newline character, are preserved as-is. 162 * which is preserved as-is, unless that character is a newline, in 168 * preserved as-is. 170 * - Within a double-quoted string, a single quote is preserved as-is, 171 * and a backslash is preserved as-is unless used to escape a double 176 * If a hash character occurs within a word, however, it is preserved
|
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/ |
H A D | DebugInfoSupport.cpp | 34 DenseMap<Block *, Symbol *> Preserved; in preserveDWARFSection() local 37 Preserved[&Sym->getBlock()] = Sym; in preserveDWARFSection() 38 else if (!Preserved.count(&Sym->getBlock())) in preserveDWARFSection() 39 Preserved[&Sym->getBlock()] = Sym; in preserveDWARFSection() 42 auto &PSym = Preserved[Block]; in preserveDWARFSection()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CGSCCPassManager.cpp | 98 // Intersect the final preserved analyses to compute the aggregate in run() 99 // preserved set for this pass manager. in run() 120 // Before we mark all of *this* SCC's analyses as preserved below, intersect in run() 121 // this with the cross-SCC preserved analysis set. This is used to allow in run() 128 // preserved. We mark this with a set so that we don't need to inspect each in run() 246 // cross-SCC preserved set. This preserved set is intersected by any in run() 248 // to marking its SCC as preserved. That lets us track everything that in run() 286 // Intersect with the cross-SCC preserved set to capture any in run() 289 // Intersect the preserved se in run() [all...] |
/freebsd-src/contrib/bmake/unit-tests/ |
H A D | var-op-expand.mk | 23 # expressions based on undefined variables are preserved though. 87 # the variable modifier is not preserved. To preserve it, ParseModifierPart 103 # preserved, no matter how indirectly they are referenced. 117 # In variable assignments using the ':=' operator, '$$' are preserved, no 127 # In variable assignments using the ':=' operator, '$$' are preserved in the 193 # The following test case demonstrates that the variable 'LATER' is preserved 240 # from the nested expression could be preserved, like this:
|
H A D | directive-for-empty.exp | 5 # .elif. In other lines the string 'empty(' must be preserved. 16 # In comments like 'empty(i)', the text must be preserved as well.
|
/freebsd-src/crypto/heimdal/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 26 # with or without modifications, as long as this notice is preserved. 64 # with or without modifications, as long as this notice is preserved. 118 # with or without modifications, as long as this notice is preserved. 152 # with or without modifications, as long as this notice is preserved. 336 # with or without modifications, as long as this notice is preserved. 416 # with or without modifications, as long as this notice is preserved. 552 # with or without modifications, as long as this notice is preserved. 573 # with or without modifications, as long as this notice is preserved. 595 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/ |
H A D | history_003_pos.ksh | 42 # 4. Verify that the initial pool creation is preserved. 93 # Verify that the creation of the pool was preserved in the history. 95 log_fail "zpool creation history was not preserved."
|
/freebsd-src/contrib/openpam/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 65 # with or without modifications, as long as this notice is preserved. 117 # with or without modifications, as long as this notice is preserved. 154 # with or without modifications, as long as this notice is preserved. 185 # with or without modifications, as long as this notice is preserved. 376 # with or without modifications, as long as this notice is preserved. 444 # with or without modifications, as long as this notice is preserved. 659 # with or without modifications, as long as this notice is preserved. 680 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send_raw_spill_block.ksh | 24 # Verify spill blocks are correctly preserved in raw sends. 34 # preserved when receiving the incremental stream. 39 log_assert "Verify spill blocks are correctly preserved in raw sends" 161 log_pass "Verify spill blocks are correctly preserved in raw sends"
|
H A D | send_spill_block.ksh | 23 # Verify spill blocks are correctly preserved. 32 # preserved when receiving the incremental stream. 37 log_assert "Verify spill blocks are correctly preserved" 155 log_pass "Verify spill blocks are correctly preserved"
|
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/ |
H A D | reservation_013_pos.ksh | 38 # Reservation properties on data objects should be preserved when the 56 log_assert "Reservation properties preserved across exports and imports" 110 log_pass "Reservation properties preserved across exports and imports"
|
/freebsd-src/contrib/ntp/sntp/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 63 # with or without modifications, as long as this notice is preserved. 125 # with or without modifications, as long as this notice is preserved. 177 # with or without modifications, as long as this notice is preserved. 208 # with or without modifications, as long as this notice is preserved. 399 # with or without modifications, as long as this notice is preserved. 467 # with or without modifications, as long as this notice is preserved. 682 # with or without modifications, as long as this notice is preserved. 703 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/contrib/openbsm/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 65 # with or without modifications, as long as this notice is preserved. 117 # with or without modifications, as long as this notice is preserved. 148 # with or without modifications, as long as this notice is preserved. 339 # with or without modifications, as long as this notice is preserved. 415 # with or without modifications, as long as this notice is preserved. 612 # with or without modifications, as long as this notice is preserved. 633 # with or without modifications, as long as this notice is preserved. 655 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/contrib/ntp/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 63 # with or without modifications, as long as this notice is preserved. 125 # with or without modifications, as long as this notice is preserved. 177 # with or without modifications, as long as this notice is preserved. 208 # with or without modifications, as long as this notice is preserved. 399 # with or without modifications, as long as this notice is preserved. 467 # with or without modifications, as long as this notice is preserved. 682 # with or without modifications, as long as this notice is preserved. 703 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | Internalize.h | 10 // If the function or variable does not need to be preserved according to the 35 /// must be preserved according to \c MustPreserveGV. 47 /// Client supplied callback to control wheter a symbol must be preserved.
|
/freebsd-src/contrib/file/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 65 # with or without modifications, as long as this notice is preserved. 117 # with or without modifications, as long as this notice is preserved. 148 # with or without modifications, as long as this notice is preserved. 339 # with or without modifications, as long as this notice is preserved. 407 # with or without modifications, as long as this notice is preserved. 622 # with or without modifications, as long as this notice is preserved. 643 # with or without modifications, as long as this notice is preserved. 664 # with or without modifications, as long as this notice is preserved [all...] |
/freebsd-src/contrib/ntp/sntp/libevent/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 65 # with or without modifications, as long as this notice is preserved. 117 # with or without modifications, as long as this notice is preserved. 148 # with or without modifications, as long as this notice is preserved. 339 # with or without modifications, as long as this notice is preserved. 407 # with or without modifications, as long as this notice is preserved. 622 # with or without modifications, as long as this notice is preserved. 643 # with or without modifications, as long as this notice is preserved. 664 # with or without modifications, as long as this notice is preserved. [all …]
|
/freebsd-src/contrib/libevent/ |
H A D | aclocal.m4 | 7 # with or without modifications, as long as this notice is preserved. 27 # with or without modifications, as long as this notice is preserved. 65 # with or without modifications, as long as this notice is preserved. 117 # with or without modifications, as long as this notice is preserved. 148 # with or without modifications, as long as this notice is preserved. 339 # with or without modifications, as long as this notice is preserved. 407 # with or without modifications, as long as this notice is preserved. 604 # with or without modifications, as long as this notice is preserved. 625 # with or without modifications, as long as this notice is preserved. 646 # with or without modifications, as long as this notice is preserved. [all …]
|