Home
last modified time | relevance | path

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

12345678910>>...162

/openbmc/qemu/disas/
H A Dm68k.c2238 {"bgnd", 2, one(0045372), one(0177777), "", cpu32 },
3776 {"pbac", 2, one(0xf087), one(0xffbf), "Bc", m68851 },
3778 {"pbas", 2, one(0xf086), one(0xffbf), "Bc", m68851 },
3780 {"pbbc", 2, one(0xf081), one(0xffbf), "Bc", m68851 },
3782 {"pbbs", 2, one(0xf080), one(0xffbf), "Bc", m68851 },
3784 {"pbcc", 2, one(0xf08f), one(0xffbf), "Bc", m68851 },
3786 {"pbcs", 2, one(0xf08e), one(0xffbf), "Bc", m68851 },
3788 {"pbgc", 2, one(0xf08d), one(0xffbf), "Bc", m68851 },
3790 {"pbgs", 2, one(0xf08c), one(0xffbf), "Bc", m68851 },
3792 {"pbic", 2, one(0xf08b), one(0xffbf), "Bc", m68851 },
[all …]
/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.
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
21 CONFIG_SMP -- Need one !SMP for PREEMPT_RCU.
25 RCU-bh: Do one with PREEMPT and one with !PREEMPT.
26 RCU-sched: Do one with PREEMPT but not BOOST.
31 nohz_full - do at least one.
32 maxcpu -- do at least one.
[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
192 r += one; in test_atomic64()
197 r -= one; in test_atomic64()
212 r += one; in test_atomic64()
217 r -= one; in test_atomic64()
224 INIT(-one); in test_atomic64()
225 BUG_ON(atomic64_dec_if_positive(&v) != (-one - one)); in test_atomic64()
230 r += one; in test_atomic64()
[all …]
/openbmc/linux/drivers/tty/serial/
H A Dsc16is7xx.c522 mutex_lock(&one->efr_lock); in sc16is7xx_set_baud()
723 one->old_mctrl = status; in sc16is7xx_update_mlines()
746 mutex_lock(&one->efr_lock); in sc16is7xx_port_irq()
825 mutex_lock(&one->efr_lock); in sc16is7xx_tx_proc()
857 config = one->config; in sc16is7xx_reg_proc()
858 memset(&one->config, 0, sizeof(one->config)); in sc16is7xx_reg_proc()
910 one->config.ier_val |= bit; in sc16is7xx_ier_set()
929 if (one->port.state) { in sc16is7xx_ms_proc()
993 return one->old_mctrl; in sc16is7xx_get_mctrl()
1074 mutex_lock(&one->efr_lock); in sc16is7xx_set_termios()
[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()
324 regmap_write(one->regmap, reg, val); in max310x_port_write()
704 max310x_batch_read(port, one->rx_buf, rxlen); in max310x_handle_rx()
724 one->rx_buf[rxlen-1], flag); in max310x_handle_rx()
823 schedule_work(&one->tx_work); in max310x_start_tx()
883 max310x_handle_tx(&one->port); in max310x_tx_proc()
907 (one->port.mctrl & TIOCM_LOOP) ? in max310x_md_proc()
915 schedule_work(&one->md_work); in max310x_set_mctrl()
1041 one->port.rs485.delay_rts_after_send; in max310x_rs_proc()
[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,
307 INIT_FIELD(a, one), in test_fprem_pairs()
334 CARRY_INTO(b, one); in test_fprem_pairs()
[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"
16 SRC_URI:append:system1 = " file://systemd-networkd-only-wait-for-one.conf"
32 …emd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-networkd-only-wait-for-one.conf"
46 …workd-only-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/…
51 # Genesis3 and SBP1 uses both BMC's RGMII MACs, so wait for only one to be online
54 …workd-only-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/…
58 …workd-only-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/…
62 …workd-only-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/…
[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
59 supports the tuner functionality and one that supports the modulator
68 is more than one at all. The modulator is solely determined by the
[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()
/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()
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()
367 op_arg = aml_derefof(aml_index(arguments, one)); in tpm_build_ppi_acpi()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/timer/
H A Dxlnx,xps-timer.yaml38 xlnx,one-timer-only:
42 Whether only one timer is present in this block.
47 - xlnx,one-timer-only
58 xlnx,one-timer-only:
81 xlnx,one-timer-only = <0x0>;
91 xlnx,one-timer-only = <0x0>;
/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/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
88 one can store IPv4/IPv6 address, protocol/port, and IPv4/IPv6
98 one can store IPv4/IPv6 address, protocol/port, and IPv4/IPv6
117 one can store MAC (ethernet address) elements in a set.
153 one can store IPv4/IPv6 network address/prefix and
163 one can store IPv4/IPv6 network address/prefix and
[all …]
/openbmc/linux/drivers/usb/dwc3/
H A DKconfig66 Say 'Y' or 'M' here if you have one such device
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.
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.
160 Say 'Y' or 'M' if you have one such device.
170 Say 'Y' or 'M' here if you have one such device
[all …]
/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
H A Dbrcm,usb-pinmap.yaml27 description: Array of one or two GPIO pins used for input signals.
31 description: Array of input signal names, one per gpio in in-gpios.
35 description: Array of enable and mask pairs, one per gpio in-gpios.
39 description: Array of one GPIO pin used for output signals.
43 description: Array of output signal names, one per gpio in out-gpios.
47 description: Array of enable, value, changed and clear masks, one
/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/iommu/
H A Dsamsung,sysmmu.yaml23 System MMUs are in many to one relation with peripheral devices, i.e. single
24 peripheral device might have multiple System MMUs (usually one for each bus
25 master), but one System MMU can handle transactions from only one peripheral
31 * MFC has one System MMU on its left and right bus.
32 * FIMD in Exynos5420 has one System MMU for window 0 and 4, the other system MMU
34 * M2M Scalers and G2D in Exynos5420 has one System MMU on the read channel and
/openbmc/linux/Documentation/devicetree/bindings/phy/
H A Drealtek,usb3phy.yaml16 support multiple XHCI controllers. One PHY device node maps to one XHCI
21 Each XHCI maps to one USB 2.0 PHY and map one USB 3.0 PHY on some
31 Each XHCI maps to one USB 2.0 PHY and map one USB 3.0 PHY on controllers#2.
39 Each xhci maps to one USB 2.0 PHY and map one USB 3.0 PHY on controllers#0.
H A Drealtek,usb2phy.yaml16 support multiple XHCI controllers. One PHY device node maps to one XHCI
21 Each XHCI maps to one USB 2.0 PHY and map one USB 3.0 PHY on some
31 The controller#0 has one USB 2.0 PHY. The controller#1 includes two USB 2.0
39 Each XHCI maps to one USB 2.0 PHY and map one USB 3.0 PHY on controllers#2.
47 Each xhci maps to one USB 2.0 PHY and map one USB 3.0 PHY on controllers#0.
55 Each XHCI maps to one USB 2.0 PHY.
98 For one of the phys of RTD1619b SoC, the synchronous clock of the
/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/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

12345678910>>...162