Home
last modified time | relevance | path

Searched refs:t (Results 676 – 700 of 8705) sorted by relevance

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

/openbmc/webui-vue/src/views/Overview/
H A DOverviewInventory.vue3 :title="$t('pageOverview.inventory')"
9 <dt>{{ $t('pageOverview.systemIdentifyLed') }}</dt>
19 {{ $t('global.status.on') }}
21 <span v-else>{{ $t('global.status.off') }}</span>
43 $t: useI18n().t,
/openbmc/linux/arch/mips/math-emu/
H A Dsp_sqrt.c14 int ix, s, q, m, t, i; in ieee754sp_sqrt() local
78 t = s + r; in ieee754sp_sqrt()
79 if (t <= ix) { in ieee754sp_sqrt()
80 s = t + r; in ieee754sp_sqrt()
81 ix -= t; in ieee754sp_sqrt()
/openbmc/linux/drivers/spi/
H A Dspi-tegra20-slink.c237 struct spi_transfer *t) in tegra_slink_get_packed_size() argument
255 struct spi_transfer *t) in tegra_slink_calculate_curr_xfer_param() argument
263 bits_per_word = t->bits_per_word; in tegra_slink_calculate_curr_xfer_param()
672 struct spi_transfer *t) in tegra_slink_start_transfer_one() argument
683 speed = t->speed_hz; in tegra_slink_start_transfer_one()
693 tspi->curr_xfer = t; in tegra_slink_start_transfer_one()
704 if (t->rx_buf) { in tegra_slink_start_transfer_one()
708 if (t->tx_buf) { in tegra_slink_start_transfer_one()
867 if (tspi->cur_pos == t->len) { in handle_cpu_based_xfer()
941 if (tspi->cur_pos == t->len) { in handle_dma_based_xfer()
[all …]
H A Dspi-npcm-pspi.c160 struct spi_transfer *t) in npcm_pspi_setup_transfer() argument
164 priv->tx_buf = t->tx_buf; in npcm_pspi_setup_transfer()
165 priv->rx_buf = t->rx_buf; in npcm_pspi_setup_transfer()
166 priv->tx_bytes = t->len; in npcm_pspi_setup_transfer()
167 priv->rx_bytes = t->len; in npcm_pspi_setup_transfer()
179 t->bits_per_word = 16; in npcm_pspi_setup_transfer()
183 priv->bits_per_word = t->bits_per_word; in npcm_pspi_setup_transfer()
187 npcm_pspi_set_baudrate(priv, t->speed_hz); in npcm_pspi_setup_transfer()
188 priv->speed_hz = t->speed_hz; in npcm_pspi_setup_transfer()
250 struct spi_transfer *t) in npcm_pspi_transfer_one() argument
[all …]
H A Dspi-falcon.c97 int falcon_sflash_xfer(struct spi_device *spi, struct spi_transfer *t, in falcon_sflash_xfer() argument
102 const u8 *txp = t->tx_buf; in falcon_sflash_xfer()
103 u8 *rxp = t->rx_buf; in falcon_sflash_xfer()
104 unsigned int bytelen = ((8 * t->len + 7) / 8); in falcon_sflash_xfer()
358 struct spi_transfer *t; in falcon_sflash_xfer_one() local
367 list_for_each_entry(t, &m->transfers, transfer_list) { in falcon_sflash_xfer_one()
368 if (list_is_last(&t->transfer_list, &m->transfers)) in falcon_sflash_xfer_one()
372 ret = falcon_sflash_xfer(m->spi, t, spi_flags); in falcon_sflash_xfer_one()
378 m->actual_length += t->len; in falcon_sflash_xfer_one()
380 WARN_ON(t->delay.value || t->cs_change); in falcon_sflash_xfer_one()
/openbmc/pldm/common/test/
H A Dmeson.build5 foreach t : tests
7 t,
9 t.underscorify(),
10 t + '.cpp',
/openbmc/linux/net/netrom/
H A Dnr_timer.c112 static void nr_heartbeat_expiry(struct timer_list *t) in nr_heartbeat_expiry() argument
114 struct sock *sk = from_timer(sk, t, sk_timer); in nr_heartbeat_expiry()
153 static void nr_t2timer_expiry(struct timer_list *t) in nr_t2timer_expiry() argument
155 struct nr_sock *nr = from_timer(nr, t, t2timer); in nr_t2timer_expiry()
167 static void nr_t4timer_expiry(struct timer_list *t) in nr_t4timer_expiry() argument
169 struct nr_sock *nr = from_timer(nr, t, t4timer); in nr_t4timer_expiry()
178 static void nr_idletimer_expiry(struct timer_list *t) in nr_idletimer_expiry() argument
180 struct nr_sock *nr = from_timer(nr, t, idletimer); in nr_idletimer_expiry()
207 static void nr_t1timer_expiry(struct timer_list *t) in nr_t1timer_expiry() argument
209 struct nr_sock *nr = from_timer(nr, t, t1timer); in nr_t1timer_expiry()
/openbmc/phosphor-ipmi-flash/bmc/version-handler/test/
H A Dmeson.build10 foreach t : version_tests
12 t,
14 t.underscorify(), 'version_' + t + '_unittest.cpp',
/openbmc/smbios-mdr/src/smbios-ipmi-blobs/test/
H A Dmeson.build11 foreach t : tests
13 t,
15 t.underscorify(),
16 t + '.cpp',
/openbmc/bmcweb/redfish-core/include/utils/
H A Dtime_utils.hpp257 days d = std::chrono::duration_cast<days>(t); in toISO8061ExtendedStr()
260 t -= d; in toISO8061ExtendedStr()
281 t = std::chrono::duration<IntType, Period>::zero(); in toISO8061ExtendedStr()
284 hours hr = duration_cast<hours>(t); in toISO8061ExtendedStr()
285 t -= hr; in toISO8061ExtendedStr()
287 minutes mt = duration_cast<minutes>(t); in toISO8061ExtendedStr()
288 t -= mt; in toISO8061ExtendedStr()
290 seconds se = duration_cast<seconds>(t); in toISO8061ExtendedStr()
292 t -= se; in toISO8061ExtendedStr()
298 MilliDuration subsec = duration_cast<MilliDuration>(t); in toISO8061ExtendedStr()
[all …]
/openbmc/linux/kernel/time/
H A Dposix-stubs.c98 struct timespec64 t; in SYSCALL_DEFINE4() local
110 if (get_timespec64(&t, rqtp)) in SYSCALL_DEFINE4()
112 if (!timespec64_valid(&t)) in SYSCALL_DEFINE4()
119 texp = timespec64_to_ktime(t); in SYSCALL_DEFINE4()
181 struct timespec64 t; in SYSCALL_DEFINE4() local
193 if (get_old_timespec32(&t, rqtp)) in SYSCALL_DEFINE4()
195 if (!timespec64_valid(&t)) in SYSCALL_DEFINE4()
202 texp = timespec64_to_ktime(t); in SYSCALL_DEFINE4()
/openbmc/linux/rust/alloc/vec/
H A Dis_zero.rs15 ($t:ty, $is_zero:expr) => {
16 unsafe impl IsZero for $t {
128 ($($t:ident,)+) => {$(
129 unsafe impl IsZero for Option<core::num::$t> {
154 ($($t:ty,)+) => {$(
155 unsafe impl IsZero for Option<$t> {
185 ($($t:ty,)+) => {$(
186 unsafe impl IsZero for $t {
/openbmc/qemu/tests/qemu-iotests/
H A D244.out6 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 data_file=TEST_DIR/t.IMGFMT.data
12 qemu-io: can't open device TEST_DIR/t.qcow2: Could not open 'inexistent': No such file or directory
16 qemu-io: can't open device TEST_DIR/t.qcow2: 'data-file' is required for this image
20 qemu-io: can't open device TEST_DIR/t.qcow2: Could not open 'inexistent': No such file or directory
25 qemu-io: can't open device TEST_DIR/t.qcow2: 'data-file' can only be set for images with an externa…
27 qemu-io: can't open device TEST_DIR/t.qcow2: Could not open 'inexistent': No such file or directory
49 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 data_file=TEST_DIR/t.IMGFMT.data
86 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 data_file=TEST_DIR/t.IMGFMT.data data_file…
119 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 data_file=TEST_DIR/t.IMGFMT.data
131 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 data_file=TEST_DIR/t.IMGFMT.data
[all …]
H A D142.out2 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=134217728
3 Formatting 'TEST_DIR/t.IMGFMT.snap', fmt=IMGFMT size=134217728
4 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.base backi…
8 Testing: -drive file=TEST_DIR/t.qcow2,cache=none
12 Testing: -drive file=TEST_DIR/t.qcow2,cache=directsync
16 Testing: -drive file=TEST_DIR/t.qcow2,cache=writeback
20 Testing: -drive file=TEST_DIR/t.qcow2,cache=writethrough
24 Testing: -drive file=TEST_DIR/t.qcow2,cache=unsafe
28 Testing: -drive file=TEST_DIR/t.qcow2,cache=invalid_value
422 === Check that referenced BDSes don't inherit ===
[all …]
/openbmc/qemu/target/arm/
H A Dcpu64.c291 uint64_t t; in cpu_arm_set_sve() local
299 t = FIELD_DP64(t, ID_AA64PFR0, SVE, value); in cpu_arm_set_sve()
351 uint64_t t; in cpu_arm_set_sme() local
354 t = FIELD_DP64(t, ID_AA64PFR1, SME, value); in cpu_arm_set_sme()
368 uint64_t t; in cpu_arm_set_sme_fa64() local
371 t = FIELD_DP64(t, ID_AA64SMFR0, FA64, value); in cpu_arm_set_sme_fa64()
581 uint64_t t; in arm_cpu_lpa2_finalize() local
592 t = FIELD_DP64(t, ID_AA64MMFR0, TGRAN16, 2); /* 16k pages w/ LPA2 */ in arm_cpu_lpa2_finalize()
593 t = FIELD_DP64(t, ID_AA64MMFR0, TGRAN4, 1); /* 4k pages w/ LPA2 */ in arm_cpu_lpa2_finalize()
594 t = FIELD_DP64(t, ID_AA64MMFR0, TGRAN16_2, 3); /* 16k stage2 w/ LPA2 */ in arm_cpu_lpa2_finalize()
[all …]
/openbmc/linux/tools/perf/tests/
H A Dattr.py109 for t in Event.terms:
110 log.debug(" [%s] %s %s" % (t, self[t], other[t]));
111 if t not in self or t not in other:
113 if not data_equal(self[t], other[t]):
123 for t in Event.terms:
124 if t not in self or t not in other:
126 if not data_equal(self[t], other[t]):
127 log.warning("expected %s=%s, got %s" % (t, self[t], other[t]))
/openbmc/linux/tools/tracing/rtla/src/
H A Dutils.c154 long t; in parse_seconds_duration() local
165 t *= 60; in parse_seconds_duration()
169 t *= 60 * 60; in parse_seconds_duration()
179 return t; in parse_seconds_duration()
188 long t; in parse_ns_duration() local
194 return t; in parse_ns_duration()
196 t *= 1000; in parse_ns_duration()
197 return t; in parse_ns_duration()
200 return t; in parse_ns_duration()
203 return t; in parse_ns_duration()
[all …]
/openbmc/linux/drivers/input/joystick/
H A Dinteract.c76 unsigned int t, s; in interact_read_packet() local
81 t = gameport_time(gameport, INTERACT_MAX_START); in interact_read_packet()
88 while (t > 0 && i < length) { in interact_read_packet()
89 t--; in interact_read_packet()
96 t = s; in interact_read_packet()
192 int i, t; in interact_connect() local
252 for (i = 0; (t = interact_type[interact->type].abs[i]) >= 0; i++) { in interact_connect()
254 input_set_abs_params(input_dev, t, 0, 255, 0, 0); in interact_connect()
256 input_set_abs_params(input_dev, t, -1, 1, 0, 0); in interact_connect()
259 for (i = 0; (t = interact_type[interact->type].btn[i]) >= 0; i++) in interact_connect()
[all …]
/openbmc/linux/drivers/gpu/drm/vboxvideo/
H A Dvbox_hgsmi.c51 struct hgsmi_buffer_tail *t; in hgsmi_buffer_alloc() local
55 total_size = size + sizeof(*h) + sizeof(*t); in hgsmi_buffer_alloc()
60 t = (struct hgsmi_buffer_tail *)((u8 *)h + sizeof(*h) + size); in hgsmi_buffer_alloc()
68 t->reserved = 0; in hgsmi_buffer_alloc()
69 t->checksum = hgsmi_checksum(offset, h, t); in hgsmi_buffer_alloc()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dmtms_test.cpp35 const std::array<uint8_t, 8> t{'T', 'T', 'T', 'T', '-', 'M', 'M', 'M'}; in TEST() local
36 EXPECT_EQ(t, mtms.machineTypeAndModelRaw()); in TEST()
52 const std::array<uint8_t, 8> t{'T', 'T', 'T', 'T', '-', 'M', 'M', 'M'}; in TEST() local
53 EXPECT_EQ(t, mtms.machineTypeAndModelRaw()); in TEST()
67 const std::array<uint8_t, 8> t{'T', 'T', 'T', 'T', 0, 0, 0, 0}; in TEST() local
68 EXPECT_EQ(t, mtms.machineTypeAndModelRaw()); in TEST()
H A Dmeson.build85 foreach t : openpower_pels.keys()
87 'test_openpower_pels_' + t.underscorify(),
89 'test-openpower-pels-' + t.underscorify(),
90 t + '_test.cpp',
91 openpower_pels.get(t).get('sources', []),
102 openpower_pels.get(t).get('deps', []),
/openbmc/linux/crypto/
H A Dxts.c35 le128 t; member
90 le128 t = rctx->t; in xts_xor_tweak() local
113 rctx->t = t; in xts_xor_tweak()
114 gf128mul_x_ble(&t, &t); in xts_xor_tweak()
116 le128_xor(wdst, &t, wsrc); in xts_xor_tweak()
118 gf128mul_x_ble(&rctx->t, &t); in xts_xor_tweak()
123 le128_xor(wdst++, &t, wsrc++); in xts_xor_tweak()
124 gf128mul_x_ble(&t, &t); in xts_xor_tweak()
152 le128_xor(&b, &rctx->t, &b); in xts_cts_done()
178 le128_xor(b, &rctx->t, b); in xts_cts_final()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/openhpi/files/
H A Dopenhpi-add-libnetsnmp-when-link.patch7 plugins/snmp_bc/t/Makefile.am | 2 +-
10 diff --git a/plugins/snmp_bc/t/Makefile.am b/plugins/snmp_bc/t/Makefile.am
12 --- a/plugins/snmp_bc/t/Makefile.am
13 +++ b/plugins/snmp_bc/t/Makefile.am
/openbmc/linux/kernel/futex/
H A Dsyscalls.c151 futex_init_timeout(u32 cmd, u32 op, struct timespec64 *ts, ktime_t *t) in futex_init_timeout() argument
156 *t = timespec64_to_ktime(*ts); in futex_init_timeout()
158 *t = ktime_add_safe(ktime_get(), *t); in futex_init_timeout()
160 *t = timens_ktime_to_host(CLOCK_MONOTONIC, *t); in futex_init_timeout()
169 ktime_t t, *tp = NULL; in SYSCALL_DEFINE6() local
177 ret = futex_init_timeout(cmd, op, &ts, &t); in SYSCALL_DEFINE6()
180 tp = &t; in SYSCALL_DEFINE6()
364 ktime_t t, *tp = NULL; in SYSCALL_DEFINE6() local
370 ret = futex_init_timeout(cmd, op, &ts, &t); in SYSCALL_DEFINE6()
373 tp = &t; in SYSCALL_DEFINE6()
/openbmc/linux/drivers/ata/
H A Dpata_via.c250 struct ata_timing t, p; in via_do_set_mode() local
267 ata_timing_compute(adev, mode, &t, T, UT); in via_do_set_mode()
273 ata_timing_merge(&p, &t, &t, ATA_TIMING_8BIT); in via_do_set_mode()
284 setup |= (clamp_val(t.setup, 1, 4) - 1) << shift; in via_do_set_mode()
290 ((clamp_val(t.act8b, 1, 16) - 1) << 4) | (clamp_val(t.rec8b, 1, 16) - 1)); in via_do_set_mode()
292 ((clamp_val(t.active, 1, 16) - 1) << 4) | (clamp_val(t.recover, 1, 16) - 1)); in via_do_set_mode()
298 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 5) - 2)) : 0x03; in via_do_set_mode()
301 ut = t.udma ? (0xe8 | (clamp_val(t.udma, 2, 9) - 2)) : 0x0f; in via_do_set_mode()
304 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
307 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
[all …]

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