Searched refs:inputs (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11-stable/tests/sys/kern/
H A Dlibkern_crc32.c46 const uint64_t inputs[] = { local
85 ATF_REQUIRE(nitems(inputs) == nitems(results));
87 for (i = 0; i < nitems(inputs); i++) {
89 act = sse42_crc32c(~0, (const void *)&inputs[i],
90 sizeof(inputs[0]));
92 act = armv8_crc32c(~0, (const void *)&inputs[i],
93 sizeof(inputs[0]));
96 "crc32c(0x%jx) = 0x%08x, got 0x%08x", (uintmax_t)inputs[i],
/freebsd-11-stable/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-config.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DResolver.cpp183 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes();
185 if (FileNode *node = dyn_cast<FileNode>(inputs[i].get()))
192 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes();
193 if ((size_t)index >= inputs.size())
195 if (GroupEnd *group = dyn_cast<GroupEnd>(inputs[index].get())) {
207 return cast<FileNode>(inputs[index++].get())->getFile();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h80 /// 1) Find both the inputs and outputs for the extracted region.
81 /// 2) Pass the inputs as arguments, remapping them within the extracted
213 Function *constructFunction(const ValueSet &inputs,
228 ValueSet &inputs, ValueSet &outputs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp619 /// severSplitPHINodesOfEntry - If a PHI node has multiple inputs from outside
694 /// severSplitPHINodesOfExits - if PHI nodes in exit blocks have inputs from
695 /// outlined region, we split these PHIs on two: one with inputs from region
764 /// constructFunction - make a function based on inputs and outputs, as follows:
766 Function *CodeExtractor::constructFunction(const ValueSet &inputs, argument
773 LLVM_DEBUG(dbgs() << "inputs: " << inputs.size() << "\n");
787 for (Value *value : inputs) {
809 if (AggregateArgs && (inputs.size() + outputs.size() > 0)) {
928 // Rewrite all users of the inputs i
1060 emitCallAndSwitchStatement(Function *newFunction, BasicBlock *codeReplacer, ValueSet &inputs, ValueSet &outputs) argument
1470 ValueSet inputs, outputs, SinkingCands, HoistingCands; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dstmt.c297 inputs and NOUTPUTS outputs to this extended-asm. Upon return,
645 OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
661 expand_asm_operands (tree string, tree outputs, tree inputs,
666 int ninputs = list_length (inputs);
689 if (! check_operand_nalternatives (outputs, inputs))
692 string = resolve_asm_operand_names (string, outputs, inputs);
698 for (t = inputs; t ; t = TREE_CHAIN (t), i++)
705 clobbers = targetm.md_asm_clobbers (outputs, inputs, clobbers);
739 /* First pass over inputs and outputs checks validity and sets
782 for (i = 0, tail = inputs; tai
655 expand_asm_operands(tree string, tree outputs, tree inputs, tree clobbers, int vol, location_t locus) argument
1146 check_operand_nalternatives(tree outputs, tree inputs) argument
1190 check_unique_operand_names(tree outputs, tree inputs) argument
1232 resolve_asm_operand_names(tree string, tree outputs, tree inputs) argument
1309 resolve_operand_name_1(char *p, tree outputs, tree inputs) argument
[all...]
H A Dc-parser.c2948 contexts, where a full expression with inputs and outputs does not
4383 statement with inputs, outputs, clobbers, and volatile tag
4401 tree quals, str, outputs, inputs, clobbers, ret;
4433 inputs = NULL_TREE;
4452 inputs = NULL_TREE;
4462 /* Parse inputs. */
4465 inputs = NULL_TREE;
4467 inputs = c_parser_asm_operands (parser, true);
4490 ret = build_asm_stmt (quals, build_asm_expr (str, outputs, inputs,
4495 /* Parse asm operands, a GNU extension. If CONVERT_P (for inputs bu
4399 tree quals, str, outputs, inputs, clobbers, ret; local
[all...]
H A Dc-typeck.c7222 build_asm_expr (tree string, tree outputs, tree inputs, tree clobbers,
7233 ninputs = list_length (inputs);
7237 string = resolve_asm_operand_names (string, outputs, inputs);
7280 for (i = 0, tail = inputs; tail; ++i, tail = TREE_CHAIN (tail))
7307 args = build_stmt (ASM_EXPR, string, outputs, inputs, clobbers);
7189 build_asm_expr(tree string, tree outputs, tree inputs, tree clobbers, bool simple) argument
/freebsd-11-stable/contrib/apr-util/
H A Dapu-config.in64 --link-libtool print the libtool inputs for linking to APR-util
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dconfig.c100 static LIST_HEAD(, input) inputs;
183 LIST_FOREACH(input, &inputs, link) {
249 LIST_INSERT_HEAD(&inputs, input, link);
272 LIST_INSERT_HEAD(&inputs, input, link);
283 if ((input = LIST_FIRST(&inputs)) == NULL)
301 * Close all inputs
306 while (!LIST_EMPTY(&inputs))
337 while ((input = LIST_FIRST(&inputs)) != NULL) {
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dlib1funcs.asm166 // Transfer inputs to FP registers.
172 // Convert the inputs to FP, so that they won't be treated as unsigned.
219 // Transfer inputs to FP registers.
225 // Convert the inputs to FP, so that they won't be treated as unsigned.
276 // Transfer inputs to FP registers.
282 // Convert the inputs to FP, to avoid FP software-assist faults.
329 // Transfer inputs to FP registers.
335 // Convert the inputs to FP, to avoid FP software assist faults.
H A Dia64.c2355 registers, because we reserve 8 for the inputs and 8 for the
2951 int inputs = current_frame_info.n_input_regs;
2955 for (i = 0; i < inputs; i++)
2958 reg_names[LOC_REG (i)] = ia64_reg_numbers[inputs + i];
2960 reg_names[OUT_REG (i)] = ia64_reg_numbers[inputs + locals + i];
2945 int inputs = current_frame_info.n_input_regs; local
/freebsd-11-stable/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);
182 input = LIST_FIRST(&inputs);
/freebsd-11-stable/contrib/apr/
H A Dapr-config.in70 --link-libtool print the libtool inputs for linking to APR
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h151 input_range inputs() { return input_range(input_begin(), input_end()); } function in class:clang::driver::Action
154 input_const_range inputs() const { function in class:clang::driver::Action
265 // initialize the inputs of the base Action class.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp211 for (const auto *AI : A->inputs())
226 // inputs on the command line even one of them failed.
227 // In all but CLMode, execute all the jobs unless the necessary inputs for the
H A DDriver.cpp385 // Pick up inputs via the -- option.
612 // We need to generate a CUDA/HIP toolchain if any of the inputs has a CUDA
1127 // Construct the list of inputs.
1288 // Construct the list of inputs.
1295 // Ignore input from stdin or any inputs that cannot be preprocessed.
1296 // Check type first as not all linker inputs have a value.
1317 "no preprocessable inputs.";
1826 // inputs to each action before printing the action itself.
1930 for (const Action *Input : A->inputs())
2073 // Construct a the list of inputs an
[all...]
/freebsd-11-stable/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c240 static LIST_HEAD(, input) inputs = LIST_HEAD_INITIALIZER(inputs);
275 LIST_INSERT_HEAD(&inputs, ip, link);
292 input = LIST_FIRST(&inputs);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp148 // all inputs, direct and indirect, of compile jobs.
176 for (const driver::Action *AI : A->inputs())
311 // we get duplicates since Link jobs point to Assemble jobs as inputs.
331 // Remove all inputs deemed unused for compilation.
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2838 inputs_range inputs() { return inputs_range(begin_inputs(), end_inputs()); } function in class:clang::AsmStmt
2848 inputs_const_range inputs() const { function in class:clang::AsmStmt
/freebsd-11-stable/sys/sys/
H A Dsoundcard.h291 * (inputs, different levels) for the first one are returned.
293 * If formats, mixers, inputs are instantiated, then detailed info
301 u_long inputs; /* bitmap of available inputs (per mixer) */ member in struct:_snd_capabilities
857 * both inputs/outputs (depending on the device). See the OSS Programmer's
1030 * The AD1848 codec and compatibles have three line level inputs
1032 * different meanings to these inputs, it's inpractical to assign
/freebsd-11-stable/contrib/expat/tests/
H A Druntests.c7504 const char *const inputs[] = {inputOne, inputTwo, inputThree, inputIssue317}; local
7507 for (; inputIndex < sizeof(inputs) / sizeof(inputs[0]); inputIndex++) {
7513 const char *const input = inputs[inputIndex];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h1073 ArrayRef<InputTy> inputs() const { return Inputs; } function in class:llvm::OperandBundleDefT
1096 /// - Zero or more operand bundles with zero or more operand inputs each
/freebsd-11-stable/sys/dev/sound/pcm/
H A Ddsp.c1287 p->inputs = pdev->si_drv1? mix_getdevs(pdev->si_drv1) : 0;
/freebsd-11-stable/contrib/gcc/cp/
H A Dparser.c11342 tree inputs = NULL_TREE;
11402 next token is the beginning of the inputs. */
11404 /* The inputs are coming next. */
11407 /* Look for inputs. */
11418 inputs = cp_parser_asm_operand_list (parser);
11446 inputs, clobbers);
11340 tree inputs = NULL_TREE; local

Completed in 399 milliseconds

12