Home
last modified time | relevance | path

Searched full:outputs (Results 1 – 25 of 1011) sorted by relevance

12345678910>>...41

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp179 CellMapType &Outputs) const { in evaluate()
205 return evaluateLoad(MI, Inputs, Outputs); in evaluate()
224 if (evaluateFormalCopy(MI, Inputs, Outputs)) in evaluate()
250 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate()
252 putCell(Reg[0], Val, Outputs); in evaluate()
315 return rr0(eIMM(im(1), W0), Outputs); in evaluate()
317 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::Zero), Outputs); in evaluate()
319 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::One), Outputs); in evaluate()
327 return rr0(RC, Outputs); in evaluate()
335 return rr0(rc(1), Outputs); in evaluate()
[all …]
H A DHexagonConstPropagation.cpp280 // compute the set of output values "Outputs". An example of when
293 CellMap &Outputs) = 0;
668 CellMap Outputs; in visitNonBranch() local
669 bool Eval = MCE.evaluate(MI, Cells, Outputs); in visitNonBranch()
672 dbgs() << " outputs:"; in visitNonBranch()
673 for (auto &I : Outputs) in visitNonBranch()
679 // Update outputs. If the value was not computed, set all the in visitNonBranch()
695 // Find the corresponding cell in the computed outputs. in visitNonBranch()
697 if (!Outputs.has(DefR.Reg)) in visitNonBranch()
700 Changed = RC.meet(Outputs.get(DefR.Reg)); in visitNonBranch()
[all …]
/freebsd/contrib/bc/vs/
H A Dbc.vcxproj213 … <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(OutDir)strgen.exe</Outputs>
215 … <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(OutDir)strgen.exe</Outputs>
217 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(OutDir)strgen.exe</Outputs>
219 … <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)strgen.exe</Outputs>
252 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">src2\lib.c</Outputs>
254 <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">src2\lib.c</Outputs>
256 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">src2\lib.c</Outputs>
258 <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">src2\lib.c</Outputs>
265 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">src2\lib2.c</Outputs>
267 <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">src2\lib2.c</Outputs>
[all …]
/freebsd/contrib/ntp/scripts/build/
H A Dgenver8 outputs=
16 outputs="m4/version.m4 $outputs"
19 outputs="include/version.def $outputs"
22 outputs="include/version.texi $outputs"
30 case "$outputs" in
31 '') outputs="m4/version.m4 include/version.def include/version.texi" ;;
48 case "$outputs" in
64 case "$outputs" in
80 case "$outputs" in
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-info.pod.in41 Outputs the default directory for OpenSSL configuration files.
45 Outputs the default directory for OpenSSL engine modules.
49 Outputs the default directory for OpenSSL dynamically loadable modules
54 Outputs the DSO extension OpenSSL uses.
58 Outputs the separator character between a directory specification and
65 Outputs the OpenSSL list separator character.
71 Outputs the randomness seed sources.
75 Outputs the OpenSSL CPU settings info.
79 Outputs the Windows install context.
/freebsd/secure/usr.bin/openssl/man/
H A Dopenssl-info.196 Outputs the default directory for OpenSSL configuration files.
99 Outputs the default directory for OpenSSL engine modules.
102 Outputs the default directory for OpenSSL dynamically loadable modules
106 Outputs the DSO extension OpenSSL uses.
109 Outputs the separator character between a directory specification and
115 Outputs the OpenSSL list separator character.
120 Outputs the randomness seed sources.
123 Outputs the OpenSSL CPU settings info.
126 Outputs the Windows install context.
/freebsd/usr.sbin/praudit/tests/
H A Dpraudit_test.sh57 atf_set "descr" "Verify that praudit outputs default form without " \
71 atf_set "descr" "Verify that praudit outputs the numeric form " \
85 atf_set "descr" "Verify that praudit outputs the raw form with -r flag"
98 atf_set "descr" "Verify that praudit outputs the trail in the same " \
112 atf_set "descr" "Verify that praudit outputs the short form " \
126 atf_set "descr" "Verify that praudit outputs the XML file with -x flag"
139 atf_set "descr" "Verify that praudit(1) outputs the last few audit " \
159 atf_set "descr" "Verify that praudit outputs usage message on stderr " \
/freebsd/contrib/ntp/ports/winnt/vs2015/
H A Dmkver.props7 <Outputs>scm-rev</Outputs>
14 <Outputs>scm-rev</Outputs>
22 <Outputs>version.c</Outputs>
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h82 /// 1) Find both the inputs and outputs for the extracted region.
85 /// 3) Add allocas for any scalar outputs, adding all of the outputs' allocas
170 /// interface to see what was categorized as inputs and outputs.
176 /// \param Outputs [out] - filled with values marked as outputs to the
181 ValueSet &Inputs, ValueSet &Outputs);
207 LLVM_ABI void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
286 const ValueSet &outputs,
295 void emitFunctionBody(const ValueSet &inputs, const ValueSet &outputs,
302 CallInst *emitReplacerCall(const ValueSet &inputs, const ValueSet &outputs,
314 const ValueSet &outputs, ArrayRef<Value *> Reloads,
/freebsd/usr.sbin/crunch/examples/
H A DMakefile10 OUTPUTS= $(OUTMK) $(CRUNCHED).c $(CRUNCHED).cache macro
14 CLEANDIRFILES+= $(OUTPUTS)
19 $(OUTPUTS): $(CONF)
22 $(CRUNCHED): $(OUTPUTS) submake
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DIRNormalizer.cpp48 SmallVector<Instruction *, 16> Outputs; member in __anon4c986dac0111::IRNormalizer
92 Outputs = collectOutputInstructions(F); in runOnFunction()
99 for (auto &I : Outputs) in runOnFunction()
354 // instructions (including pre-outputs). in foldInstructionName()
575 /// \param F Function to collect outputs from.
580 SmallVector<Instruction *, 16> Outputs; in collectOutputInstructions() local
583 Outputs.push_back(&I); in collectOutputInstructions()
584 return Outputs; in collectOutputInstructions()
592 // Outputs are such instructions which may have side effects or is ReturnInst. in isOutput()
617 /// block) of outputs using the \p I (eliminates repetitions). Walks down the
[all …]
/freebsd/crypto/libecc/src/fp/
H A Dfp_montgomery.c23 * Inputs and outputs are in their Montgomery form.
34 * Inputs and outputs are in their Montgomery form.
45 * Inputs and outputs are in their Montgomery form.
56 * Inputs and outputs are in their Montgomery form.
68 * Inputs and outputs are in their Montgomery form.
/freebsd/sys/contrib/device-tree/Bindings/pwm/
H A Dpwm-samsung.yaml15 and clock event timers, as well as to drive SoC outputs with PWM signal. Each
17 outputs - see SoC and board manual).
83 samsung,pwm-outputs:
85 A list of PWM channels used as PWM outputs on particular platform.
127 samsung,pwm-outputs = <0>, <1>;
/freebsd/lib/libsysdecode/
H A Dsysdecode_quotactl_cmd.340 function outputs a text description of the
62 outputs text depicting an invocation of
74 if it outputs a description of
84 outputs the text
H A Dsysdecode_utrace.340 function outputs a textual representation of a
49 The function only outputs a representation for certain types of records.
51 the function outputs the description and returns a non-zero value.
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dxlnx,clocking-wizard.yaml54 xlnx,nr-outputs:
59 Number of outputs.
68 - xlnx,nr-outputs
80 xlnx,nr-outputs = <6>;
H A Dti,cdce925.txt16 - "ti,cdce913": 1-PLL, 3 Outputs
17 - "ti,cdce925": 2-PLL, 5 Outputs
18 - "ti,cdce937": 3-PLL, 7 Outputs
19 - "ti,cdce949": 4-PLL, 9 Outputs
H A Dti,cdce925.yaml15 - CDCE(L)913: 1-PLL, 3 Outputs https://www.ti.com/product/cdce913
16 - CDCE(L)925: 2-PLL, 5 Outputs https://www.ti.com/product/cdce925
17 - CDCE(L)937: 3-PLL, 7 Outputs https://www.ti.com/product/cdce937
18 - CDCE(L)949: 4-PLL, 9 Outputs https://www.ti.com/product/cdce949
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra186-display.yaml164 nvidia,outputs = <&dsia &dsib &sor0 &sor1>;
183 nvidia,outputs = <&dsia &dsib &sor0 &sor1>;
202 nvidia,outputs = <&sor0 &sor1>;
251 nvidia,outputs = <&sor0 &sor1 &sor2 &sor3>;
269 nvidia,outputs = <&sor0 &sor1 &sor2 &sor3>;
287 nvidia,outputs = <&sor0 &sor1 &sor2 &sor3>;
305 nvidia,outputs = <&sor0 &sor1 &sor2 &sor3>;
H A Dnvidia,tegra186-dc.yaml60 nvidia,outputs:
61 description: A list of phandles of outputs that this display
82 - nvidia,outputs
/freebsd/share/mk/
H A Dbsd.crunchgen.mk38 OUTPUTS=${OUTMK} ${OUTC} ${PROG}.cache
62 ${OUTPUTS}: ${CRUNCH_SRCDIR_${P}}/Makefile
118 .ORDER: ${OUTPUTS} objs
119 ${OUTPUTS:[1]}: .META
120 ${OUTPUTS:[2..-1]}: .NOMETA
121 ${OUTPUTS}: ${CONF}
133 ${PROG}: ${OUTPUTS} objs .NOMETA .PHONY
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTFLiteUtils.cpp41 EvaluationResultImpl(const std::vector<const TfLiteTensor *> &Outputs) in EvaluationResultImpl() argument
42 : Outputs(Outputs){}; in EvaluationResultImpl()
44 const TfLiteTensor *getOutput(size_t I) { return Outputs[I]; } in getOutput()
50 const std::vector<const TfLiteTensor *> Outputs; member in llvm::EvaluationResultImpl
142 // Known inputs and outputs in TFModelEvaluatorImpl()
147 for (size_t I = 0; I < Interpreter->outputs().size(); ++I) in TFModelEvaluatorImpl()
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dmaxim,max77693.yaml16 There are two LED outputs available - FLED1 and FLED2. Each of them can
31 outputs. The maximum current on each output is reduced to 625mA then. If
77 Valid values for a LED connected to both FLED outputs:
85 Valid values for a single LED connected to both FLED outputs:
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DTool.cpp21 const InputInfoList &Outputs, in ConstructJobMultipleOutputs() argument
25 assert(Outputs.size() == 1 && "Expected only one output by default!"); in ConstructJobMultipleOutputs()
26 ConstructJob(C, JA, Outputs.front(), Inputs, TCArgs, LinkingOutput); in ConstructJobMultipleOutputs()
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dti,k3-am654-cpts.yaml23 - periodic Generator function outputs (TS_GENFx)
90 ti,cpts-periodic-outputs:
94 Number of timestamp Generator function outputs (TS_GENFx)
141 ti,cpts-periodic-outputs = <6>;

12345678910>>...41