Searched refs:preserve (Results 1 - 25 of 113) sorted by relevance

12345

/freebsd-11-stable/bin/pwait/tests/
H A Dpwait_test.sh24 timeout --preserve-status 15 pwait $p1 $p5 $p10
66 timeout --preserve-status 2 pwait -t 1d $init
72 timeout --preserve-status 2 pwait -t 1d $init
78 timeout --preserve-status 2 pwait -t -1 $init
84 timeout --preserve-status 2 pwait -t 100000001 $init
92 timeout --preserve-status 2 pwait -t 100000000 $init
98 timeout --preserve-status 2 pwait -t 1h $init
104 timeout --preserve-status 2 pwait -t 1.5h $init
110 timeout --preserve-status 2 pwait -t 1m $init
116 timeout --preserve
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAnalysisManager.cpp121 // preserve all Loop analyses.
140 PA.preserve<DominatorTreeAnalysis>();
141 PA.preserve<LoopAnalysis>();
142 PA.preserve<LoopAnalysisManagerFunctionProxy>();
143 PA.preserve<ScalarEvolutionAnalysis>();
144 // FIXME: What we really want to do here is preserve an AA category, but that
146 PA.preserve<AAManager>();
147 PA.preserve<BasicAA>();
148 PA.preserve<GlobalsAA>();
149 PA.preserve<SCEVA
[all...]
/freebsd-11-stable/etc/periodic/daily/
H A D120.clean-preserve5 # Remove stale files in /var/preserve
23 elif [ ! -d /var/preserve ]
25 echo '$daily_clean_preserve_enable is set but /var/preserve' \
30 echo "Removing stale files from /var/preserve:"
32 if cd /var/preserve
H A DMakefile9 120.clean-preserve \
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dgen_free.c45 free_type (const char *name, const Type *t, int preserve) argument
50 free_type (name, t->symbol->type, preserve);
80 if ((t->type == TSequence || t->type == TChoice) && preserve)
168 free_type (name, t->subtype, preserve);
181 int preserve = preserve_type(s->name) ? TRUE : FALSE; local
188 free_type ("data", s->type, preserve);
H A Dmain.c42 static getarg_strings preserve; variable
49 for (i = 0; i < preserve.num_strings; i++)
50 if (strcmp(preserve.strings[i], p) == 0)
77 { "preserve-binary", 0, arg_strings, &preserve },
H A Dgen_copy.c49 copy_type (const char *from, const char *to, const Type *t, int preserve) argument
54 copy_type (from, to, t->symbol->type, preserve);
86 if ((t->type == TSequence || t->type == TChoice) && preserve) {
215 copy_type (from, to, t->subtype, preserve);
230 int preserve = preserve_type(s->name) ? TRUE : FALSE; local
239 copy_type ("from", "to", s->type, preserve);
/freebsd-11-stable/contrib/binutils/bfd/
H A Delfcore.h80 struct bfd_preserve preserve; local
83 preserve.marker = NULL;
119 if (!bfd_preserve_save (abfd, &preserve))
125 preserve.marker = elf_tdata (abfd);
232 bfd_preserve_finish (abfd, &preserve);
248 if (preserve.marker != NULL)
249 bfd_preserve_restore (abfd, &preserve);
H A Dbfd.c1499 bfd_preserve_save (bfd *abfd, struct bfd_preserve *preserve)
1501 preserve->tdata = abfd->tdata.any;
1502 preserve->arch_info = abfd->arch_info;
1503 preserve->flags = abfd->flags;
1504 preserve->sections = abfd->sections;
1505 preserve->section_last = abfd->section_last;
1506 preserve->section_count = abfd->section_count;
1507 preserve->section_htab = abfd->section_htab;
1538 bfd_preserve_restore (bfd *abfd, struct bfd_preserve *preserve)
1542 abfd->tdata.any = preserve
1496 bfd_preserve_save(bfd *abfd, struct bfd_preserve *preserve) argument
1535 bfd_preserve_restore(bfd *abfd, struct bfd_preserve *preserve) argument
1571 bfd_preserve_finish(bfd *abfd ATTRIBUTE_UNUSED, struct bfd_preserve *preserve) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSCCP.cpp28 PA.preserve<DominatorTreeAnalysis>();
29 PA.preserve<PostDominatorTreeAnalysis>();
30 PA.preserve<FunctionAnalysisManagerModuleProxy>();
64 nullptr, // We cannot preserve the DT or PDT with the legacy pass
/freebsd-11-stable/sys/compat/ndis/
H A Dwinx32_wrap.S92 * invoking a wrapped function, we have to make sure to preserve
96 * to preserve both registers.
129 push %eax # preserve return val
153 push %esi # must preserve %esi
169 push %eax # preserve return val
207 push %eax # preserve return val
236 push %eax # preserve return val
268 push %eax # preserve return val
269 push %edx # preserve return val
294 push %eax # preserve retur
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DLoopPassManager.h22 /// 4) All loop passes preserve #1 (where possible), #2, and #3.
379 // By definition we preserve the proxy. We also preserve all analyses on
384 PA.preserve<LoopAnalysisManagerFunctionProxy>();
385 // We also preserve the set of standard analyses.
386 PA.preserve<DominatorTreeAnalysis>();
387 PA.preserve<LoopAnalysis>();
388 PA.preserve<ScalarEvolutionAnalysis>();
390 PA.preserve<MemorySSAAnalysis>();
391 // FIXME: What we really want to do here is preserve a
[all...]
/freebsd-11-stable/usr.bin/timeout/
H A Dtimeout.c57 fprintf(stderr, "Usage: %s [--signal sig | -s sig] [--preserve-status]"
167 int foreground, preserve; local
189 foreground = preserve = 0;
193 { "preserve-status", no_argument, &preserve, 1 },
358 if (timedout && !preserve)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLCSSA.cpp489 PA.preserve<BasicAA>();
490 PA.preserve<GlobalsAA>();
491 PA.preserve<SCEVAA>();
492 PA.preserve<ScalarEvolutionAnalysis>();
494 // updates are needed to preserve it.
495 PA.preserve<BranchProbabilityAnalysis>();
496 PA.preserve<MemorySSAAnalysis>();
H A DLoopSimplify.cpp455 //===--- Update all analyses which we must preserve now -----------------===//
612 // to preserve dominator information.
716 // If we're asked to preserve LCSSA, the loop nest needs to start in LCSSA
722 "Requested to preserve LCSSA, but it's already broken.");
847 // Note that we don't preserve LCSSA in the new PM, if you need it run LCSSA
857 PA.preserve<DominatorTreeAnalysis>();
858 PA.preserve<LoopAnalysis>();
859 PA.preserve<BasicAA>();
860 PA.preserve<GlobalsAA>();
861 PA.preserve<SCEVA
[all...]
/freebsd-11-stable/usr.bin/mail/
H A Dcmdtab.c60 { "preserve", preserve, W|MSGLIST, 0, MMNDEL },
104 { "hold", preserve, W|MSGLIST, 0, MMNDEL },
/freebsd-11-stable/kerberos5/lib/libasn1/
H A DMakefile70 --preserve-binary=TBSCertificate \
71 --preserve-binary=TBSCRLCertList \
72 --preserve-binary=Name \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp61 PA.preserve<MemorySSAAnalysis>();
H A DBDCE.cpp151 PA.preserve<GlobalsAA>();
H A DADCE.cpp118 // ADCE does not use DominatorTree per se, but it updates it to preserve the
396 // live to preserve this control flow edges.
689 PA.preserve<GlobalsAA>();
690 PA.preserve<DominatorTreeAnalysis>();
691 PA.preserve<PostDominatorTreeAnalysis>();
H A DAlignmentFromAssumptions.cpp410 PA.preserve<AAManager>();
411 PA.preserve<ScalarEvolutionAnalysis>();
412 PA.preserve<GlobalsAA>();
/freebsd-11-stable/share/mk/
H A Dsrc.sys.mk5 # to preserve historical (and useful) behavior. Changes here need to
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dxml.c608 svn_boolean_t preserve,
623 if (preserve && ((apr_hash_get(ht, key, keylen)) != NULL))
598 amalgamate(const char **atts, apr_hash_t *ht, svn_boolean_t preserve, apr_pool_t *pool) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCGSCCPassManager.h44 /// that essentially preserve enough of the normalization. While it isn't
59 /// - We want to preserve the incremental and post-order traversal of the
513 // By definition we preserve the proxy. And we preserve all analyses on
518 PA.preserve<FunctionAnalysisManagerCGSCCProxy>();
521 PA.preserve<LazyCallGraphAnalysis>();
926 // By definition we preserve the call garph, all SCC analyses, and the
929 PA.preserve<LazyCallGraphAnalysis>();
930 PA.preserve<CGSCCAnalysisManagerModuleProxy>();
931 PA.preserve<FunctionAnalysisManagerModuleProx
[all...]
/freebsd-11-stable/usr.bin/timeout/tests/
H A Dtimeout_test.sh91 timeout --preserve-status .1 sleep 10

Completed in 208 milliseconds

12345