Home
last modified time | relevance | path

Searched full:multiple (Results 1 – 25 of 5619) sorted by relevance

12345678910>>...225

/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/iftop/iftop/
H A Diftop-1.0-gcc10.patch6 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of…
7 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of…
8 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of…
9 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of…
10 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:37: multiple definition of…
11 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:40: multiple definition of…
12 /usr/bin/ld: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:41: multiple definition of…
13 /usr/bin/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `scree…
14 /usr/bin/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaks…
15 /usr/bin/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peakr…
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.mpc83xx.ddrecc9 we'll be injecting: single/multiple bit etc.)
14 IMPORTANT NOTICE: enabling injecting multiple-bit errors is potentially
16 should be taken when enabling the injection of multiple-bit errors: it is only
18 the 'ecc testdw' 'ecc testword' command (see example 'Injecting Multiple-Bit
19 Errors' below). In particular, when you simply set the multiple-bit errors in
56 Multiple Memory Errors: 0
57 Multiple-Bit Error: 0
78 Injecting Multiple-Bit Errors
97 Multiple Memory Errors: 0
98 Multiple-Bit Error: 1
[all …]
/OK3568_Linux_fs/kernel/Documentation/staging/
H A Dcrc32.rst6 and the whole thing (message+CRC) is a multiple of the given
37 appropriate multiple of the divisor to subtract to being the remainder
42 throw the quotient bit away, but subtract the appropriate multiple of
49 multiple = remainder & 0x80000000 ? CRCPOLY : 0;
50 remainder = (remainder << 1 | next_input_bit()) ^ multiple;
70 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
71 remainder = (remainder << 1) ^ multiple;
78 multiple = (remainder & 1) ? CRCPOLY : 0;
79 remainder = (remainder >> 1) ^ multiple;
94 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
[all …]
/OK3568_Linux_fs/kernel/Documentation/sound/
H A Dalsa-configuration.rst34 specify multiple values for the option separated by commas.
53 This option takes multiple strings.
144 This module supports multiple cards. It does not support autoprobe, so
178 This module supports multiple cards, autoprobe and PnP.
192 This module supports multiple cards. It does not support autoprobe
206 This module supports multiple cards.
228 This module supports multiple cards, autoprobe and PnP.
237 This module supports multiple cards.
250 This module supports multiple cards, autoprobe and PnP.
262 This module supports multiple cards.
[all …]
/OK3568_Linux_fs/kernel/sound/pci/ctxfi/
H A Dxfi.c24 static unsigned int multiple = 2; variable
27 MODULE_PARM_DESC(multiple, "Rate multiplier (default=2)");
28 module_param(multiple, uint, 0444);
83 if ((multiple != 1) && (multiple != 2) && (multiple != 4)) { in ct_card_probe()
84 dev_err(card->dev, "Invalid multiple value %u!!!\n", in ct_card_probe()
85 multiple); in ct_card_probe()
87 "The valid values for multiple are 1, 2 and 4, Value 2 is assumed.\n"); in ct_card_probe()
88 multiple = 2; in ct_card_probe()
90 err = ct_atc_create(card, pci, reference_rate, multiple, in ct_card_probe()
/OK3568_Linux_fs/buildroot/package/trinity/
H A D0001-Fix-build-with-GCC-10.patch7 /usr/bin/ld: debug.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/log…
8 /usr/bin/ld: log-files.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include…
9 /usr/bin/ld: log.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/logfi…
10 /usr/bin/ld: main.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/logf…
11 /usr/bin/ld: output.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/lo…
12 /usr/bin/ld: params.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/lo…
13 /usr/bin/ld: shm.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/logfi…
14 /usr/bin/ld: trinity.o:include/logfile.h:8: multiple definition of `mainlogfile'; child.o:include/l…
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iommu/
H A Diommu.txt22 * Provide address space isolation between multiple contexts.
29 IOMMUs can be single-master or multiple-master. Single-master IOMMU devices
30 typically have a fixed association to the master device, whereas multiple-
48 This may also apply to multiple master IOMMU devices that do not allow the
52 - #iommu-cells = <1>: Multiple master IOMMU devices may need to be configured
71 have multiple master interfaces (to one or more IOMMU devices).
91 - pasid-num-bits: Some masters support multiple address spaces for DMA, by
122 Multiple-master IOMMU with fixed associations:
125 /* multiple-master IOMMU */
150 Multiple-master IOMMU:
[all …]
/OK3568_Linux_fs/u-boot/drivers/mtd/ubi/
H A Dcrc32.c254 * and the whole thing (message+CRC) is a multiple of the given
283 * to the current remainder. Then you figure out the appropriate multiple
289 * throw the quotient bit away, but subtract the appropriate multiple of
295 * multiple = remainder & 0x80000000 ? CRCPOLY : 0;
296 * remainder = (remainder << 1 | next_input_bit()) ^ multiple;
315 * multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
316 * remainder = (remainder << 1) ^ multiple;
321 * multiple = (remainder & 1) ? CRCPOLY : 0;
322 * remainder = (remainder >> 1) ^ multiple;
334 * multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/broadwellx/
H A Dfloating-point.json27 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
36 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
45 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
54 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
63 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
72 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
81 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
90 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
99 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
108 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
/OK3568_Linux_fs/kernel/Documentation/power/
H A Dcharger-manager.rst9 and where each battery may have multiple chargers attached and the userland
10 wants to look at the aggregated information of the multiple chargers.
14 represents an independent battery with chargers. If there are multiple
16 the system may need multiple instances of Charger Manager.
23 * Support for multiple chargers (e.g., a device with USB, AC, and solar panels)
24 A system may have multiple chargers (or power sources) and some of
28 aggregates charger-related information from multiple sources and
67 if there are multiple batteries. If there are multiple batteries, the
68 multiple instances of Charger Manager share the same charger_global_desc
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/broadwellde/
H A Dfloating-point.json27 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
36 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
45 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
54 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
63 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
72 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
81 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
90 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
99 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
108 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
/OK3568_Linux_fs/kernel/Documentation/filesystems/nfs/
H A Dpnfs.rst6 reference multiple devices, each of which can reference multiple data servers.
7 Each data server can be referenced by multiple devices. Each device
8 can be referenced by multiple layouts. To keep all of this straight,
40 justification, but seems reasonable given that we can have multiple
41 deviceid's per filesystem, and multiple filesystems per nfs_client.
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/broadwell/
H A Dfloating-point.json32 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
41 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
50 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
59 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
68 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
77 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
86 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
95 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
104 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
113 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
/OK3568_Linux_fs/buildroot/package/dillo/
H A D0004-fix-build-with-gcc-10.patch7 …st/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid_common.h:44: multiple definition of `dp…
8 …st/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid_common.h:44: multiple definition of `dp…
9 …st/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid_common.h:44: multiple definition of `dp…
10 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:64: multiple definition of `so…
11 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:61: multiple definition of `se…
12 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:58: multiple definition of `dp…
13 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:55: multiple definition of `nu…
14 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:52: multiple definition of `nu…
15 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:31: multiple definition of `sr…
16 …root-test/scripts/instance-0/output-1/build/dillo-3.0.5/dpid/dpid.h:28: multiple definition of `sr…
[all …]
/OK3568_Linux_fs/kernel/Documentation/vm/
H A Dpage_frags.rst8 which resides within a 0 or higher order compound page. Multiple
20 and tracks allows multiple calls to make use of a cached page. The
21 advantage to doing this is that multiple calls to get_page can be avoided
40 was implemented. It allows for freeing multiple references from a single
42 cleaning up the multiple references that were added to a page in order to
/OK3568_Linux_fs/kernel/drivers/crypto/nx/
H A Dnx-842.c18 * to be specifically aligned, to be a specific multiple in length, and within
43 * hardware decompressor if the original input buffer length is not a multiple
177 if (slen % c->multiple) in compress()
178 adj_slen = round_up(slen, c->multiple); in compress()
202 if (dlen % c->multiple) in compress()
203 dlen = round_down(dlen, c->multiple); in compress()
208 dlen = round_down(dlen, c->multiple); in compress()
279 add_header = (p.iremain % c.multiple || in nx842_crypto_compress()
283 p.oremain % c.multiple || in nx842_crypto_compress()
310 pr_err("Internal error: No header but multiple groups\n"); in nx842_crypto_compress()
[all …]
H A Dnx-842.h20 * Each DDE buffer size is a multiple of 32 bytes (except the last)
21 * The last DDE buffer size is a multiple of 8 bytes
116 * @multiple: All buffer lengths should be a multiple of this
124 * assumed that compressed data will always adhere to the multiple
133 int multiple; member
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/skylake/
H A Dfloating-point.json8 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
17 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
26 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
35 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
44 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
53 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
/OK3568_Linux_fs/kernel/drivers/staging/greybus/
H A Dfw-core.c83 /* Disallow multiple Firmware Management CPorts */ in gb_fw_core_probe()
86 "multiple management CPorts found\n"); in gb_fw_core_probe()
104 /* Disallow multiple Firmware Download CPorts */ in gb_fw_core_probe()
107 "multiple download CPorts found\n"); in gb_fw_core_probe()
123 /* Disallow multiple SPI CPorts */ in gb_fw_core_probe()
126 "multiple SPI CPorts found\n"); in gb_fw_core_probe()
142 /* Disallow multiple CAP CPorts */ in gb_fw_core_probe()
144 dev_err(&bundle->dev, "multiple Authentication CPorts found\n"); in gb_fw_core_probe()
/OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-intro.rst89 - Support multiple build and target operating systems (e.g. Cygwin, the
101 - Be easy to use BitBake to collaborate between multiple projects for
492 to manage multiple ``.bb`` files. Clearly there needs to be a way to
496 you to express recipe preferences when multiple recipes provide the same
497 functionality, or when there are multiple versions of a recipe.
516 individual targets when you specify multiple targets. For example,
551 Executing a Multiple Configuration Build
554 BitBake is able to build multiple images or packages using a single
556 (multiple configuration builds). Each target, in this scenario, is
559 To accomplish a multiple configuration build, you must define each
[all …]
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dbonding.rst28 multiple network interfaces into a single logical "bonded" interface.
50 3.1.2 Configuring Multiple Bonds with Sysconfig
53 3.2.2 Configuring Multiple Bonds with Initscripts
55 3.3.1 Configuring Multiple Bonds Manually
71 7.2 Configuring Multiple ARP Targets
85 11.2 High Availability in a Multiple Switch Topology
86 11.2.1 HA Bonding Mode Selection for Multiple Switch Topology
87 11.2.2 HA Link Monitoring for Multiple Switch Topology
93 12.2 Maximum Throughput in a Multiple Switch Topology
94 12.2.1 MT Bonding Mode Selection for Multiple Switch Topology
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dpoly-int.h1665 /* Return a value that is a multiple of both A and B. This will be the
1666 least common multiple for some indeterminate values but necessarily
1684 /* Return a value that is a multiple of both A and B, asserting that
1685 such a value exists. The result will be the least common multiple
1689 explaining why we know the values have a common multiple (which might
1754 /* Return true if we can align VALUE up to the smallest multiple of
1768 /* Return true if we can align VALUE down to the largest multiple of
1817 the smallest multiple of ALIGN that is >= VALUE.
1821 be a multiple of ALIGN. */
1832 the largest multiple of ALIGN that is <= VALUE.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dpoly-int.h1665 /* Return a value that is a multiple of both A and B. This will be the
1666 least common multiple for some indeterminate values but necessarily
1684 /* Return a value that is a multiple of both A and B, asserting that
1685 such a value exists. The result will be the least common multiple
1689 explaining why we know the values have a common multiple (which might
1754 /* Return true if we can align VALUE up to the smallest multiple of
1768 /* Return true if we can align VALUE down to the largest multiple of
1817 the smallest multiple of ALIGN that is >= VALUE.
1821 be a multiple of ALIGN. */
1832 the largest multiple of ALIGN that is <= VALUE.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A DAliases.html30 <link href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" rel="previous" title="M…
67 Previous: <a href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" accesskey="p" re…
176 Previous: <a href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" accesskey="p" re…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/
H A DAliases.html30 <link href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" rel="previous" title="M…
67 Previous: <a href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" accesskey="p" re…
176 Previous: <a href="Multiple-Extension-Languages.html#Multiple-Extension-Languages" accesskey="p" re…

12345678910>>...225