Searched refs:passes (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/usr.sbin/timed/timed/
H A Dcorrect.c116 static int passes = 0; local
153 if (passes > 1
156 passes = 0;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptExpressionOpts.cpp124 // ARM subtargets need no fixup passes as they are the initial target as
166 bool RenderScriptRuntime::GetIRPasses(LLVMUserExpression::IRPasses &passes) { argument
171 passes.EarlyPasses = m_ir_passes->EarlyPasses;
172 passes.LatePasses = m_ir_passes->LatePasses;
H A DRenderScriptRuntime.h582 bool GetIRPasses(LLVMUserExpression::IRPasses &passes) override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp262 // Now, add all the passes we've been requested to.
275 legacy::PassManager passes; local
276 passes.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
297 PMB.populateThinLTOPassManager(passes);
299 PMB.populateLTOPassManager(passes);
300 passes.run(Mod);
H A DLTOCodeGenerator.cpp96 cl::desc("Only record optimization remarks from passes whose "
121 // Initialize LTO passes. Please keep this function in sync with
123 // passes are initialized.
521 /// Optimize merged modules using various IPO passes
552 // Instantiate the pass manager to organize the passes.
553 legacy::PassManager passes; local
558 passes.add(
575 PMB.populateLTOPassManager(passes);
577 // Run our queue of passes all at once now, efficiently.
578 passes
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dprofile.c271 int passes;
372 This takes an average of slightly more than 3 passes. */
375 passes = 0;
378 passes++;
472 total_num_passes += passes;
474 fprintf (dump_file, "Graph solving took %d passes.\n\n", passes);
1210 fprintf (dump_file, "Total number of graph solution passes: %d\n",
1213 fprintf (dump_file, "Average number of graph solution passes: %d\n",
268 int passes; local
H A Dgcse.c203 Two passes of copy/constant propagation are done because the first one
223 We used to support multiple passes but there are diminishing returns in
226 Experiments show any further passes don't make enough changes to justify
229 A study of spec92 using an unlimited number of passes:
239 max-gcse-passes can be modified if one wants to experiment.
3104 or make it delete the REG_EUAQL note, and fix up all passes that
4418 the expression into the result of the SET. It is left to later passes
4734 int changed, passes;
4740 passes = 0;
4757 passes
4717 int changed, passes; local
[all...]
H A Dmodulo-sched.c902 static int passes = 0;
963 if ((passes++ > MAX_SMS_LOOP_NUMBER) && (MAX_SMS_LOOP_NUMBER != -1))
1160 iterations, let the scheduling passes do the job. */
1245 scheduling passes doesn't touch it. */
899 static int passes = 0; local
/freebsd-11-stable/stand/i386/zfsboot/
H A Dzfsldr.S70 mov $0x1,%cx # Two passes
83 jcxz main.1 # passes
179 * and passes it to read. We assume that the destination address is
/freebsd-11-stable/stand/i386/boot2/
H A Dboot1.S150 mov $0x1,%cx # Two passes
163 jcxz main.1 # passes
/freebsd-11-stable/gnu/usr.bin/cc/cc_int/
H A DMakefile61 et-forest.o cfghooks.o bt-load.o pretty-print.o $(GGC) web.o passes.o \
/freebsd-11-stable/sys/ufs/ffs/
H A Dffs_vnops.c227 int error, passes; local
246 passes = 0;
272 (lbn_level(bp->b_lblkno) >= passes ||
338 * amount of trying will get them clean. We make several passes
341 * Regular files may need multiple passes to flush all dependency
364 /* Write the inode after sync passes to flush deps. */
373 if (wait || ++passes < NIADDR + 2)
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Descape.mk222 # When make passes two backslashes to the shell, the shell will pass one
/freebsd-11-stable/crypto/heimdal/kadmin/
H A DMakefile.in865 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
866 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/ipc/
H A DMakefile.in693 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
694 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/ntlm/
H A DMakefile.in695 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
696 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A DMakefile.in745 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
746 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A DMakefile.in899 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
900 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/sbin/camcontrol/
H A Dcamcontrol.c6646 int passes = 0; local
6695 passes = strtol(optarg, NULL, 0);
6696 if (passes < 1 || passes > 31) {
6697 warnx("invalid passes value %d", passes);
6783 if (passes == 0)
6786 pl->byte1 = passes;
6793 if (passes != 0)
6906 count = (passes
[all...]
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A DMakefile.in1032 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
1033 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc40 // the ll format specifier for printf. However, MinGW passes the format
/freebsd-11-stable/sys/kern/
H A Dsubr_bus.c890 static driver_list_t passes = TAILQ_HEAD_INITIALIZER(passes); variable
899 * will be added to the global passes list.
913 * Walk the passes list. If we already know about this pass
917 TAILQ_FOREACH(dl, &passes, passlink) {
925 TAILQ_INSERT_TAIL(&passes, new, passlink);
943 TAILQ_FOREACH(dl, &passes, passlink) {
3657 * passes should have their identify routines called
/freebsd-11-stable/crypto/heimdal/lib/gssapi/
H A DMakefile.in2097 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
2098 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.in1542 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
1543 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A DMakefile.in1636 if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
1637 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \

Completed in 314 milliseconds

12