Home
last modified time | relevance | path

Searched refs:t (Results 226 – 250 of 8449) sorted by relevance

12345678910>>...338

/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libauthen/libauthen-radius-perl/
H A Dtest.pl-adjust-for-ptest.patch6 * Don't use interactive inputs, set default test
55 $t = 2;
58 - print defined($r) ? "" : "not ", "ok $t\n"; $t++;
59 + print defined($r) ? "\nPASS: test$t\n" : "\nFAIL: test$t\n"; $t++;
61 - print $r->check_pwd($user, $pwd) ? "" : "not ", "ok $t\n"; $t++;
62 + print $r->check_pwd($user, $pwd) ? "\nPASS: test$t\n" : "\nFAIL: test$t\n"; $t++;
64 - print $#a != -1 ? "" : "not ", "ok $t\n"; $t++;
65 + print $#a != -1 ? "\nPASS: test$t\n" : "\nFAIL: test$t\n"; $t++;
70 foreach my $t (2..4) {
71 - print "skipped $t\n";
[all …]
/openbmc/linux/arch/m68k/bvme6000/
H A Dconfig.c295 rtc->t0cr_rtmr = t->tm_year%4; in bvme6000_hwclk()
297 rtc->bcd_sec = bin2bcd(t->tm_sec); in bvme6000_hwclk()
298 rtc->bcd_min = bin2bcd(t->tm_min); in bvme6000_hwclk()
299 rtc->bcd_hr = bin2bcd(t->tm_hour); in bvme6000_hwclk()
300 rtc->bcd_dom = bin2bcd(t->tm_mday); in bvme6000_hwclk()
303 if (t->tm_wday >= 0) in bvme6000_hwclk()
310 t->tm_sec = bcd2bin(rtc->bcd_sec); in bvme6000_hwclk()
311 t->tm_min = bcd2bin(rtc->bcd_min); in bvme6000_hwclk()
312 t->tm_hour = bcd2bin(rtc->bcd_hr); in bvme6000_hwclk()
316 if (t->tm_year < 70) in bvme6000_hwclk()
[all …]
/openbmc/linux/tools/bpf/bpftool/
H A Dbtf_dumper.c155 switch (t->size) { in btf_dumper_enum()
468 const struct btf_type *t; in btf_dumper_struct() local
476 if (!t) in btf_dumper_struct()
531 const struct btf_type *t; in btf_dumper_datasec() local
535 if (!t) in btf_dumper_datasec()
625 const struct btf_type *t; in __btf_dumper_type_only() local
659 BTF_PRINT_TYPE(t->type); in __btf_dumper_type_only()
669 BTF_PRINT_TYPE(t->type); in __btf_dumper_type_only()
673 BTF_PRINT_TYPE(t->type); in __btf_dumper_type_only()
677 BTF_PRINT_TYPE(t->type); in __btf_dumper_type_only()
[all …]
/openbmc/linux/kernel/sched/
H A Dstats.h214 if (!t->sched_info.last_queued) in sched_info_dequeue()
218 t->sched_info.last_queued = 0; in sched_info_dequeue()
219 t->sched_info.run_delay += delta; in sched_info_dequeue()
233 if (!t->sched_info.last_queued) in sched_info_arrive()
238 t->sched_info.last_queued = 0; in sched_info_arrive()
239 t->sched_info.run_delay += delta; in sched_info_arrive()
240 t->sched_info.last_arrival = now; in sched_info_arrive()
241 t->sched_info.pcount++; in sched_info_arrive()
253 if (!t->sched_info.last_queued) in sched_info_enqueue()
271 if (task_is_running(t)) in sched_info_depart()
[all …]
/openbmc/linux/tools/testing/selftests/net/
H A Drxtimestamp.c145 if (t->expected.tstamp) in print_test_case()
147 if (t->expected.tstampns) in print_test_case()
149 if (t->expected.swtstamp || t->expected.hwtstamp) { in print_test_case()
151 if (t->expected.swtstamp) in print_test_case()
153 if (t->expected.swtstamp && t->expected.hwtstamp) in print_test_case()
155 if (t->expected.hwtstamp) in print_test_case()
362 int s, t, opt; in main() local
368 for (t = 0; t < ARRAY_SIZE(test_cases); t++) { in main()
369 printf("%d\t", t); in main()
374 t = atoi(optarg); in main()
[all …]
/openbmc/linux/drivers/parport/
H A Dprocfs.c437 t = kmemdup(&parport_sysctl_template, sizeof(*t), GFP_KERNEL); in parport_proc_register()
438 if (t == NULL) in parport_proc_register()
481 t->port_header = register_sysctl(tmp_dir_path, t->vars); in parport_proc_register()
499 kfree(t); in parport_proc_register()
510 kfree(t); in parport_proc_unregister()
524 if (t == NULL) in parport_device_proc_register()
547 t->sysctl_header = register_sysctl(tmp_dir_path, t->vars); in parport_device_proc_register()
549 kfree(t); in parport_device_proc_register()
550 t = NULL; in parport_device_proc_register()
561 kfree(t); in parport_device_proc_register()
[all …]
/openbmc/linux/drivers/input/joystick/
H A Dadi.c124 int t[2], s[2], i; in adi_read_packet() local
142 t[i]--; in adi_read_packet()
150 } while (t[0] > 0 || t[1] > 0); in adi_read_packet()
202 int i, t; in adi_decode() local
216 input_report_abs(dev, *abs++, ((t >> 2) & 1) - ( t & 1)); in adi_decode()
217 input_report_abs(dev, *abs++, ((t >> 1) & 1) - ((t >> 3) & 1)); in adi_decode()
223 if ((t = adi_get_bits(adi, 4)) > 8) t = 0; in adi_decode()
313 int i, t; in adi_id_decode() local
361 if (adi->length != t && adi->length != t + (t & 1)) { in adi_id_decode()
386 int i, t; in adi_init_input() local
[all …]
/openbmc/linux/net/sctp/
H A Dinput.c375 if (!t || in sctp_icmp_frag_needed()
377 t->pl.probe_size + sctp_transport_pl_hlen(t) <= pmtu)) in sctp_icmp_frag_needed()
383 t->pmtu_pending = 1; in sctp_icmp_frag_needed()
545 sctp_transport_put(t); in sctp_err_finish()
949 if (t->asoc->temp) in sctp_hash_transport()
977 if (t->asoc->temp) in sctp_unhash_transport()
1021 return t; in sctp_addrs_lookup_transport()
1046 return t; in sctp_epaddr_lookup_transport()
1063 if (!t) in __sctp_lookup_association()
1066 asoc = t->asoc; in __sctp_lookup_association()
[all …]
/openbmc/linux/drivers/media/i2c/
H A Dsony-btf-mpx.c163 int mode = t->mpxmode; in mpx_setup()
181 switch (t->audmode) { in mpx_setup()
283 mpx_setup(t); in sony_btf_mpx_s_std()
298 vt->audmode = t->audmode; in sony_btf_mpx_g_tuner()
310 t->audmode = vt->audmode; in sony_btf_mpx_s_tuner()
311 mpx_setup(t); in sony_btf_mpx_s_tuner()
336 struct sony_btf_mpx *t; in sony_btf_mpx_probe() local
345 t = devm_kzalloc(&client->dev, sizeof(*t), GFP_KERNEL); in sony_btf_mpx_probe()
346 if (t == NULL) in sony_btf_mpx_probe()
349 sd = &t->sd; in sony_btf_mpx_probe()
[all …]
/openbmc/linux/net/bridge/
H A Dbr_stp.c107 int t; in br_should_become_root_port() local
123 if (t < 0) in br_should_become_root_port()
125 else if (t > 0) in br_should_become_root_port()
136 if (t < 0) in br_should_become_root_port()
291 int t; in br_should_become_designated_port() local
306 if (t < 0) in br_should_become_designated_port()
334 int t; in br_supersedes_port_info() local
337 if (t < 0) in br_supersedes_port_info()
348 if (t < 0) in br_supersedes_port_info()
576 if (t < BR_MIN_HELLO_TIME || t > BR_MAX_HELLO_TIME) in br_set_hello_time()
[all …]
/openbmc/linux/include/linux/
H A Dinterrupt.h650 void (*callback)(struct tasklet_struct *t);
696 void tasklet_unlock(struct tasklet_struct *t);
712 __tasklet_schedule(t); in tasklet_schedule()
720 __tasklet_hi_schedule(t); in tasklet_hi_schedule()
725 atomic_inc(&t->count); in tasklet_disable_nosync()
735 tasklet_disable_nosync(t); in tasklet_disable_in_atomic()
736 tasklet_unlock_spin_wait(t); in tasklet_disable_in_atomic()
742 tasklet_disable_nosync(t); in tasklet_disable()
743 tasklet_unlock_wait(t); in tasklet_disable()
750 atomic_dec(&t->count); in tasklet_enable()
[all …]
/openbmc/qemu/audio/
H A Drate_template.h38 mixeng_real t; in NAME() local
40 int64_t t; in NAME() local
97 t = (rate->opos & UINT_MAX) * (1.f / UINT_MAX); in NAME()
99 t = (rate->opos & UINT_MAX) / (mixeng_real) UINT_MAX; in NAME()
101 out.l = (ilast.l * (1.0 - t)) + icur.l * t; in NAME()
102 out.r = (ilast.r * (1.0 - t)) + icur.r * t; in NAME()
104 t = rate->opos & 0xffffffff; in NAME()
105 out.l = (ilast.l * ((int64_t) UINT_MAX - t) + icur.l * t) >> 32; in NAME()
106 out.r = (ilast.r * ((int64_t) UINT_MAX - t) + icur.r * t) >> 32; in NAME()
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dread.hpp164 t = *r; in op()
192 t = S(str); in op()
211 t = (i != 0); in op()
236 t.emplace_back(std::move(s)); in op()
274 t.emplace(std::move(s)); in op()
322 t); in op()
367 read<T, Args1...>(intf, m, t); in read()
397 t = std::move(*ret); in read()
403 t = std::move(t1); in read()
417 read<T, Args...>(intf, m, t); in op()
[all …]
/openbmc/linux/drivers/spi/
H A Dspi-bcm63xx-hsspi.c284 if ((spi_delay_to_ns(&t->delay, t) > 0) || t->cs_change) { in bcm63xx_prepare_prepend_transfer()
291 if (t->tx_buf && !t->rx_buf) { in bcm63xx_prepare_prepend_transfer()
308 memcpy(bs->prepend_buf + bs->prepend_cnt, t->tx_buf, t->len); in bcm63xx_prepare_prepend_transfer()
355 u8 *rx = t->rx_buf; in bcm63xx_hsspi_do_prepend_txrx()
402 t->len); in bcm63xx_hsspi_do_prepend_txrx()
476 u8 *rx = t->rx_buf; in bcm63xx_hsspi_do_txrx()
480 if (!t->cs_off) in bcm63xx_hsspi_do_txrx()
618 t->speed_hz); in bcm63xx_hsspi_do_dummy_cs_txrx()
631 if (t->cs_change) { in bcm63xx_hsspi_do_dummy_cs_txrx()
635 if (!t->cs_off) in bcm63xx_hsspi_do_dummy_cs_txrx()
[all …]
/openbmc/linux/include/net/sctp/
H A Dsctp.h150 struct sctp_transport *t);
563 if (t->dst && !dst_check(t->dst, t->dst_cookie)) in sctp_transport_dst_check()
566 return t->dst; in sctp_transport_dst_check()
580 if (sp->udp_port && (!t || t->encap_port)) in __sctp_mtu_payload()
608 if (t->pathmtu == pmtu) in sctp_transport_pmtu_check()
611 t->pathmtu = pmtu; in sctp_transport_pmtu_check()
623 return __sctp_mtu_payload(sctp_sk(t->asoc->base.sk), t, 0, 0) - in sctp_transport_pl_hlen()
629 if (t->probe_interval && (t->param_flags & SPP_PMTUD_ENABLE) && in sctp_transport_pl_reset()
630 (t->state == SCTP_ACTIVE || t->state == SCTP_UNKNOWN)) { in sctp_transport_pl_reset()
640 sctp_transport_put(t); in sctp_transport_pl_reset()
[all …]
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt76x0/
H A Deeprom.c160 memset(t, 0, sizeof(*t)); in mt76x0_get_tx_power_per_rate()
164 t->cck[0] = t->cck[1] = s6_to_s8(val); in mt76x0_get_tx_power_per_rate()
165 t->cck[2] = t->cck[3] = s6_to_s8(val >> 8); in mt76x0_get_tx_power_per_rate()
170 t->ofdm[0] = t->ofdm[1] = s6_to_s8(val); in mt76x0_get_tx_power_per_rate()
171 t->ofdm[2] = t->ofdm[3] = s6_to_s8(val >> 8); in mt76x0_get_tx_power_per_rate()
176 t->ofdm[4] = t->ofdm[5] = s6_to_s8(val); in mt76x0_get_tx_power_per_rate()
177 t->ofdm[6] = t->ofdm[7] = s6_to_s8(val >> 8); in mt76x0_get_tx_power_per_rate()
182 t->ht[0] = t->ht[1] = s6_to_s8(val); in mt76x0_get_tx_power_per_rate()
183 t->ht[2] = t->ht[3] = s6_to_s8(val >> 8); in mt76x0_get_tx_power_per_rate()
188 t->ht[4] = t->ht[5] = s6_to_s8(val); in mt76x0_get_tx_power_per_rate()
[all …]
/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/systemtap/
H A D0001-staprun-address-ncurses-6.3-failures.patch19 wprintw(status, "\n%*s\t%*s\t%*s\t%*s\t%*s\t%*s\t%s\n",
39 - wprintw(status, "%*s\t", width[p_index], json_object_get_string(field));
42 - wprintw(status, "%*s\t", width[p_state], json_object_get_string(field));
45 - wprintw(status, "%*s\t", width[p_hits], json_object_get_string(field));
46 + wprintw(status, "%*s\t", (int)width[p_hits], json_object_get_string(field));
48 - wprintw(status, "%*s\t", width[p_min], json_object_get_string(field));
49 + wprintw(status, "%*s\t", (int)width[p_min], json_object_get_string(field));
51 - wprintw(status, "%*s\t", width[p_avg], json_object_get_string(field));
52 + wprintw(status, "%*s\t", (int)width[p_avg], json_object_get_string(field));
54 - wprintw(status, "%*s\t", width[p_max], json_object_get_string(field));
[all …]
/openbmc/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_private.h58 #define DECLARE_CODEC32(t) \ argument
59 static inline uint32_t e32_##t(uint32_t lsoffset, uint32_t width, t val) \
61 BUG_ON(width > (sizeof(t) * 8)); \
64 static inline t d32_##t(uint32_t lsoffset, uint32_t width, uint32_t val) \
66 BUG_ON(width > (sizeof(t) * 8)); \
67 return (t)((val >> lsoffset) & MAKE_MASK32(width)); \
69 static inline uint32_t i32_##t(uint32_t lsoffset, uint32_t width, \
72 BUG_ON(width > (sizeof(t) * 8)); \
73 return e32_##t(lsoffset, width, d32_##t(lsoffset, width, val)); \
75 static inline uint32_t r32_##t(uint32_t lsoffset, uint32_t width, \
[all …]
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbtf_split.c17 const struct btf_type *t; in test_btf_split() local
44 t = btf__type_by_id(btf2, 1); in test_btf_split()
45 if (!ASSERT_OK_PTR(t, "int_type")) in test_btf_split()
47 ASSERT_EQ(btf_is_int(t), true, "int_kind"); in test_btf_split()
48 ASSERT_STREQ(btf__str_by_offset(btf2, t->name_off), "int", "int_name"); in test_btf_split()
56 t = btf__type_by_id(btf1, 4); in test_btf_split()
57 ASSERT_NULL(t, "split_type_in_main"); in test_btf_split()
59 t = btf__type_by_id(btf2, 4); in test_btf_split()
60 if (!ASSERT_OK_PTR(t, "split_struct_type")) in test_btf_split()
62 ASSERT_EQ(btf_is_struct(t), true, "split_struct_kind"); in test_btf_split()
[all …]
/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/clk/ralink/
H A Dclk-mtmips.c395 u32 t; in rt5350_cpu_recalc_rate() local
426 u32 t; in rt3352_cpu_recalc_rate() local
446 u32 t; in rt305x_cpu_recalc_rate() local
466 u32 t; in rt3883_cpu_recalc_rate() local
491 u32 t; in rt3883_bus_recalc_rate() local
516 u32 t; in rt2880_cpu_recalc_rate() local
537 u64 t; in mt7620_calc_rate() local
541 t = div_u64(t, div); in mt7620_calc_rate()
553 u32 t; in mt7620_pll_recalc_rate() local
592 u32 t; in mt7620_cpu_recalc_rate() local
[all …]
/openbmc/webui-vue/src/views/Operations/KeyClear/
H A DKeyClear.vue3 <page-title :description="$t('pageKeyClear.description')" />
8 {{ $t('pageKeyClear.alert.title') }}
11 {{ $t('pageKeyClear.alert.description') }}
27 {{ $t('pageKeyClear.form.none') }}
30 {{ $t('pageKeyClear.form.keyClearNotRequested') }}
33 {{ $t('pageKeyClear.form.clearAllLabel') }}
36 {{ $t('pageKeyClear.form.clearAllHeperText') }}
59 {{ $t('pageKeyClear.form.clear') }}
81 $t: useI18n().t,
94 okTitle: i18n.global.t('pageKeyClear.modal.clear'),
[all …]
/openbmc/linux/tools/testing/selftests/powerpc/include/
H A Dinstructions.h79 #define __PPC_RT(t) __PPC_RS(t) argument
98 #define PREFIX_MLS(instr, t, a, r, d) stringify_in_c(.balign 64, , 4;) \ argument
103 __PPC_RT(t) | \
112 __PPC_RT(t) | \
117 #define PLBZ(t, a, r, d) PREFIX_MLS(PPC_INST_LBZ, t, a, r, d) argument
118 #define PLHZ(t, a, r, d) PREFIX_MLS(PPC_INST_LHZ, t, a, r, d) argument
119 #define PLHA(t, a, r, d) PREFIX_MLS(PPC_INST_LHA, t, a, r, d) argument
120 #define PLWZ(t, a, r, d) PREFIX_MLS(PPC_INST_LWZ, t, a, r, d) argument
121 #define PLWA(t, a, r, d) PREFIX_8LS(0xa4000000, t, a, r, d) argument
122 #define PLD(t, a, r, d) PREFIX_8LS(0xe4000000, t, a, r, d) argument
[all …]
/openbmc/qemu/tests/qemu-iotests/
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 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…

12345678910>>...338