Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 4026) sorted by relevance

12345678910>>...162

/openbmc/qemu/disas/
H A Dm68k.c2068 #define one(x) ((unsigned int) (x) << 16) macro
2077 {"abcd", 2, one(0140400), one(0170770), "DsDd", m68000up },
2078 {"abcd", 2, one(0140410), one(0170770), "-s-d", m68000up },
2080 {"addaw", 2, one(0150300), one(0170700), "*wAd", m68000up },
2081 {"addal", 2, one(0150700), one(0170700), "*lAd", m68000up | mcfisa_a },
2083 {"addib", 4, one(0003000), one(0177700), "#b$s", m68000up },
2084 {"addiw", 4, one(0003100), one(0177700), "#w$s", m68000up },
2085 {"addil", 6, one(0003200), one(0177700), "#l$s", m68000up },
2086 {"addil", 6, one(0003200), one(0177700), "#lDs", mcfisa_a },
2088 {"addqb", 2, one(0050000), one(0170700), "Qd$b", m68000up },
[all …]
/openbmc/linux/lib/
H A Datomic64_test.c95 i, (i) + one, (i) + one); \
101 i, (i) - one, (i) - one); \
109 int one = 1; in test_atomic() local
115 TEST(, add, +=, -one); in test_atomic()
117 TEST(, sub, -=, -one); in test_atomic()
124 RETURN_FAMILY_TEST(, add_return, +=, -one); in test_atomic()
126 RETURN_FAMILY_TEST(, sub_return, -=, -one); in test_atomic()
129 FETCH_FAMILY_TEST(, fetch_add, +=, -one); in test_atomic()
131 FETCH_FAMILY_TEST(, fetch_sub, -=, -one); in test_atomic()
154 long long one = 1LL; in test_atomic64() local
[all …]
H A Dstackinit_kunit.c81 zero.one = 0; \
98 #define __static_all { .one = 0, \
104 #define __dynamic_all { .one = arg->one, \
110 #define __runtime_all var.one = 0; \
244 unsigned long one; member
252 size_t one; member
261 u8 one; member
269 char *one; member
278 u8 one; member
/openbmc/linux/tools/testing/selftests/rcutorture/doc/
H A DTREE_RCU-kconfig.txt8 CONFIG_DEBUG_OBJECTS_RCU_HEAD -- Do one.
9 CONFIG_HZ_PERIODIC -- Do one.
11 CONFIG_NO_HZ_FULL -- Do two, one with partial CPU enablement.
15 CONFIG_RCU_BOOST -- one of PREEMPT_RCU.
17 CONFIG_RCU_FANOUT_LEAF -- Do one non-default.
18 CONFIG_RCU_NOCB_CPU -- Do three, one with no rcu_nocbs CPUs, one with
19 rcu_nocbs=0, and one with all rcu_nocbs CPUs.
21 CONFIG_SMP -- Need one !SMP for PREEMPT_RCU.
23 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not.
25 RCU-bh: Do one with PREEMPT and one with !PREEMPT.
[all …]
/openbmc/linux/drivers/tty/serial/
H A Dsc16is7xx.c366 struct sc16is7xx_one *one = to_sc16is7xx_one(port, port); in sc16is7xx_port_read() local
369 regmap_read(one->regmap, reg, &val); in sc16is7xx_port_read()
376 struct sc16is7xx_one *one = to_sc16is7xx_one(port, port); in sc16is7xx_port_write() local
378 regmap_write(one->regmap, reg, val); in sc16is7xx_port_write()
384 struct sc16is7xx_one *one = to_sc16is7xx_one(port, port); in sc16is7xx_fifo_read() local
386 regmap_noinc_read(one->regmap, SC16IS7XX_RHR_REG, s->buf, rxlen); in sc16is7xx_fifo_read()
392 struct sc16is7xx_one *one = to_sc16is7xx_one(port, port); in sc16is7xx_fifo_write() local
401 regmap_noinc_write(one->regmap, SC16IS7XX_THR_REG, s->buf, to_send); in sc16is7xx_fifo_write()
407 struct sc16is7xx_one *one = to_sc16is7xx_one(port, port); in sc16is7xx_port_update() local
409 regmap_update_bits(one->regmap, reg, mask, val); in sc16is7xx_port_update()
[all …]
H A Dmax310x.c312 struct max310x_one *one = to_max310x_port(port); in max310x_port_read() local
315 regmap_read(one->regmap, reg, &val); in max310x_port_read()
322 struct max310x_one *one = to_max310x_port(port); in max310x_port_write() local
324 regmap_write(one->regmap, reg, val); in max310x_port_write()
329 struct max310x_one *one = to_max310x_port(port); in max310x_port_update() local
331 regmap_update_bits(one->regmap, reg, mask, val); in max310x_port_update()
673 struct max310x_one *one = to_max310x_port(port); in max310x_batch_write() local
675 regmap_noinc_write(one->regmap, MAX310X_THR_REG, txbuf, len); in max310x_batch_write()
680 struct max310x_one *one = to_max310x_port(port); in max310x_batch_read() local
682 regmap_noinc_read(one->regmap, MAX310X_RHR_REG, rxbuf, len); in max310x_batch_read()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dconnect4_prog.c112 int zero = 0, one = 1; in set_keepalive() local
114 if (bpf_setsockopt(ctx, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one))) in set_keepalive()
117 if (bpf_setsockopt(ctx, SOL_TCP, TCP_KEEPIDLE, &one, sizeof(one))) in set_keepalive()
119 if (bpf_setsockopt(ctx, SOL_TCP, TCP_KEEPINTVL, &one, sizeof(one))) in set_keepalive()
121 if (bpf_setsockopt(ctx, SOL_TCP, TCP_KEEPCNT, &one, sizeof(one))) in set_keepalive()
123 if (bpf_setsockopt(ctx, SOL_TCP, TCP_SYNCNT, &one, sizeof(one))) in set_keepalive()
125 if (bpf_setsockopt(ctx, SOL_TCP, TCP_USER_TIMEOUT, &one, sizeof(one))) in set_keepalive()
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-fprem.c41 unsigned int one:1; member
51 unsigned int one:1; member
63 .ieee_nan.one = 1,
71 .ieee_nan.one = 1,
79 .ieee.one = 1,
86 .ieee.one = 0,
93 .ieee.one = 0,
100 .ieee.one = 1,
178 au.ieee.negative, au.ieee.exponent, au.ieee.one, in do_fprem()
182 bu.ieee.negative, bu.ieee.exponent, bu.ieee.one, in do_fprem()
[all …]
/openbmc/sdbusplus/test/async/
H A Dtask.cpp28 static auto one() -> task<int> in TEST() function
34 auto r = co_await one(); in TEST()
52 static auto one() -> task<> in TEST() function
62 co_await (one()); in TEST()
72 EXPECT_THROW(stdexec::sync_wait(_::one()), std::logic_error); in TEST()
84 static auto one(size_t count, size_t& executed) -> task<size_t> in TEST() function
89 co_return (co_await one(count - 1, executed)) + 1; in TEST()
99 _::one(count, executed) | in TEST()
/openbmc/linux/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c79 double one = i_one, one_bump = one * 0.01; in approx() local
82 one_bump = one + MAX(one_bump, 2.0); in approx()
86 if (one == two || in approx()
87 (one > two && one <= two_bump) || in approx()
88 (two > one && two <= one_bump)) in approx()
101 unsigned long long one, bool (*eval)(int, int), unsigned long long two) in compare() argument
106 (long long)one, name_eval, (long long)two); in compare()
107 if (one > INT_MAX) { in compare()
108 printf("Miscalculation! Measurement went negative: %lld\n", (long long)one); in compare()
116 good = eval(one, two); in compare()
/openbmc/openbmc/meta-ibm/recipes-core/systemd/
H A Dsystemd_%.bbappend11 SRC_URI:append:p10bmc = " file://systemd-networkd-only-wait-for-one.conf"
14 SRC_URI:append:genesis3 = " file://systemd-networkd-only-wait-for-one.conf"
15 SRC_URI:append:sbp1 = " file://systemd-networkd-only-wait-for-one.conf"
17 SRC_URI:append:system1 = " file://systemd-networkd-only-wait-for-one.conf"
31 …emd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf"
35 …emd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf"
36 …emd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf"
38 …emd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf"
54 …workd-only-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/…
59 # Genesis3 and SBP1 uses both BMC's RGMII MACs, so wait for only one to be online
[all …]
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dtuner.rst13 Video input devices can have one or more tuners demodulating a RF
14 signal. Each tuner is associated with one or more video inputs,
21 Radio input devices have exactly one tuner with index zero, no video
34 current tuner, when there is more than one. The tuner is solely
38 device has one or more tuners.
44 Video output devices can have one or more modulators, that modulate a
46 set or video recorder. Each modulator is associated with one or more
54 Radio output devices have exactly one modulator with index zero, no
58 separate device nodes will have to be used for such hardware, one that
59 supports the tuner functionality and one that supports the modulator
[all …]
H A Dpixfmt-compressed.rst44 The decoder expects one Access Unit per buffer.
45 The encoder generates one Access Unit per buffer.
77 Exactly one output and one capture buffer must be provided for use
127 Exactly one output and one capture buffer must be provided for use with
155 - VP8 compressed video frame. The encoder generates one
156 compressed frame per buffer, and the decoder requires one
168 Exactly one output and one capture buffer must be provided for use with
177 - VP9 compressed video frame. The encoder generates one
178 compressed frame per buffer, and the decoder requires one
191 Exactly one output and one capture buffer must be provided for use with
[all …]
/openbmc/qemu/hw/acpi/
H A Dtpm.c26 *not_implemented, *pak, *tpm2, *tpm3, *pprm, *pprq, *zero, *one; in tpm_build_ppi_acpi() local
33 one = aml_int(1); in tpm_build_ppi_acpi()
141 ifctx2 = aml_if(aml_equal(function, one)); in tpm_build_ppi_acpi()
176 aml_append(ifctx3, aml_return(one)); in tpm_build_ppi_acpi()
210 ifctx3 = aml_if(aml_equal(rev, one)); in tpm_build_ppi_acpi()
214 aml_store(pprq, aml_index(tpm2, one))); in tpm_build_ppi_acpi()
227 aml_store(pprq, aml_index(tpm3, one))); in tpm_build_ppi_acpi()
280 aml_index(tpm3, one))); in tpm_build_ppi_acpi()
337 aml_append(ifctx3, aml_return(one)); in tpm_build_ppi_acpi()
353 ifctx3 = aml_if(aml_equal(rev, one)); in tpm_build_ppi_acpi()
[all …]
/openbmc/linux/tools/testing/selftests/net/
H A Dsk_bind_sendto_listen.c10 int fd1, fd2, one = 1; in main() local
27 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one))) { in main()
49 if (setsockopt(fd2, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one))) { in main()
H A Dnettest.c423 int one = 1; in set_pktinfo_v4() local
426 rc = setsockopt(sd, SOL_IP, IP_PKTINFO, &one, sizeof(one)); in set_pktinfo_v4()
435 int one = 1; in set_recvpktinfo_v6() local
438 rc = setsockopt(sd, SOL_IPV6, IPV6_RECVPKTINFO, &one, sizeof(one)); in set_recvpktinfo_v6()
447 int one = 1; in set_recverr_v4() local
450 rc = setsockopt(sd, SOL_IP, IP_RECVERR, &one, sizeof(one)); in set_recverr_v4()
459 int one = 1; in set_recverr_v6() local
462 rc = setsockopt(sd, SOL_IPV6, IPV6_RECVERR, &one, sizeof(one)); in set_recverr_v6()
526 unsigned int one = 1; in set_freebind() local
531 if (setsockopt(sd, SOL_IP, IP_FREEBIND, &one, sizeof(one))) { in set_freebind()
[all …]
/openbmc/linux/net/netfilter/ipset/
H A DKconfig32 This option adds the bitmap:ip set type support, by which one
41 This option adds the bitmap:ip,mac set type support, by which one
50 This option adds the bitmap:port set type support, by which one
59 This option adds the hash:ip set type support, by which one
69 This option adds the hash:ip,mark set type support, by which one
78 This option adds the hash:ip,port set type support, by which one
88 one can store IPv4/IPv6 address, protocol/port, and IPv4/IPv6
98 one can store IPv4/IPv6 address, protocol/port, and IPv4/IPv6
108 one can store IPv4/IPv6 address and MAC (ethernet address) pairs in a set.
117 one can store MAC (ethernet address) elements in a set.
[all …]
/openbmc/linux/drivers/usb/dwc3/
H A DKconfig66 Say 'Y' or 'M' here if you have one such device
74 Exynos5800, Exynos5433, Exynos7) ship with one DesignWare Core USB3
75 IP inside, say 'Y' or 'M' if you have one such device.
99 Say 'Y' or 'M' here if you have one such device
110 Say 'Y' or 'M' if you have one such device.
119 Say 'Y' or 'M' if you have one such device.
126 STMicroelectronics SoCs with one DesignWare Core USB3 IP
128 Say 'Y' or 'M' if you have one such device.
141 Say 'Y' or 'M' if you have one such device.
151 Say 'Y' or 'M' if you have one such device.
[all …]
/openbmc/linux/tools/testing/selftests/netfilter/
H A Dconnect_close.c53 int c, one = 1, s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); in do_accept() local
58 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)); in do_accept()
59 setsockopt(s, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one)); in do_accept()
/openbmc/linux/Documentation/devicetree/bindings/usb/
H A Dgr-udc.txt15 - interrupts : Interrupt numbers for this device. Either one interrupt number
16 for all interrupts, or one for status related interrupts, one for IN
17 endpoint related interrupts and one for OUT endpoint related interrupts.
23 number. If the property is present it typically contains one entry for
29 number. If the property is present it typically contains one entry for
/openbmc/telemetry/tests/src/
H A Dtest_conversion.cpp14 one, enumerator
37 std::make_pair<std::string_view, Enum>("one", Enum::one),
66 EXPECT_THAT(utils::toUnderlying(Enum::one), Eq(1)); in TEST_F()
73 EXPECT_THAT(enumToString(Enum::one), Eq("one")); in TEST_F()
80 EXPECT_THAT(toEnum("one"), Eq(Enum::one)); in TEST_F()
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Dsprd,pinctrl.txt6 register contains several bit fields with one bit or several bits
12 to choose one function (like: UART0) for which system, since we
13 have several systems (AP/CP/CM4) on one SoC.).
17 as one generic configuration, and maybe it will add more strange
18 global configuration in future. Then we add one "sprd,control" to
22 Moreover we recognise every fields comprising one bit or several
23 bits in one global control register as one pin, thus we should
28 register definition, and each register described one pin is used
57 register definition, and each register described one pin is used to
/openbmc/linux/Documentation/ABI/testing/
H A Ddebugfs-scmi-raw11 Each write to the entry causes one command request to be built
12 and sent while the replies are read back one message at time
29 Each write to the entry causes one command request to be built
30 and sent while the replies are read back one message at time
41 Each read gives back one message at time (receiving an EOF at
52 Each read gives back one message at time (receiving an EOF at
80 Each write to the entry causes one command request to be built
81 and sent while the replies are read back one message at time
89 one default channel.
107 Each write to the entry causes one command request to be built
[all …]
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Dmvebu-audio.txt15 (named "pll_regs") and the second one ("soc_ctrl") - for register
16 where one of exceptive I/O types (I2S or S/PDIF) is set.
23 - clocks: one or two phandles.
24 The first one is mandatory and defines the internal clock.
25 The second one is optional and defines an external clock.
/openbmc/linux/Documentation/userspace-api/media/mediactl/
H A Dmedia-types.rst144 composing must have at least two sink pads and one source
152 must have at least one sink pad and one source pad. Read
161 encoding conversion must have at least one sink pad and one
170 processing must have one sink pad and one source pad. It uses
179 at least one sink pad and one source pad, and scale the
184 scaling can be supported in one direction only). Binning and
190 capable of statistics computation must have one sink pad and
191 one source pad. It computes statistics over the frames
197 compressing video frames. Must have one sink pad and at least
198 one source pad.
[all …]

12345678910>>...162