Home
last modified time | relevance | path

Searched full:combined (Results 1 – 25 of 1109) sorted by relevance

12345678910>>...45

/freebsd/contrib/ntp/sntp/libopts/
H A DCOPYING.lgplv320 other than an Application or a Combined Work as defined below.
27 A "Combined Work" is a work produced by combining or linking an
29 with which the Combined Work was made is also called the "Linked
32 The "Minimal Corresponding Source" for a Combined Work means the
33 Corresponding Source for the Combined Work, excluding any source code
34 for portions of the Combined Work that, considered in isolation, are
37 The "Corresponding Application Code" for a Combined Work means the
39 and utility programs needed for reproducing the Combined Work from the
40 Application, but excluding the System Libraries of the Combined Work.
79 4. Combined Works.
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dopt-jobs-no-action.mk13 # opt-no-action-combined.mk
37 all: explained combined
38 .ORDER: explained combined
80 combined: combined-begin
82 combined-begin: .PHONY
83 @+echo hide-from-output 'begin combined'
89 . for target in combined-silent-${silent}-always-${always}-ignerr-${ignerr}
90 combined: .WAIT ${target} .WAIT
100 combined: combined-end
101 combined-end: .PHONY
[all …]
H A Dopt-no-action-runflags.mk4 # combined with the RunFlags '@', '-', '+' for individual commands.
12 all: .PHONY combined
21 combined: .PHONY
H A Dopt-no-action-runflags.exp1 begin combined
33 end combined
H A Dopt-jobs-no-action.exp18 begin combined
60 end combined
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h43 // Combined Constructs.
175 /// 'worker' clause, allowed on 'loop', Combined, and 'routine' directives.
177 /// 'vector' clause, allowed on 'loop', Combined, and 'routine' directives.
185 /// Executable Constructs, and Combined Constructs.
187 /// 'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
189 /// 'copy' clause, allowed on Compute and Combined Constructs, plus 'data' and
198 /// 'attach' clause, allowed on Compute and Combined constructs, plus 'data'
207 /// 'deviceptr' clause, allowed on Compute and Combined Constructs, plus
219 /// 'no_create' clause, allowed on allowed on Compute and Combined constructs,
222 /// 'present' clause, allowed on Compute and Combined constructs, plus 'data'
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Drockchip-dw-pcie-common.yaml45 Combined system interrupt, which is used to signal the following
50 Combined PM interrupt, which is used to signal the following
55 Combined message interrupt, which is used to signal the following
59 Combined legacy interrupt, which is used to signal the following
63 Combined error interrupt, which is used to signal the following
/freebsd/sys/contrib/device-tree/Bindings/iommu/
H A Darm,smmu-v3.yaml34 - const: combined
36 The combined interrupt is optional, and should only be provided if the
37 hardware supports just a single, combined interrupt line.
38 If provided, then the combined interrupt will be used in preference to
/freebsd/share/man/man3/
H A DQ_IFRAWMASK.338 .Nd fixed-point math functions which manipulate the combined integer/fractional
64 combined integer and fractional data bits.
73 combined integer and fractional data bits value, i.e., are applicable to the
94 combined integer/fractional data bits to the value
/freebsd/sys/contrib/device-tree/Bindings/mailbox/
H A Darm,mhuv3.yaml132 - combined
139 - const: combined
140 description: PBX/MBX Combined interrupt
141 - const: combined-ffch
142 description: PBX/MBX FIFO Combined interrupt
208 interrupt-names = "combined", "pbx-dbch-xfer-ack-1",
219 interrupt-names = "combined", "mbx-dbch-xfer-1", "ffch-low-tide-0";
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dusb-device.txt9 "interface nodes" representing USB interfaces and "combined nodes"
12 A combined node shall be used instead of a device node and an interface node
16 A "hub node" is a combined node or an interface node that represents a USB
49 Required properties for combined nodes:
H A Dusb-device.yaml19 "interface nodes" representing USB interfaces and "combined nodes"
22 A combined node shall be used instead of a device node and an interface node
26 A "hub node" is a combined node or an interface node that represents a USB
32 description: Device nodes or combined nodes.
/freebsd/sys/contrib/device-tree/Bindings/iio/proximity/
H A Dsemtech,sx9310.yaml50 semtech,combined-sensors:
53 List of which sensors are combined and represented by CS3.
82 Sensor used for start-up proximity detection. The combined
125 semtech,combined-sensors = <1 2 3>;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DReplayInlineAdvisor.cpp70 std::string Combined = (Callee + CallSite).str(); in ReplayInlineAdvisor() local
71 InlineSitesFromRemarks[Combined] = IsPositiveRemark; in ReplayInlineAdvisor()
112 std::string Combined = (Callee + CallSiteLoc).str(); in getAdviceImpl() local
115 auto Iter = InlineSitesFromRemarks.find(Combined); in getAdviceImpl()
117 if (InlineSitesFromRemarks[Combined]) { in getAdviceImpl()
/freebsd/sys/contrib/device-tree/Bindings/thermal/
H A Dqcom-tsens.yaml74 - description: v2 of TSENS with combined interrupt
78 - description: v2 of TSENS with combined interrupt
245 - description: Combined interrupt if upper or lower threshold crossed
259 - description: Combined interrupt if upper or lower threshold crossed
276 - description: Combined interrupt if upper, lower or critical thresholds crossed
279 - const: combined
403 interrupt-names = "combined";
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/
H A DXCoreDisassembler.cpp217 unsigned Combined = fieldFromInstruction(Insn, 6, 5); in Decode2OpInstruction() local
218 if (Combined < 27) in Decode2OpInstruction()
221 if (Combined == 31) in Decode2OpInstruction()
223 Combined += 5; in Decode2OpInstruction()
225 Combined -= 27; in Decode2OpInstruction()
226 unsigned Op1High = Combined % 3; in Decode2OpInstruction()
227 unsigned Op2High = Combined / 3; in Decode2OpInstruction()
236 unsigned Combined = fieldFromInstruction(Insn, 6, 5); in Decode3OpInstruction() local
237 if (Combined >= 27) in Decode3OpInstruction()
240 unsigned Op1High = Combined % 3; in Decode3OpInstruction()
[all …]
/freebsd/contrib/kyua/utils/config/
H A Dtree_test.cpp217 const config::tree combined = t1.combine(t2); in ATF_TEST_CASE_BODY() local
220 ATF_REQUIRE(expected == combined); in ATF_TEST_CASE_BODY()
246 const config::tree combined = t1.combine(t2); in ATF_TEST_CASE_BODY() local
248 ATF_REQUIRE(t1 == combined); in ATF_TEST_CASE_BODY()
263 const config::tree combined = t1.combine(t2); in ATF_TEST_CASE_BODY() local
265 ATF_REQUIRE(t2 == combined); in ATF_TEST_CASE_BODY()
283 const config::tree combined = t1.combine(t2); in ATF_TEST_CASE_BODY() local
293 ATF_REQUIRE(expected == combined); in ATF_TEST_CASE_BODY()
322 config::tree combined = t1.combine(t2); in ATF_TEST_CASE_BODY() local
341 ATF_REQUIRE(expected == combined); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/contrib/ncurses/man/
H A Dcurs_inch.3x104 which stored a 7-bit character combined with the \fIstandout\fP attribute.
110 could be combined with characters in the window.
113 character combined with all video attributes in a \fBchtype\fP value.
/freebsd/sys/contrib/device-tree/Bindings/display/
H A Darm,pl11x.txt13 - interrupt-names: either the single entry "combined" representing a
14 combined interrupt output (CLCDINTR), or the four entries
76 interrupt-names = "combined";
H A Darm,pl11x.yaml42 - const: combined
45 combined line. If the integration only connects this line to the
148 interrupt-names = "combined";
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp120 // Set on combined index only. in setFlags()
124 // Set on combined index only. in setFlags()
128 // Set on combined index only. in setFlags()
137 // Set on combined index only. in setFlags()
141 // Set on combined index only. in setFlags()
145 // Set on combined index only. in setFlags()
149 // Set on combined index only. in setFlags()
153 // Set on combined index only. in setFlags()
157 // Set on combined index only. in setFlags()
235 // Do the access attribute and DSOLocal propagation in combined index.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Dnvidia,tegra-timer.yaml21 # Either a single combined interrupt or up to 14 individual interrupts
43 # Either a single combined interrupt or up to 6 individual interrupts
57 # Either a single combined interrupt or up to 4 individual interrupts
/freebsd/contrib/libarchive/libarchive/
H A Darchive_entry_stat.3253 The combined device number can be obtained with
264 The process of splitting the combined device number into major and
267 Some archive formats use the combined form, while other formats use
/freebsd/lib/libpmc/pmu-events/arch/arm64/fujitsu/a64fx/
H A Dpipeline.json141 …re 2 elements of the gather instructions became 2 flows because 2 elements could not be combined.",
144 …ere 2 elements of the gather instructions became 2 flows because 2 elements could not be combined."
147 …s where 2 elements of the gather instructions became 1 flow because 2 elements could be combined.",
150 …es where 2 elements of the gather instructions became 1 flow because 2 elements could be combined."
/freebsd/contrib/llvm-project/lld/docs/
H A DPartitions.rst56 referred to as a combined output file. To extract a partition from the
57 combined output file, the ``llvm-objcopy`` tool should be used together
71 # Link the combined output file.

12345678910>>...45