Home
last modified time | relevance | path

Searched refs:t (Results 701 – 725 of 8705) sorted by relevance

1...<<21222324252627282930>>...349

/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dqom_type_info.py452 for t in types:
453 for m in files.matches_of_type(t):
455 yield from (m for t in types
534 typedefs = [(t,self.allfiles.find_matches(SimpleTypedefMatch, t))
536 for t,tds in typedefs:
586 for t,tds in typedefs:
614 typedefs = [(t,self.allfiles.find_matches(SimpleTypedefMatch, t))
616 for t,tds in typedefs:
671 for t,tds in typedefs:
966 return [t for t in type_infos(file) if t.is_full()]
[all …]
/openbmc/pldm/requester/test/
H A Dmeson.build7 foreach t : tests
9 t,
11 t.underscorify(),
12 t + '.cpp',
/openbmc/u-boot/drivers/serial/
H A Dserial_sti_asc.c83 int t, mode = 1; in _sti_asc_serial_setbrg() local
87 t = BAUDRATE_VAL_M0(9600); in _sti_asc_serial_setbrg()
91 t = BAUDRATE_VAL_M1(19200); in _sti_asc_serial_setbrg()
94 t = BAUDRATE_VAL_M1(38400); in _sti_asc_serial_setbrg()
97 t = BAUDRATE_VAL_M1(57600); in _sti_asc_serial_setbrg()
103 t = BAUDRATE_VAL_M1(115200); in _sti_asc_serial_setbrg()
112 writel(t, &uart->baudrate); in _sti_asc_serial_setbrg()
/openbmc/webui-vue/src/components/Global/
H A DSearch.vue4 :label="$t('global.form.search')"
19 :aria-label="$t('global.form.search')"
28 :title="$t('global.ariaLabel.clearSearch')"
32 <span class="sr-only">{{ $t('global.ariaLabel.clearSearch') }}</span>
52 return i18n.global.t('global.form.search');
58 $t: useI18n().t,
/openbmc/linux/mm/damon/
H A Ddbgfs.c333 struct damon_target *t; in sprint_target_ids() local
341 id = pid_vnr(t->pid); in sprint_target_ids()
467 put_pid(t->pid); in dbgfs_set_targets()
468 damon_destroy_target(t); in dbgfs_set_targets()
472 t = damon_new_target(); in dbgfs_set_targets()
473 if (!t) { in dbgfs_set_targets()
481 t->pid = pids[i]; in dbgfs_set_targets()
552 struct damon_target *t; in sprint_init_regions() local
604 struct damon_target *t; in add_init_region() local
633 struct damon_target *t; in set_init_regions() local
[all …]
/openbmc/linux/tools/perf/
H A Dbuiltin-record.c1103 int t; in record__free_thread_data() local
1109 for (t = 0; t < rec->nr_threads; t++) { in record__free_thread_data()
1195 for (t = 0; t < rec->nr_threads; t++) in record__alloc_thread_data()
1198 for (t = 0; t < rec->nr_threads; t++) { in record__alloc_thread_data()
2229 for (t = 1; t < nr_threads; t++) { in record__start_threads()
2275 for (t = 1; t < rec->nr_threads; t++) in record__stop_threads()
2278 for (t = 0; t < rec->nr_threads; t++) { in record__stop_threads()
2302 for (t = 0; t < rec->nr_threads; t++) in record__waking()
3568 for (t = 0; t < nr_threads; t++) in record__free_thread_masks()
3584 for (t = 0; t < nr_threads; t++) { in record__alloc_thread_masks()
[all …]
/openbmc/webui-vue/src/store/modules/Operations/
H A DFactoryResetStore.js16 i18n.global.t('pageFactoryReset.toast.resetToDefaultsSuccess'),
21 i18n.global.t('pageFactoryReset.toast.resetToDefaultsError'),
30 .then(() => i18n.global.t('pageFactoryReset.toast.resetBiosSuccess'))
34 i18n.global.t('pageFactoryReset.toast.resetBiosError'),
/openbmc/qemu/scripts/
H A Ddecodetree.py252 for t in arg.types:
253 if t != 'int':
826 return t
872 for t in toks:
960 t = 'int'
966 types.append(t)
1065 for t in toks:
1068 tt = t[1:]
1079 tt = t[1:]
1090 tt = t[1:]
[all …]
/openbmc/qemu/tcg/
H A Dtcg-op-vec.c320 tcg_gen_not_vec(0, t, b); in tcg_gen_andc_vec()
322 tcg_temp_free_vec(t); in tcg_gen_andc_vec()
332 tcg_gen_not_vec(0, t, b); in tcg_gen_orc_vec()
333 tcg_gen_or_vec(0, r, a, t); in tcg_gen_orc_vec()
334 tcg_temp_free_vec(t); in tcg_gen_orc_vec()
440 tcg_temp_free_vec(t); in tcg_gen_abs_vec()
612 tcg_gen_umin_vec(vece, t, t, a); in tcg_gen_usadd_vec()
615 tcg_temp_free_vec(t); in tcg_gen_usadd_vec()
635 tcg_temp_free_vec(t); in tcg_gen_ussub_vec()
762 tcg_temp_free_vec(t); in tcg_gen_bitsel_vec()
[all …]
/openbmc/linux/drivers/net/wireless/intersil/p54/
H A Dp54spi.c49 struct spi_transfer t[2]; in p54spi_spi_read() local
57 memset(t, 0, sizeof(t)); in p54spi_spi_read()
59 t[0].tx_buf = &addr; in p54spi_spi_read()
60 t[0].len = sizeof(addr); in p54spi_spi_read()
63 t[1].rx_buf = buf; in p54spi_spi_read()
64 t[1].len = len; in p54spi_spi_read()
82 memset(t, 0, sizeof(t)); in p54spi_spi_write()
84 t[0].tx_buf = &addr; in p54spi_spi_write()
85 t[0].len = sizeof(addr); in p54spi_spi_write()
88 t[1].tx_buf = buf; in p54spi_spi_write()
[all …]
/openbmc/linux/arch/sparc/kernel/
H A Dkgdb_32.c49 struct thread_info *t = task_thread_info(p); in sleeping_thread_to_gdb_regs() local
55 gdb_regs[GDB_G6] = (unsigned long) t; in sleeping_thread_to_gdb_regs()
59 gdb_regs[GDB_SP] = t->ksp; in sleeping_thread_to_gdb_regs()
62 win = (struct reg_window32 *) t->ksp; in sleeping_thread_to_gdb_regs()
73 gdb_regs[GDB_PSR] = t->kpsr; in sleeping_thread_to_gdb_regs()
74 gdb_regs[GDB_WIM] = t->kwim; in sleeping_thread_to_gdb_regs()
76 gdb_regs[GDB_PC] = t->kpc; in sleeping_thread_to_gdb_regs()
77 gdb_regs[GDB_NPC] = t->kpc + 4; in sleeping_thread_to_gdb_regs()
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libxml/
H A Dlibxml-libxml-perl_2.0134.bb61 rm -rf ${B}/t/pod.t
63 rm -rf ${B}/t/pod-files-presence.t
67 cp -r ${B}/t/data ${D}${PTEST_PATH}/t/
68 cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hdf5/files/
H A D0001-cmake-remove-build-flags.patch6 Don't generate the build host related info and reemove the build flags
74 - fprintf(rawoutstream, " *\n * Created:\t\t%s %2d, %4d\n", month_name[tm->tm_mon], tm->tm_mday,
77 - fprintf(rawoutstream, " *\t\t\t");
91 fprintf(rawoutstream, " *\n * Purpose:\t\t");
/openbmc/linux/include/linux/
H A Dcapability.h142 extern bool has_capability(struct task_struct *t, int cap);
143 extern bool has_ns_capability(struct task_struct *t,
145 extern bool has_capability_noaudit(struct task_struct *t, int cap);
146 extern bool has_ns_capability_noaudit(struct task_struct *t,
153 static inline bool has_capability(struct task_struct *t, int cap) in has_capability() argument
157 static inline bool has_ns_capability(struct task_struct *t, in has_ns_capability() argument
162 static inline bool has_capability_noaudit(struct task_struct *t, int cap) in has_capability_noaudit() argument
166 static inline bool has_ns_capability_noaudit(struct task_struct *t, in has_ns_capability_noaudit() argument
/openbmc/linux/drivers/net/ethernet/intel/ice/
H A Dice_flex_pipe.c2168 memset(xlt1->t, 0, xlt1->count * sizeof(*xlt1->t)); in ice_clear_hw_tbls()
2173 memset(xlt2->t, 0, xlt2->count * sizeof(*xlt2->t)); in ice_clear_hw_tbls()
2175 memset(prof->t, 0, prof->count * sizeof(*prof->t)); in ice_clear_hw_tbls()
2179 memset(es->t, 0, es->count * sizeof(*es->t) * es->fvw); in ice_clear_hw_tbls()
2234 if (!xlt1->t) in ice_init_hw_tbls()
2257 if (!xlt2->t) in ice_init_hw_tbls()
2286 if (!es->t) in ice_init_hw_tbls()
3724 if (!t) in ice_add_prof_id_vsig()
3912 t = kzalloc(sizeof(*t), GFP_KERNEL); in ice_find_prof_vsig()
3913 if (!t) in ice_find_prof_vsig()
[all …]
/openbmc/linux/drivers/net/ethernet/mellanox/mlx4/
H A Den_netdev.c1430 for (t = 0 ; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_set_default_moderation()
1719 for (t = 0 ; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_start_port()
1981 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_stop_port()
1989 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) in mlx4_en_stop_port()
2130 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_free_resources()
2159 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_alloc_resources()
2203 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_alloc_resources()
2234 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_copy_priv()
2274 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_update_priv()
2303 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++) { in mlx4_en_try_alloc_resources()
[all …]
/openbmc/linux/scripts/
H A Drecordmcount.h281 shstr->sh_size = _w(t); in append_func()
283 t += sb.st_size; in append_func()
284 t += (_align & -t); /* word-byte align */ in append_func()
285 new_e_shoff = t; in append_func()
306 t += 2*sizeof(mcsec); in append_func()
417 unsigned t; in sift_rel_mcount() local
421 for (t = nrel; t; --t) { in sift_rel_mcount()
464 unsigned t; in nop_mcount() local
469 for (t = nrel; t; --t) { in nop_mcount()
529 unsigned t; in find_secsym_ndx() local
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D074.out2 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824
6 qemu-img: Error while reading offset 0 of blkdebug:TEST_DIR/blkdebug.conf:TEST_DIR/t.IMGFMT: Input/…
8 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824
9 Formatting 'TEST_DIR/t.IMGFMT.2', fmt=IMGFMT size=0
13 qemu-img: Error while reading offset 0 of blkdebug:TEST_DIR/blkdebug.conf:TEST_DIR/t.IMGFMT: Input/…
H A D104.out4 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1024
5 image: TEST_DIR/t.IMGFMT
8 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1234
9 image: TEST_DIR/t.IMGFMT
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_helper_restricted.c7 struct bpf_timer t; member
40 bpf_timer_init(&timer->t, &timers, CLOCK_MONOTONIC); in timer_work()
41 bpf_timer_set_callback(&timer->t, timer_cb); in timer_work()
42 bpf_timer_start(&timer->t, 10E9, 0); in timer_work()
43 bpf_timer_cancel(&timer->t); in timer_work()
/openbmc/linux/tools/testing/selftests/mm/
H A Dva_high_addr_switch.c258 struct testcase *t = test + i; in run_test() local
260 p = mmap(t->addr, t->size, PROT_READ | PROT_WRITE, t->flags, -1, 0); in run_test()
262 printf("%s: %p - ", t->msg, p); in run_test()
270 if (t->low_addr_required && p >= (void *)(ADDR_SWITCH_HINT)) { in run_test()
278 memset(p, 0, t->size); in run_test()
281 if (!t->keep_mapped) in run_test()
282 munmap(p, t->size); in run_test()
/openbmc/linux/drivers/s390/crypto/
H A Dzcrypt_ccamisc.c113 if (t->algtype != 0x02) { in cca_check_secaescipherkey()
125 if (t->plfver != 0x00 && t->plfver != 0x01) { in cca_check_secaescipherkey()
131 if (t->wpllen != 512 && t->wpllen != 576 && t->wpllen != 640) { in cca_check_secaescipherkey()
140 if (t->wpllen != (t->plfver ? 640 : 512)) in cca_check_secaescipherkey()
144 if (t->wpllen != (t->plfver ? 640 : 576)) in cca_check_secaescipherkey()
148 if (t->wpllen != 640) in cca_check_secaescipherkey()
193 if (t->len > keysize) { in cca_check_sececckeytoken()
199 if (t->secid != 0x20) { in cca_check_sececckeytoken()
927 memcpy(keybuf, t, t->len); in cca_gencipherkey()
931 *keybufsize = t->len; in cca_gencipherkey()
[all …]
/openbmc/linux/arch/ia64/kernel/
H A Dunwind.c476 ia64_sync_fph(t); in unw_access_fr()
737 reg->when = t; in spill_next_when()
772 int t; in finish_prologue() local
782 for (t = 0; t < sr->region_len; ++t) { in finish_prologue()
1167 #define UNW_DEC_MEM_STACK_F(fmt,t,s,arg) desc_mem_stack_f(t,s,arg) argument
1168 #define UNW_DEC_MEM_STACK_V(fmt,t,arg) desc_mem_stack_v(t,arg) argument
1172 #define UNW_DEC_REG_WHEN(fmt,r,t,arg) desc_reg_when(r,t,arg) argument
1184 #define UNW_DEC_EPILOGUE(fmt,t,c,arg) desc_epilogue(t,c,arg) argument
1196 #define UNW_DEC_RESTORE_P(f,p,t,a,arg) desc_restore_p(p,t,a,arg) argument
1197 #define UNW_DEC_RESTORE(f,t,a,arg) desc_restore_p(0,t,a,arg) argument
[all …]
/openbmc/linux/lib/
H A Dis_single_threaded.c19 struct task_struct *p, *t; in current_is_single_threaded() local
36 for_each_thread(p, t) { in current_is_single_threaded()
37 if (unlikely(t->mm == mm)) in current_is_single_threaded()
39 if (likely(t->mm)) in current_is_single_threaded()
/openbmc/phosphor-host-postd/test/
H A Dmeson.build10 foreach t : tests
11 test(t, executable(t.underscorify(), t + '.cpp',

1...<<21222324252627282930>>...349