Home
last modified time | relevance | path

Searched refs:t (Results 276 – 300 of 8444) sorted by relevance

1...<<11121314151617181920>>...338

/openbmc/qemu/tests/qemu-iotests/
H A D114.out2 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.orig backin…
3 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864
5 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backin…
6 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backin…
7 image: TEST_DIR/t.IMGFMT
11 backing file: TEST_DIR/t.IMGFMT.base
13 qemu-io: can't open device TEST_DIR/t.qcow2: Could not open backing file: Unknown driver 'foo'
17 qemu-img: Could not change the backing file to 'TEST_DIR/t.qcow2.base': backing format must be spec…
H A D110.out5 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864
6 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=t.IMGFMT.base backing_fmt=IMG…
7 image: TEST_DIR/t.IMGFMT
10 backing file: t.IMGFMT.base (actual path: TEST_DIR/t.IMGFMT.base)
17 backing file: t.IMGFMT.base (actual path: TEST_DIR/t.IMGFMT.base)
21 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=t.IMGFMT.base backing_fmt=IMG…
28 backing file: t.IMGFMT.base (cannot determine actual path)
H A D099.out2 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=131072
3 Formatting 'TEST_DIR/t.IMGFMT.compare', fmt=raw size=131072
7 blkverify:TEST_DIR/t.IMGFMT.compare:TEST_DIR/t.IMGFMT
11 blkverify:TEST_DIR/t.IMGFMT.compare:TEST_DIR/t.IMGFMT
15 json:{"driver": "IMGFMT", "file": {"image": {"driver": "file", "filename": "TEST_DIR/t.IMGFMT"}, "d…
19 …DIR/t.IMGFMT"}, "driver": "blkdebug", "inject-error.0.event": "l1_update"}}, "driver": "blkverify"…
23 blkdebug:TEST_DIR/blkdebug.conf:TEST_DIR/t.IMGFMT
27 blkdebug::TEST_DIR/t.IMGFMT
H A D079.out4 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
5 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
6 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
7 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
8 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
9 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
10 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
11 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
12 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 preallocation=metadata
13 qemu-img: TEST_DIR/t.IMGFMT: Cluster size must be a power of two between 512 and 2048k
/openbmc/linux/lib/
H A Dcrc8.c33 u8 t = msbit; in crc8_populate_msb() local
38 t = (t << 1) ^ (t & msbit ? polynomial : 0); in crc8_populate_msb()
40 table[i+j] = table[j] ^ t; in crc8_populate_msb()
54 u8 t = 1; in crc8_populate_lsb() local
59 t = (t >> 1) ^ (t & 1 ? polynomial : 0); in crc8_populate_lsb()
61 table[i+j] = table[j] ^ t; in crc8_populate_lsb()
/openbmc/linux/drivers/firewire/
H A Dcore-transaction.c65 static int try_cancel_split_timeout(struct fw_transaction *t) in try_cancel_split_timeout() argument
67 if (t->is_split_transaction) in try_cancel_split_timeout()
68 return del_timer(&t->split_timeout_timer); in try_cancel_split_timeout()
76 struct fw_transaction *t = NULL, *iter; in close_transaction() local
88 t = iter; in close_transaction()
94 if (t) { in close_transaction()
95 if (!t->with_tstamp) { in close_transaction()
96 t->callback.without_tstamp(card, rcode, NULL, 0, t->callback_data); in close_transaction()
98 t->callback.with_tstamp(card, rcode, t->packet.timestamp, response_tstamp, in close_transaction()
99 NULL, 0, t->callback_data); in close_transaction()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0003-64-bit-multilib-hack.patch12 directory, "."). We need to do this for each multilib that is configured as we don't
14 per mulitlib at this point that isn't an issue.
19 don't have such code at this point. This is something the target gcc recipe should do
32 gcc/config/aarch64/t-aarch64-linux | 8 ++++----
33 gcc/config/arc/t-multilib-linux | 4 ++--
34 gcc/config/i386/t-linux64 | 6 ++----
35 gcc/config/mips/t-linux64 | 28 ++--------------------------
36 gcc/config/riscv/t-linux | 6 +++---
37 gcc/config/rs6000/t-linux64 | 5 ++---
40 diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
[all …]
/openbmc/linux/drivers/staging/gdm724x/
H A Dgdm_usb.c83 struct usb_tx *t = NULL; in alloc_tx_struct() local
86 t = kzalloc(sizeof(*t), GFP_ATOMIC); in alloc_tx_struct()
87 if (!t) { in alloc_tx_struct()
92 t->urb = usb_alloc_urb(0, GFP_ATOMIC); in alloc_tx_struct()
96 t->buf = kmalloc(len, GFP_ATOMIC); in alloc_tx_struct()
97 if (!t->urb || !t->buf) { in alloc_tx_struct()
104 if (t) { in alloc_tx_struct()
105 usb_free_urb(t->urb); in alloc_tx_struct()
106 kfree(t->buf); in alloc_tx_struct()
107 kfree(t); in alloc_tx_struct()
[all …]
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventoryTableProcessors.vue2 <page-section :section-title="$t('pageInventory.processors')">
28 :empty-text="$t('global.table.emptyMessage')"
29 :empty-filtered-text="$t('global.table.emptySearchMessage')"
67 {{ $t('global.status.on') }}
69 <span v-else> {{ $t('global.status.off') }} </span>
80 <dt>{{ $t('pageInventory.table.name') }}:</dt>
83 <dt>{{ $t('pageInventory.table.partNumber') }}:</dt>
86 <dt>{{ $t('pageInventory.table.serialNumber') }}:</dt>
89 <dt>{{ $t('pageInventory.table.sparePartNumber') }}:</dt>
92 <dt>{{ $t('pageInventory.table.model') }}:</dt>
[all …]
/openbmc/linux/drivers/ata/
H A Dpata_ali.c170 static void ali_program_modes(struct ata_port *ap, struct ata_device *adev, struct ata_timing *t, u… in ali_program_modes() argument
180 if (t != NULL) { in ali_program_modes()
181 t->setup = clamp_val(t->setup, 1, 8) & 7; in ali_program_modes()
182 t->act8b = clamp_val(t->act8b, 1, 8) & 7; in ali_program_modes()
183 t->rec8b = clamp_val(t->rec8b, 1, 16) & 15; in ali_program_modes()
184 t->active = clamp_val(t->active, 1, 8) & 7; in ali_program_modes()
185 t->recover = clamp_val(t->recover, 1, 16) & 15; in ali_program_modes()
187 pci_write_config_byte(pdev, cas, t->setup); in ali_program_modes()
188 pci_write_config_byte(pdev, cbt, (t->act8b << 4) | t->rec8b); in ali_program_modes()
189 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover); in ali_program_modes()
[all …]
/openbmc/linux/include/linux/sched/
H A Dtask.h115 static inline struct task_struct *get_task_struct(struct task_struct *t) in get_task_struct() argument
117 refcount_inc(&t->usage); in get_task_struct()
118 return t; in get_task_struct()
121 extern void __put_task_struct(struct task_struct *t);
124 static inline void put_task_struct(struct task_struct *t) in put_task_struct() argument
126 if (!refcount_dec_and_test(&t->usage)) in put_task_struct()
137 __put_task_struct(t); in put_task_struct()
162 call_rcu(&t->rcu, __put_task_struct_rcu_cb); in put_task_struct()
167 static inline void put_task_struct_many(struct task_struct *t, int nr) in DEFINE_FREE()
169 if (refcount_sub_and_test(nr, &t->usage)) in DEFINE_FREE()
[all …]
H A Dcputime.h12 extern bool task_cputime(struct task_struct *t,
14 extern u64 task_gtime(struct task_struct *t);
16 static inline bool task_cputime(struct task_struct *t, in task_cputime() argument
19 *utime = t->utime; in task_cputime()
20 *stime = t->stime; in task_cputime()
24 static inline u64 task_gtime(struct task_struct *t) in task_gtime() argument
26 return t->gtime; in task_gtime()
31 static inline void task_cputime_scaled(struct task_struct *t, in task_cputime_scaled() argument
35 *utimescaled = t->utimescaled; in task_cputime_scaled()
36 *stimescaled = t->stimescaled; in task_cputime_scaled()
[all …]
/openbmc/linux/tools/accounting/
H A Dprocacct.c201 #define average_ms(t, c) (t / 1000000ULL / (c ? c : 1)) argument
203 static void print_procacct(struct taskstats *t) in print_procacct() argument
208 , t->version >= 12 ? (t->ac_flag & AGROUP ? 'P' : 'T') : '?' in print_procacct()
209 , (unsigned long)t->ac_pid in print_procacct()
210 , (unsigned long)(t->version >= 12 ? t->ac_tgid : 0) in print_procacct()
211 , (unsigned long)t->ac_uid in print_procacct()
212 , (unsigned long long)t->ac_etime in print_procacct()
213 , (unsigned long long)(t->version >= 12 ? t->ac_tgetime : 0) in print_procacct()
214 , (unsigned long long)(t->ac_utime+t->ac_stime) in print_procacct()
215 , (unsigned long long)t->hiwater_vm in print_procacct()
[all …]
/openbmc/linux/drivers/mmc/core/
H A Dmmc_test.c833 struct mmc_test_area *t = &test->area; in mmc_test_nonblock_transfer() local
834 struct scatterlist *sg = t->sg; in mmc_test_nonblock_transfer()
835 struct scatterlist *sg_areq = t->sg_areq; in mmc_test_nonblock_transfer()
849 mmc_test_prepare_mrq(test, mrq, sg, t->sg_len, dev_addr, in mmc_test_nonblock_transfer()
850 t->blocks, 512, write); in mmc_test_nonblock_transfer()
860 dev_addr += t->blocks; in mmc_test_nonblock_transfer()
1386 struct mmc_test_area *t = &test->area; in mmc_test_area_map() local
1390 t->blocks = sz >> 9; in mmc_test_area_map()
1393 err = mmc_test_map_sg_max_scatter(t->mem, sz, t->sg, in mmc_test_area_map()
1394 t->max_segs, t->max_seg_sz, in mmc_test_area_map()
[all …]
/openbmc/linux/kernel/
H A Dsignal.c69 static void __user *sig_handler(struct task_struct *t, int sig) in sig_handler() argument
71 return t->sighand->action[sig - 1].sa.sa_handler; in sig_handler()
81 static bool sig_task_ignored(struct task_struct *t, int sig, bool force) in sig_task_ignored() argument
85 handler = sig_handler(t, sig); in sig_task_ignored()
88 if (unlikely(is_global_init(t) && sig_kernel_only(sig))) in sig_task_ignored()
91 if (unlikely(t->signal->flags & SIGNAL_UNKILLABLE) && in sig_task_ignored()
96 if (unlikely((t->flags & PF_KTHREAD) && in sig_task_ignored()
103 static bool sig_ignored(struct task_struct *t, int sig, bool force) in sig_ignored() argument
110 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig)) in sig_ignored()
118 if (t->ptrace && sig != SIGKILL) in sig_ignored()
[all …]
/openbmc/qemu/include/exec/
H A Dhelper-head.h.inc28 #define dh_alias(t) glue(dh_alias_, t)
44 #define dh_ctype(t) dh_ctype_##t
59 /* We can't use glue() here because it falls foul of C preprocessor
67 #define dh_retvar_decl0(t) glue(dh_retvar_decl0_, dh_alias(t))
75 #define dh_retvar_decl(t) glue(dh_retvar_decl_, dh_alias(t))
83 #define dh_retvar(t) glue(dh_retvar_, dh_alias(t))
99 #define dh_typecode(t) dh_typecode_##t
107 #define dh_callflag(t) glue(dh_callflag_, dh_alias(t))
109 #define dh_typemask(t, n) (dh_typecode(t) << (n * 3))
111 #define dh_arg(t, n) \
[all …]
/openbmc/linux/fs/
H A Dutimes.c237 struct old_utimbuf32 __user *, t) in SYSCALL_DEFINE2()
241 if (t) { in SYSCALL_DEFINE2()
242 if (get_user(tv[0].tv_sec, &t->actime) || in SYSCALL_DEFINE2()
243 get_user(tv[1].tv_sec, &t->modtime)) in SYSCALL_DEFINE2()
248 return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0); in SYSCALL_DEFINE2()
252 …2, unsigned int, dfd, const char __user *, filename, struct old_timespec32 __user *, t, int, flags) in SYSCALL_DEFINE4() argument
256 if (t) { in SYSCALL_DEFINE4()
257 if (get_old_timespec32(&tv[0], &t[0]) || in SYSCALL_DEFINE4()
258 get_old_timespec32(&tv[1], &t[1])) in SYSCALL_DEFINE4()
264 return do_utimes(dfd, filename, t ? tv : NULL, flags); in SYSCALL_DEFINE4()
[all …]
/openbmc/qemu/tests/tcg/riscv64/
H A Dtest-fcvtmod.c293 const fp64_fcvt_fcvtmod_testcase_t *t = &tests[i]; in run_fcvtmod_tests() local
295 act_fcvt = do_fcvt_w_d(t->inp_lu, &act_fcvt_fflags); in run_fcvtmod_tests()
296 int fcvt_correct = act_fcvt == t->exp_fcvt && in run_fcvtmod_tests()
297 act_fcvt_fflags == t->exp_fcvt_fflags; in run_fcvtmod_tests()
298 act_fcvtmod = do_fcvtmod_w_d(t->inp_lu, &act_fcvtmod_fflags); in run_fcvtmod_tests()
299 int fcvtmod_correct = act_fcvtmod == t->exp_fcvtmod && in run_fcvtmod_tests()
300 act_fcvtmod_fflags == t->exp_fcvtmod_fflags; in run_fcvtmod_tests()
306 printf("Test %zu (%s) failed!\n", i, t->name); in run_fcvtmod_tests()
308 double fpr = do_fmv_d_x(t->inp_lu); in run_fcvtmod_tests()
309 printf("inp_lu: 0x%016lx == %lf\n", t->inp_lu, fpr); in run_fcvtmod_tests()
[all …]
/openbmc/linux/net/6lowpan/
H A Ddebugfs.c69 struct lowpan_iphc_ctx_table *t = in lowpan_ctx_plen_set() local
75 spin_lock_bh(&t->lock); in lowpan_ctx_plen_set()
77 spin_unlock_bh(&t->lock); in lowpan_ctx_plen_set()
85 struct lowpan_iphc_ctx_table *t = in lowpan_ctx_plen_get() local
88 spin_lock_bh(&t->lock); in lowpan_ctx_plen_get()
90 spin_unlock_bh(&t->lock); in lowpan_ctx_plen_get()
100 struct lowpan_iphc_ctx_table *t = in lowpan_ctx_pfx_show() local
103 spin_lock_bh(&t->lock); in lowpan_ctx_pfx_show()
113 spin_unlock_bh(&t->lock); in lowpan_ctx_pfx_show()
130 struct lowpan_iphc_ctx_table *t = in lowpan_ctx_pfx_write() local
[all …]
/openbmc/linux/include/linux/
H A Dcb710.h51 #define CB710_PORT_ACCESSORS(t) \ argument
52 static inline void cb710_write_port_##t(struct cb710_slot *slot, \
53 unsigned port, u##t value) \
55 iowrite##t(value, slot->iobase + port); \
58 static inline u##t cb710_read_port_##t(struct cb710_slot *slot, \
61 return ioread##t(slot->iobase + port); \
64 static inline void cb710_modify_port_##t(struct cb710_slot *slot, \
65 unsigned port, u##t set, u##t clear) \
67 iowrite##t( \
68 (ioread##t(slot->iobase + port) & ~clear)|set, \
/openbmc/qemu/rust/qemu-api/src/
H A Ddefinitions.rs70 ($t:ty) => {
72 name: <$t as $crate::definitions::ObjectImpl>::TYPE_NAME.as_ptr(),
73 parent: if let Some(pname) = <$t as $crate::definitions::ObjectImpl>::PARENT_TYPE_NAME {
78 instance_size: ::core::mem::size_of::<$t>(),
79 instance_align: ::core::mem::align_of::<$t>(),
80 instance_init: <$t as $crate::definitions::ObjectImpl>::INSTANCE_INIT,
81 instance_post_init: <$t as $crate::definitions::ObjectImpl>::INSTANCE_POST_INIT,
82 instance_finalize: <$t as $crate::definitions::ObjectImpl>::INSTANCE_FINALIZE,
83 abstract_: <$t as $crate::definitions::ObjectImpl>::ABSTRACT,
84 class_size: ::core::mem::size_of::<<$t as $crate::definitions::ObjectImpl>::Class>(),
[all …]
/openbmc/linux/drivers/misc/eeprom/
H A Deeprom_93xx46.c108 struct spi_transfer t[2] = { { 0 } }; in eeprom_93xx46_read() local
132 t[0].tx_buf = (char *)&cmd_addr; in eeprom_93xx46_read()
133 t[0].len = 2; in eeprom_93xx46_read()
134 t[0].bits_per_word = bits; in eeprom_93xx46_read()
135 spi_message_add_tail(&t[0], &m); in eeprom_93xx46_read()
137 t[1].rx_buf = buf; in eeprom_93xx46_read()
138 t[1].len = count; in eeprom_93xx46_read()
139 t[1].bits_per_word = 8; in eeprom_93xx46_read()
140 spi_message_add_tail(&t[1], &m); in eeprom_93xx46_read()
168 struct spi_transfer t; in eeprom_93xx46_ew() local
[all …]
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Drdonly_maps.c45 const struct rdonly_map_subtest *t = &subtests[i]; in test_rdonly_maps() local
47 if (!test__start_subtest(t->subtest_name)) in test_rdonly_maps()
50 prog = bpf_object__find_program_by_name(obj, t->prog_name); in test_rdonly_maps()
52 t->prog_name)) in test_rdonly_maps()
74 "prog '%s' didn't run?\n", t->prog_name)) in test_rdonly_maps()
76 if (CHECK(bss.iters != t->exp_iters, "check_iters", in test_rdonly_maps()
78 t->prog_name, bss.iters, t->exp_iters)) in test_rdonly_maps()
80 if (CHECK(bss.sum != t->exp_sum, "check_sum", in test_rdonly_maps()
82 t->prog_name, bss.sum, t->exp_sum)) in test_rdonly_maps()
/openbmc/linux/drivers/spi/
H A Dspi-ar934x.c82 struct spi_transfer *t = NULL; in ar934x_spi_transfer_one_message() local
93 list_for_each_entry(t, &m->transfers, transfer_list) { in ar934x_spi_transfer_one_message()
94 if (t->bits_per_word >= 8 && t->bits_per_word < 32) in ar934x_spi_transfer_one_message()
95 bpw = t->bits_per_word >> 3; in ar934x_spi_transfer_one_message()
99 if (t->speed_hz) in ar934x_spi_transfer_one_message()
100 div = ar934x_spi_clk_div(sp, t->speed_hz); in ar934x_spi_transfer_one_message()
114 for (trx_done = 0; trx_done < t->len; trx_done += bpw) { in ar934x_spi_transfer_one_message()
115 trx_cur = t->len - trx_done; in ar934x_spi_transfer_one_message()
118 else if (list_is_last(&t->transfer_list, &m->transfers)) in ar934x_spi_transfer_one_message()
121 if (t->tx_buf) { in ar934x_spi_transfer_one_message()
[all …]
/openbmc/linux/drivers/watchdog/
H A Dit87_wdt.c165 static void _wdt_update_timeout(unsigned int t) in _wdt_update_timeout() argument
172 if (t <= max_units) in _wdt_update_timeout()
175 t /= 60; in _wdt_update_timeout()
181 superio_outb(t, WDTVALLSB); in _wdt_update_timeout()
183 superio_outb(t >> 8, WDTVALMSB); in _wdt_update_timeout()
186 static int wdt_update_timeout(unsigned int t) in wdt_update_timeout() argument
195 _wdt_update_timeout(t); in wdt_update_timeout()
201 static int wdt_round_time(int t) in wdt_round_time() argument
203 t += 59; in wdt_round_time()
204 t -= t % 60; in wdt_round_time()
[all …]

1...<<11121314151617181920>>...338