Home
last modified time | relevance | path

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

123456789

/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DConcatOutputSection.cpp31 if (inputs.empty()) { in addInput()
38 inputs.push_back(input); in addInput()
127 for (InputSection *isec : inputs) in needsThunks()
132 for (InputSection *isec : inputs) { in needsThunks()
157 size_t endIdx = inputs.size(); in estimateStubsInRangeVA()
172 InputSection *isec = inputs[i]; in estimateStubsInRangeVA()
202 for (ConcatInputSection *isec : inputs) in finalize()
223 finalizeOne(inputs[finalIdx++]); in finalize()
230 finalizeOne(inputs[finalIdx++]); in finalize()
324 size_t i = 0, ie = inputs.size(); in writeTo()
[all …]
H A DConcatOutputSection.h32 const ConcatInputSection *firstSection() const { return inputs.front(); } in firstSection()
33 const ConcatInputSection *lastSection() const { return inputs.back(); } in lastSection()
34 bool isNeeded() const override { return !inputs.empty(); } in isNeeded()
47 std::vector<ConcatInputSection *> inputs; variable
H A DUnwindInfoSection.h31 return !compactUnwindSection->inputs.empty() && !allEntriesAreOmitted; in isNeeded()
36 return compactUnwindSection->inputs; in getInputs()
H A DICF.cpp26 ICF(std::vector<ConcatInputSection *> &inputs);
43 ICF::ICF(std::vector<ConcatInputSection *> &inputs) { in ICF() argument
44 icfInputs.assign(inputs.begin(), inputs.end()); in ICF()
/freebsd-13.1/contrib/libedit/TEST/
H A Dtest_filecompletion.c52 static test_input inputs[] = { variable
505 for (i = 0; i < sizeof(inputs)/sizeof(inputs[0]); i++) { in mycomplet_func()
506 if (strcmp(text, inputs[i].completion_function_input) == 0) { in mycomplet_func()
507 if (inputs[i].expanded_text[last_index] != NULL) in mycomplet_func()
508 return strdup(inputs[i].expanded_text[last_index++]); in mycomplet_func()
530 for (i = 0; i < sizeof(inputs)/sizeof(inputs[0]); i++) { in main()
532 input_len = wcslen(inputs[i].user_typed_text); in main()
533 wmemcpy(buffer, inputs[i].user_typed_text, input_len); in main()
547 inputs[i].user_typed_text, inputs[i].escaped_output, el->el_line.buffer); in main()
548 assert(wcscmp(el->el_line.buffer, inputs[i].escaped_output) == 0); in main()
/freebsd-13.1/tests/sys/kern/
H A Dlibkern_crc32.c79 const uint64_t inputs[] = { in ATF_TC_BODY() local
117 ATF_REQUIRE(nitems(inputs) == nitems(results)); in ATF_TC_BODY()
119 for (i = 0; i < nitems(inputs); i++) { in ATF_TC_BODY()
120 check_crc32c(results[i], ~0u, &inputs[i], sizeof(inputs[0])); in ATF_TC_BODY()
/freebsd-13.1/tests/sys/common/
H A Dnet_receiver.py67 inputs = sockets
70 readable, writable, exceptional = select.select(inputs, [], inputs)
96 inputs = sockets
99 readable, writable, exceptional = select.select(inputs, [], inputs)
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def19 FUZZER_FLAG_INT(len_control, 100, "Try generating small inputs first, "
20 "then try larger inputs over time. Specifies the rate at which the length "
26 FUZZER_FLAG_INT(keep_seed, 0, "If 1, keep seed inputs in the corpus even if "
30 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
33 "Some of the inputs in the corpus may never get chosen for mutation "
37 "|keep_seed==1|; all the initial seed inputs, even though they do not "
45 FUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup")
47 "If 1, always prefer smaller inputs during the corpus shuffle.")
102 FUZZER_FLAG_INT(shrink, 0, "Experimental. Try to shrink corpus inputs.")
117 "If 1, generate only ASCII (isprint+isspace) inputs.")
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Dcirrus,madera.yaml35 INnAR INnBL INnBR. For non-muxed inputs the first two cells
37 and the second two cells must be 0. For muxed inputs the
39 right A inputs and the second two cells set the mode of the
40 left and right B inputs. Valid mode values are one of the
42 of inputs the unspecified inputs default to MADERA_INMODE_DIFF.
/freebsd-13.1/sys/contrib/device-tree/Bindings/gpio/
H A Dgpio-xilinx.txt17 - xlnx,all-inputs : if n-th bit is setup, GPIO-n is input
22 - xlnx,all-inputs-2 : as above but for the second channel
36 xlnx,all-inputs = <0x0>;
37 xlnx,all-inputs-2 = <0x0>;
/freebsd-13.1/sys/contrib/device-tree/Bindings/net/
H A Dti,k3-am654-cpts.yaml20 - hardware timestamp push inputs (HWx_TS_PUSH)
25 - external hardware timestamp push inputs (HWx_TS_PUSH) timestamping
76 ti,cpts-ext-ts-inputs:
80 Number of hardware timestamp push inputs (HWx_TS_PUSH)
131 ti,cpts-ext-ts-inputs = <8>;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp834 for (Value *value : inputs) { in constructFunction()
992 for (unsigned i = 0, e = inputs.size(); i != e; ++i) { in constructFunction()
1006 std::vector<User *> Users(inputs[i]->user_begin(), inputs[i]->user_end()); in constructFunction()
1010 inst->replaceUsesOfWith(inputs[i], RewriteVal); in constructFunction()
1017 AI->setName(inputs[i]->getName()); in constructFunction()
1138 for (Value *input : inputs) { in emitCallAndSwitchStatement()
1177 for (unsigned i = 0, e = inputs.size(); i != e; ++i) { in emitCallAndSwitchStatement()
1208 unsigned FirstOut = inputs.size(); in emitCallAndSwitchStatement()
1210 std::advance(OutputArgBegin, inputs.size()); in emitCallAndSwitchStatement()
1660 ValueSet inputs, outputs, SinkingCands, HoistingCands; in extractCodeRegion() local
[all …]
/freebsd-13.1/sys/dev/iicbus/
H A Dpcf8591.c173 struct sysctl_oid_list *inputs; in pcf8591_start() local
196 inputs = SYSCTL_CHILDREN(inputs_node); in pcf8591_start()
201 SYSCTL_ADD_PROC(ctx, inputs, OID_AUTO, buf, in pcf8591_start()
/freebsd-13.1/contrib/llvm-project/lld/lib/Core/
H A DResolver.cpp183 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes(); in undefinesAdded() local
185 if (FileNode *node = dyn_cast<FileNode>(inputs[i].get())) in undefinesAdded()
192 std::vector<std::unique_ptr<Node>> &inputs = _ctx.getNodes(); in getFile() local
193 if ((size_t)index >= inputs.size()) in getFile()
195 if (GroupEnd *group = dyn_cast<GroupEnd>(inputs[index].get())) { in getFile()
207 return cast<FileNode>(inputs[index++].get())->getFile(); in getFile()
/freebsd-13.1/sys/contrib/device-tree/Bindings/hwmon/
H A Daspeed-pwm-tacho.txt4 controller can support upto 16 Fan tachometer inputs.
7 one/two Fan tach inputs.
33 one/two Fan tach inputs.
/freebsd-13.1/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad7192.yaml65 Enables the buffer on the analog inputs. If cleared, the analog inputs
67 bit is set, the analog inputs are buffered, allowing the user to place
H A Dads1015.txt3 This device is a 12-bit A-D converter with 4 inputs.
5 The inputs can be used single ended or in certain differential combinations.
H A Dfsl,imx25-gcq.txt4 analog inputs using the ADC unit of the i.MX25.
24 for the analog inputs.
/freebsd-13.1/sys/contrib/device-tree/Bindings/
H A Dcommon-properties.txt70 of inputs and outputs it provides is the sum of inputs and outputs provided
73 inputs and outputs to register and so on.
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h215 Function *constructFunction(const ValueSet &inputs,
230 ValueSet &inputs, ValueSet &outputs);
/freebsd-13.1/sys/contrib/openzfs/cmd/zpool_influxdb/telegraf.d/
H A Dexec_zpool_influxdb.conf2 [[inputs.exec]]
H A Dexecd_zpool_influxdb.conf2 [[inputs.execd]]
/freebsd-13.1/sys/contrib/device-tree/src/mips/xilfpga/
H A Dnexys4ddr.dts35 xlnx,num-intr-inputs = <0x6>;
46 xlnx,all-inputs = <0x0>;
/freebsd-13.1/sys/contrib/device-tree/Bindings/leds/
H A Dleds-lm3532.txt10 The main features of the LM3532 include dual ambient light sensor inputs
12 brightness control, dual external PWM brightness control inputs, and up to
42 average the two ALS inputs. This is only used if
/freebsd-13.1/sys/contrib/device-tree/Bindings/clock/
H A Dxlnx,zynqmp-clk.txt25 inputs. These required clock inputs are:

123456789