Home
last modified time | relevance | path

Searched refs:inputs (Results 1 – 25 of 129) sorted by relevance

123456

/freebsd-12.1/tests/sys/kern/
H A Dlibkern_crc32.c46 const uint64_t inputs[] = { in ATF_TC_BODY() local
85 ATF_REQUIRE(nitems(inputs) == nitems(results)); in ATF_TC_BODY()
87 for (i = 0; i < nitems(inputs); i++) { in ATF_TC_BODY()
89 act = sse42_crc32c(~0, (const void *)&inputs[i], in ATF_TC_BODY()
90 sizeof(inputs[0])); in ATF_TC_BODY()
92 act = armv8_crc32c(~0, (const void *)&inputs[i], in ATF_TC_BODY()
93 sizeof(inputs[0])); in ATF_TC_BODY()
96 "crc32c(0x%jx) = 0x%08x, got 0x%08x", (uintmax_t)inputs[i], in ATF_TC_BODY()
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def20 FUZZER_FLAG_INT(len_control, 100, "Try generating small inputs first, "
21 "then try larger inputs over time. Specifies the rate at which the length "
22 "limit is increased (smaller == faster). If 0, immediately try inputs with "
24 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
29 FUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup")
31 "If 1, always prefer smaller inputs during the corpus shuffle.")
77 FUZZER_FLAG_INT(shrink, 0, "Experimental. Try to shrink corpus inputs.")
79 "Try to reduce the size of inputs while preserving their full feature sets")
92 "If 1, generate only ASCII (isprint+isspace) inputs.")
95 "timeout, or slow inputs) as "
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp701 for (Value *value : inputs) { in constructFunction()
839 for (unsigned i = 0, e = inputs.size(); i != e; ++i) { in constructFunction()
852 std::vector<User *> Users(inputs[i]->user_begin(), inputs[i]->user_end()); in constructFunction()
856 inst->replaceUsesOfWith(inputs[i], RewriteVal); in constructFunction()
863 AI->setName(inputs[i]->getName()); in constructFunction()
900 for (Value *input : inputs) in emitCallAndSwitchStatement()
935 for (unsigned i = 0, e = inputs.size(); i != e; ++i) { in emitCallAndSwitchStatement()
961 unsigned FirstOut = inputs.size(); in emitCallAndSwitchStatement()
963 std::advance(OutputArgBegin, inputs.size()); in emitCallAndSwitchStatement()
1276 ValueSet inputs, outputs, SinkingCands, HoistingCands; in extractCodeRegion() local
[all …]
/freebsd-12.1/contrib/llvm/tools/lld/lib/Core/
H A DResolver.cpp184 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes(); in undefinesAdded() local
186 if (FileNode *node = dyn_cast<FileNode>(inputs[i].get())) in undefinesAdded()
193 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes(); in getFile() local
194 if ((size_t)index >= inputs.size()) in getFile()
196 if (GroupEnd *group = dyn_cast<GroupEnd>(inputs[index].get())) { in getFile()
208 return cast<FileNode>(inputs[index++].get())->getFile(); in getFile()
/freebsd-12.1/contrib/gcc/
H A Dstmt.c660 int ninputs = list_length (inputs); in expand_asm_operands()
683 if (! check_operand_nalternatives (outputs, inputs)) in expand_asm_operands()
692 for (t = inputs; t ; t = TREE_CHAIN (t), i++) in expand_asm_operands()
1148 if (outputs || inputs) in check_operand_nalternatives()
1153 tree next = inputs; in check_operand_nalternatives()
1205 for (i = inputs; i ; i = TREE_CHAIN (i)) in check_unique_operand_names()
1239 check_unique_operand_names (outputs, inputs); in resolve_asm_operand_names()
1243 for (t = inputs; t ; t = TREE_CHAIN (t)) in resolve_asm_operand_names()
1250 p = resolve_operand_name_1 (p, outputs, inputs); in resolve_asm_operand_names()
1293 p = resolve_operand_name_1 (p, outputs, inputs); in resolve_asm_operand_names()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h155 Function *constructFunction(const ValueSet &inputs,
170 ValueSet &inputs, ValueSet &outputs);
/freebsd-12.1/contrib/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoM.td65 // zero-extend both inputs to a udiv.
69 // this pattern is safe as it is impossible for two sign extended inputs to
79 // zero-extend both inputs to a urem.
/freebsd-12.1/contrib/bsnmp/snmpd/
H A Dconfig.c100 static LIST_HEAD(, input) inputs;
183 LIST_FOREACH(input, &inputs, link) { in report()
249 LIST_INSERT_HEAD(&inputs, input, link); in input_open_file()
272 LIST_INSERT_HEAD(&inputs, input, link); in input_open_macro()
283 if ((input = LIST_FIRST(&inputs)) == NULL) in input_close()
306 while (!LIST_EMPTY(&inputs)) in input_close_all()
337 while ((input = LIST_FIRST(&inputs)) != NULL) { in input_getc_raw()
/freebsd-12.1/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpimport.c143 static LIST_HEAD(, input) inputs = LIST_HEAD_INITIALIZER(inputs);
165 LIST_INSERT_HEAD(&inputs, ip, link); in input_new()
182 input = LIST_FIRST(&inputs); in input_close()
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-helper-check-defines.h94 #error CVMX_HELPER_INPUT_TAG_* values for determining tag hash inputs must be defined in executive-…
/freebsd-12.1/contrib/apr-util/
H A Dapu-config.in64 --link-libtool print the libtool inputs for linking to APR-util
/freebsd-12.1/sys/gnu/dts/arm64/renesas/
H A Dr8a77995-draak.dts240 * CVBS and HDMI inputs through SW[49-53]
313 * CVBS and HDMI inputs through SW[49-53]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/
H A DAction.h150 input_range inputs() { return input_range(input_begin(), input_end()); } in inputs() function
153 input_const_range inputs() const { in inputs() function
/freebsd-12.1/sys/gnu/dts/arm/
H A Dkeystone-k2g-netcp.dtsi123 cpts-ext-ts-inputs = <8>;
H A Dkirkwood-nsa320.dts194 some of them should be configured as inputs.
H A Dkirkwood-nsa325.dts203 some of them should be configured as inputs.
H A Dsun8i-q8-common.dtsi77 * short-circuits we configure these as inputs with pull-ups via
/freebsd-12.1/tools/test/testfloat/
H A DsystemBugs.txt82 and 3FFC.C000000000000000 is 3/16. Both positive and negative inputs are
122 floating-point inputs under -(2^32) (C01F.0000000000000000). This bug is
151 of the inputs is subnormal, and _after_ rounding otherwise. If tininess
H A Dtestfloat.txt104 made up of simple pattern tests intermixed with weighted random inputs.
109 inputs, zeros (positive and negative), infinities, and NaNs. For the
401 <inputs> soft: <output-from-emulation> syst: <output-from-system>
403 The `<inputs>' are the inputs to the operation. Each output is shown as a
413 In the first line, the inputs are `800.7FFF00' and `87F.000100'. The
551 <inputs> true: <simple-software-result> soft: <SoftFloat-result>
/freebsd-12.1/contrib/apr/
H A Dapr-config.in70 --link-libtool print the libtool inputs for linking to APR
/freebsd-12.1/crypto/openssl/doc/man3/
H A DBN_mod_mul_montgomery.pod69 The inputs must be reduced modulo B<m>, otherwise the result will be
/freebsd-12.1/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c276 static LIST_HEAD(, input) inputs = LIST_HEAD_INITIALIZER(inputs);
311 LIST_INSERT_HEAD(&inputs, ip, link); in input_new()
328 input = LIST_FIRST(&inputs); in input_close()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DCompilation.cpp214 for (const auto *AI : A->inputs()) in ActionFailed()
/freebsd-12.1/contrib/llvm/tools/lld/docs/
H A DWebAssembly.rst4 The WebAssembly version of lld takes WebAssembly binaries as inputs and produces
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCInstrAltivec.td64 // These fragments are provided for little-endian, where the inputs must be
131 // These fragments are provided for little-endian, where the inputs must be
207 /// the inputs must be swapped for correct semantics.
275 // inputs doesn't match the type of the output.
298 // inputs doesn't match the type of the output.
320 // inputs doesn't match the type of the output.
916 // These fragments are matched for little-endian, where the inputs must
940 // are matched for little-endian, where the inputs must be
1109 // are matched for little-endian, where the inputs must be swapped for correct

123456