Home
last modified time | relevance | path

Searched refs:t (Results 6101 – 6125 of 8709) sorted by relevance

1...<<241242243244245246247248249250>>...349

/openbmc/linux/kernel/rcu/
H A Dtree.h461 static bool rcu_preempt_need_deferred_qs(struct task_struct *t);
/openbmc/sdbusplus/
H A D.gitignore102 # having no cross-platform support, pipenv may install dependencies that don't work, or not
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-grpcio/
H A D0001-PR-1644-unscaledcycleclock-remove-RISC-V-support.patch8 Starting with Linux 6.6 [1], RDCYCLE is a privileged instruction on RISC-V and can't be used direct…
/openbmc/qemu/docs/devel/testing/
H A Dblkverify.rst49 And test.img is corrupt, its first sector is zeroed when it shouldn't be::
/openbmc/linux/arch/arm64/boot/dts/mediatek/
H A Dmt8183-kukui-kakadu.dtsi352 * The pen driver doesn't currently support driving
/openbmc/linux/drivers/usb/host/
H A Doxu210hp-hcd.c700 unsigned long t; in timer_action() local
704 t = EHCI_IAA_JIFFIES; in timer_action()
707 t = EHCI_IO_JIFFIES; in timer_action()
710 t = EHCI_ASYNC_JIFFIES; in timer_action()
714 t = EHCI_SHRINK_JIFFIES; in timer_action()
717 t += jiffies; in timer_action()
724 && t > oxu->watchdog.expires in timer_action()
727 mod_timer(&oxu->watchdog, t); in timer_action()
2980 static void oxu_watchdog(struct timer_list *t) in oxu_watchdog() argument
2982 struct oxu_hcd *oxu = from_timer(oxu, t, watchdog); in oxu_watchdog()
/openbmc/qemu/tcg/riscv/
H A Dtcg-target.c.inc1208 TCGReg t = arg1;
1210 arg2 = t;
1245 * We don't need to care for this for LE because the constant input
1482 TCGReg t;
1491 t = tmpflags & ~SETCOND_FLAGS;
1495 tcg_out_movcond_zicond(s, ret, t, val2, c_val2, val1, c_val1);
1497 tcg_out_movcond_zicond(s, ret, t, val1, c_val1, val2, c_val2);
1501 tcg_out_movcond_br2(s, cond, ret, t, TCG_REG_ZERO,
1738 * check that we don't cross pages using the address of the last
2890 for (TCGType t = TCG_TYPE_V64; t <= TCG_TYPE_V256; t++) {
[all …]
/openbmc/linux/Documentation/admin-guide/
H A Dras.rst61 they can't correct.
124 *data width*. It means that such memory module doesn't have error
154 the labels provided by the BIOS won't match the real ones.
389 controllers don't have any logic to identify the memory module, see
553 doesn't identify a single DIMM - e. g. in ``rankX`` dir;
567 .. [#f5] On some systems, the memory controller doesn't have any logic
580 directories. As this API doesn't work properly for Rambus, FB-DIMMs and
997 controller, called Intel Scalable Memory Buffer. This section doesn't
1114 However, those counters don't work with Unregistered DIMM. As the chipset
/openbmc/linux/Documentation/admin-guide/cgroup-v1/
H A Dmemory.rst83 This knob is deprecated and shouldn't be
90 This knob is deprecated and shouldn't be
271 from it for sanity of the system's memory management state. You can't forbid
320 different than user memory, since it can't be swapped out, which makes it
403 # mount -t tmpfs none /sys/fs/cgroup
405 # mount -t cgroup none /sys/fs/cgroup/memory -o memory
635 method and doesn't show 'exact' value of memory (and swap) usage, it's a fuzz
802 | | will be moved even if the task hasn't done page fault, i.e. they might |
853 OOM notification doesn't work for the root cgroup.
/openbmc/qemu/block/
H A Dvvfat.c634 struct tm* t; in fat_datetime() local
636 t = &t1; in fat_datetime()
637 localtime_r(&time,t); in fat_datetime()
639 return cpu_to_le16((t->tm_sec/2)|(t->tm_min<<5)|(t->tm_hour<<11)); in fat_datetime()
640 return cpu_to_le16((t->tm_mday)|((t->tm_mon+1)<<5)|((t->tm_year-80)<<9)); in fat_datetime()
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_maps.c1720 int map_fd, err, t, f; in test_reuseport_array() local
1754 for (t = 0; t < ARRAY_SIZE(types); t++) { in test_reuseport_array()
1755 type = types[t]; in test_reuseport_array()
/openbmc/linux/kernel/trace/
H A Dtrace_events_synth.c2215 char *type, *t; in __synth_event_show() local
2223 t = strstr(type, "__data_loc"); in __synth_event_show()
2224 if (t) { /* __data_loc belongs in format but not event desc */ in __synth_event_show()
2225 t += sizeof("__data_loc"); in __synth_event_show()
2226 type = t; in __synth_event_show()
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dtests.py316 threads = [threading.Thread(target=query_server, args=(failures,)) for t in range(100)]
318 for t in threads:
319 t.start()
321 for t in threads:
322 t.join()
/openbmc/linux/drivers/net/ethernet/marvell/
H A Dskge.c1496 static void xm_link_timer(struct timer_list *t) in xm_link_timer() argument
1498 struct skge_port *skge = from_timer(skge, t, link_timer); in xm_link_timer()
3349 static void skge_extirq(struct tasklet_struct *t) in skge_extirq() argument
3351 struct skge_hw *hw = from_tasklet(hw, t, phy_task); in skge_extirq()
3708 const struct skge_tx_desc *t = e->desc; in skge_debug_show() local
3710 t->control, t->dma_hi, t->dma_lo, t->status, in skge_debug_show()
3711 t->csum_offs, t->csum_write, t->csum_start); in skge_debug_show()
/openbmc/qemu/target/mips/tcg/
H A Dmxu_translate.c631 static inline void gen_load_mxu_gpr(TCGv t, unsigned int reg) in gen_load_mxu_gpr() argument
634 tcg_gen_movi_tl(t, 0); in gen_load_mxu_gpr()
636 tcg_gen_mov_tl(t, mxu_gpr[reg - 1]); in gen_load_mxu_gpr()
640 static inline void gen_store_mxu_gpr(TCGv t, unsigned int reg) in gen_store_mxu_gpr() argument
643 tcg_gen_mov_tl(mxu_gpr[reg - 1], t); in gen_store_mxu_gpr()
651 tcg_gen_movi_tl(t, 0); in gen_extract_mxu_gpr()
653 tcg_gen_extract_tl(t, mxu_gpr[reg - 1], ofs, len); in gen_extract_mxu_gpr()
658 static inline void gen_load_mxu_cr(TCGv t) in gen_load_mxu_cr() argument
660 tcg_gen_mov_tl(t, mxu_CR); in gen_load_mxu_cr()
663 static inline void gen_store_mxu_cr(TCGv t) in gen_store_mxu_cr() argument
[all …]
/openbmc/qemu/tcg/ppc/
H A Dtcg-target.c.inc685 #define TO(t) ((t)<<21)
700 #define TAB(t, a, b) (RT(t) | RA(a) | RB(b))
2118 int t = v1;
2120 v2 = t;
2532 * We don't support unaligned accesses on 32-bits.
2542 TCGReg t = addrlo;
2555 t = TCG_REG_R0;
2560 tcg_out_rlw(s, RLWINM, TCG_REG_R0, t, 0,
2565 tcg_out_rld(s, RLDICL, TCG_REG_R0, t,
3746 TCGReg c, TCGReg t, TCGReg f)
[all …]
/openbmc/linux/Documentation/RCU/Design/Requirements/
H A DRequirements.rst477 the early 1990s, but in 2015, don't even think about omitting
692 #. `Grace Periods Don't Partition Read-Side Critical Sections`_
693 #. `Read-Side Critical Sections Don't Partition Grace Periods`_
809 Grace Periods Don't Partition Read-Side Critical Sections
816 However, this just isn't the case: A single grace period does not
914 Read-Side Critical Sections Don't Partition Grace Periods
1778 Unfortunately, synchronize_rcu() can't do this until all of its
1779 kthreads are spawned, which doesn't happen until some time during
2052 and in some architectures the underlying ``asm`` isn't even marked
2342 applications. I don't know about you, but I would feel quite bad if a
[all …]
/openbmc/linux/Documentation/driver-api/media/drivers/
H A Dcontributors.rst9 that aren't listed below.
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Ddm-io.rst50 I/O to a large region but doesn't want to allocate a large number of individual
/openbmc/linux/Documentation/sound/soc/
H A Djack.rst25 systems won't be able to use their speaker output while a headphone is
/openbmc/linux/Documentation/sound/cards/
H A Dmixart.rst21 The driver don't work properly at all until the certain firmwares
/openbmc/linux/Documentation/devicetree/bindings/net/
H A Dfsl-tsec-phy.txt44 be chosen so it doesn't interfere with other PHYs on the bus.
/openbmc/u-boot/doc/
H A DREADME.avb2106 After flashing U-boot don't forget to update environment and write new
H A DREADME.console72 For example, you won't get the console stuff running in the Linux
/openbmc/u-boot/board/amlogic/s400/
H A DREADME42 Amlogic doesn't provide sources for the firmware and for tools needed

1...<<241242243244245246247248249250>>...349