| /freebsd-12.1/tests/sys/kern/ |
| H A D | libkern_crc32.c | 46 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 D | FuzzerFlags.def | 20 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 D | CodeExtractor.cpp | 701 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 D | Resolver.cpp | 184 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 D | stmt.c | 660 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 D | CodeExtractor.h | 155 Function *constructFunction(const ValueSet &inputs, 170 ValueSet &inputs, ValueSet &outputs);
|
| /freebsd-12.1/contrib/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoM.td | 65 // 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 D | config.c | 100 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 D | bsnmpimport.c | 143 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 D | cvmx-helper-check-defines.h | 94 #error CVMX_HELPER_INPUT_TAG_* values for determining tag hash inputs must be defined in executive-…
|
| /freebsd-12.1/contrib/apr-util/ |
| H A D | apu-config.in | 64 --link-libtool print the libtool inputs for linking to APR-util
|
| /freebsd-12.1/sys/gnu/dts/arm64/renesas/ |
| H A D | r8a77995-draak.dts | 240 * 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 D | Action.h | 150 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 D | keystone-k2g-netcp.dtsi | 123 cpts-ext-ts-inputs = <8>;
|
| H A D | kirkwood-nsa320.dts | 194 some of them should be configured as inputs.
|
| H A D | kirkwood-nsa325.dts | 203 some of them should be configured as inputs.
|
| H A D | sun8i-q8-common.dtsi | 77 * short-circuits we configure these as inputs with pull-ups via
|
| /freebsd-12.1/tools/test/testfloat/ |
| H A D | systemBugs.txt | 82 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 D | testfloat.txt | 104 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 D | apr-config.in | 70 --link-libtool print the libtool inputs for linking to APR
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | BN_mod_mul_montgomery.pod | 69 The inputs must be reduced modulo B<m>, otherwise the result will be
|
| /freebsd-12.1/contrib/bsnmp/gensnmptree/ |
| H A D | gensnmptree.c | 276 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 D | Compilation.cpp | 214 for (const auto *AI : A->inputs()) in ActionFailed()
|
| /freebsd-12.1/contrib/llvm/tools/lld/docs/ |
| H A D | WebAssembly.rst | 4 The WebAssembly version of lld takes WebAssembly binaries as inputs and produces
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrAltivec.td | 64 // 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
|