/openbmc/u-boot/lib/ |
H A D | md5.c | 45 __u32 t; in byteReverse() local 49 *(__u32 *) buf = t; in byteReverse() 77 register __u32 t; in MD5Update() local 81 t = ctx->bits[0]; in MD5Update() 82 if ((ctx->bits[0] = t + ((__u32) len << 3)) < t) in MD5Update() 86 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update() 90 if (t) { in MD5Update() 93 t = 64 - t; in MD5Update() 94 if (len < t) { in MD5Update() 101 buf += t; in MD5Update() [all …]
|
/openbmc/qemu/target/loongarch/tcg/insn_trans/ |
H A D | trans_vec.c.inc | 2571 tcg_gen_add_i32(t, t, t1); 2580 tcg_gen_add_i64(t, t, t1); 2649 tcg_gen_sub_i32(t, t, t1); 2658 tcg_gen_sub_i64(t, t, t1); 2734 tcg_gen_add_i32(t, t, t1); 2743 tcg_gen_add_i64(t, t, t1); 3495 data = (t << 48) | (t << 32) | (t << 16) | t; 3499 data = (t << 56) |(t << 40) | (t << 24) | (t << 8); 3511 data =(t << 56) | (t << 48) | (t << 40) | (t << 32) | 3512 (t << 24) | (t << 16) | (t << 8) | t; [all …]
|
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb3/ |
H A D | cxgb3_main.c | 2159 if (copy_from_user(&t, useraddr, sizeof(t))) in cxgb_siocdevprivate() 2182 (t.rspq_size >= 0 || t.fl_size[0] >= 0 || in cxgb_siocdevprivate() 2183 t.fl_size[1] >= 0 || t.txq_size[0] >= 0 || in cxgb_siocdevprivate() 2184 t.txq_size[1] >= 0 || t.txq_size[2] >= 0 || in cxgb_siocdevprivate() 2185 t.polling >= 0 || t.cong_thres >= 0)) in cxgb_siocdevprivate() 2259 if (copy_from_user(&t, useraddr, sizeof(t))) in cxgb_siocdevprivate() 2296 if (copy_to_user(useraddr, &t, sizeof(t))) in cxgb_siocdevprivate() 2350 if (copy_from_user(&t, useraddr, sizeof(t))) in cxgb_siocdevprivate() 2455 if (copy_from_user(&t, useraddr, sizeof(t))) in cxgb_siocdevprivate() 2459 if ((t.addr & 7) || (t.len & 7)) in cxgb_siocdevprivate() [all …]
|
/openbmc/linux/drivers/input/misc/ |
H A D | hp_sdc_rtc.c | 69 hp_sdc_transaction t; in hp_sdc_rtc_do_read_bbrtc() local 85 t.endidx = 91; in hp_sdc_rtc_do_read_bbrtc() 86 t.seq = tseq; in hp_sdc_rtc_do_read_bbrtc() 87 t.act.semaphore = &tsem; in hp_sdc_rtc_do_read_bbrtc() 90 if (hp_sdc_enqueue_transaction(&t)) return -1; in hp_sdc_rtc_do_read_bbrtc() 138 hp_sdc_transaction t; in hp_sdc_rtc_read_i8042timer() local 153 t.endidx = numreg * 5; in hp_sdc_rtc_read_i8042timer() 156 tseq[t.endidx - 4] |= HP_SDC_ACT_SEMAPHORE; /* numreg assumed > 1 */ in hp_sdc_rtc_read_i8042timer() 158 t.seq = tseq; in hp_sdc_rtc_read_i8042timer() 159 t.act.semaphore = &i8042tregs; in hp_sdc_rtc_read_i8042timer() [all …]
|
/openbmc/webui-vue/src/views/Settings/Network/ |
H A D | ModalIpv6.vue | 5 :title="$t('pageNetwork.table.addIpv6Address')" 12 :label="$t('pageNetwork.modal.ipAddress')" 24 {{ $t('global.form.fieldRequired') }} 27 {{ $t('global.form.invalidFormat') }} 34 :label="$t('pageNetwork.modal.prefixLength')" 46 {{ $t('global.form.fieldRequired') }} 51 {{ $t('global.form.invalidFormat') }} 60 {{ $t('global.action.cancel') }} 63 {{ $t('global.action.add') }} 95 $t: useI18n().t,
|
H A D | ModalHostname.vue | 5 :title="$t('pageNetwork.modal.editHostnameTitle')" 12 :label="$t('pageNetwork.hostname')" 24 {{ $t('global.form.fieldRequired') }} 27 {{ $t('global.form.lengthMustBeBetween', { min: 1, max: 64 }) }} 36 {{ $t('global.action.cancel') }} 44 {{ $t('global.action.add') }} 74 $t: useI18n().t,
|
H A D | ModalMacAddress.vue | 5 :title="$t('pageNetwork.modal.editMacAddressTitle')" 12 :label="$t('pageNetwork.macAddress')" 25 {{ $t('global.form.fieldRequired') }} 28 {{ $t('global.form.invalidFormat') }} 37 {{ $t('global.action.cancel') }} 45 {{ $t('global.action.add') }} 73 $t: useI18n().t,
|
H A D | NetworkInterfaceSettings.vue | 7 <dt>{{ $t('pageNetwork.linkStatus') }}</dt> 15 <dt>{{ $t('pageNetwork.speed') }}</dt> 23 <page-section :section-title="$t('pageNetwork.interfaceSection')"> 28 {{ $t('pageNetwork.fqdn') }} 38 {{ $t('pageNetwork.macAddress') }} 45 :title="$t('pageNetwork.modal.editMacAddressTitle')" 82 $t: useI18n().t,
|
/openbmc/linux/drivers/misc/eeprom/ |
H A D | at25.c | 88 struct spi_transfer t[2]; in at25_ee_read() local 126 memset(t, 0, sizeof(t)); in at25_ee_read() 128 t[0].tx_buf = at25->command; in at25_ee_read() 132 t[1].rx_buf = buf; in at25_ee_read() 133 t[1].len = segment; in at25_ee_read() 158 struct spi_transfer t[2]; in fm25_aux_read() local 162 memset(t, 0, sizeof(t)); in fm25_aux_read() 164 t[0].tx_buf = at25->command; in fm25_aux_read() 165 t[0].len = 1; in fm25_aux_read() 168 t[1].rx_buf = buf; in fm25_aux_read() [all …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | ip_local_port_range.c | 208 const struct test *t; in TEST_F() local 210 for (t = tests; t < tests + ARRAY_SIZE(tests); t++) { in TEST_F() 218 TH_LOG("lo %5hu, hi %5hu", t->range_lo, t->range_hi); in TEST_F() 227 range = pack_port_range(t->range_lo, t->range_hi); in TEST_F() 261 const struct test *t; in TEST_F() local 263 for (t = tests; t < tests + ARRAY_SIZE(tests); t++) { in TEST_F() 268 t->range_lo, t->range_hi, t->expected); in TEST_F() 273 range = pack_port_range(t->range_lo, t->range_hi); in TEST_F() 281 ASSERT_EQ(port, t->expected) TH_LOG("unexpected local port"); in TEST_F()
|
/openbmc/linux/drivers/input/gameport/ |
H A D | gameport.c | 79 unsigned int i, t, tx; in gameport_measure_speed() local 91 for (t = 0; t < 50; t++) in gameport_measure_speed() 98 if (t < tx) in gameport_measure_speed() 99 tx = t; in gameport_measure_speed() 103 t = 1000000 * 50; in gameport_measure_speed() 105 t /= tx; in gameport_measure_speed() 106 return t; in gameport_measure_speed() 124 for (t = 0; t < 50; t++) gameport_read(gameport); in old_gameport_measure_speed() 129 if ((t = DELTA(t2,t1) - DELTA(t3,t2)) < tx) tx = t; in old_gameport_measure_speed() 137 unsigned int i, t; in old_gameport_measure_speed() [all …]
|
/openbmc/qemu/contrib/plugins/ |
H A D | meson.build | 8 t = [] variable 12 t += shared_module(i, files(i + '.c') + 'win32_linker.c', 18 t += shared_module(i, files(i + '.c'), 24 if t.length() > 0 25 alias_target('contrib-plugins', t)
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 082.out | 7 image: TEST_DIR/t.IMGFMT 14 image: TEST_DIR/t.IMGFMT 28 image: TEST_DIR/t.IMGFMT 42 image: TEST_DIR/t.IMGFMT 314 Testing: convert -f foo -f qcow2 TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.base 319 Testing: convert -O foo -O qcow2 TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.base 385 Testing: convert -O qcow2 -o ? TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.base 570 …vert -O qcow2 -o backing_fmt=qcow2,backing_file=TEST_DIR/t.qcow2,,? TEST_DIR/t.qcow2 TEST_DIR/t.qc… 573 Testing: convert -O qcow2 -o backing_file=TEST_DIR/t.qcow2, -o help TEST_DIR/t.qcow2 TEST_DIR/t.qco… 576 Testing: convert -O qcow2 -o backing_file=TEST_DIR/t.qcow2 -o ,help TEST_DIR/t.qcow2 TEST_DIR/t.qco… [all …]
|
H A D | 078.out | 8 qemu-io: can't open device TEST_DIR/empty.bochs: Catalog size is too large 11 qemu-io: can't open device TEST_DIR/empty.bochs: Catalog size is too large 14 qemu-io: can't open device TEST_DIR/empty.bochs: Catalog size is too small for this disk size 15 qemu-io: can't open device TEST_DIR/empty.bochs: Catalog size is too small for this disk size 18 qemu-io: can't open device TEST_DIR/empty.bochs: Extent size 2147483648 is too large 21 qemu-io: can't open device TEST_DIR/empty.bochs: Extent size must be at least 512
|
/openbmc/openpower-proc-control/test/ |
H A D | utest.cpp | 66 auto t = targets.begin(); in TEST_F() local 67 ASSERT_EQ((*t)->getPos(), 0); in TEST_F() 69 ASSERT_EQ((*t)->getCFAMPath(), masterDir); in TEST_F() 86 for (const auto& t : targets) in TEST_F() local 90 ASSERT_EQ(t->getPos(), i); in TEST_F() 105 ASSERT_EQ(t->getCFAMPath(), path); in TEST_F()
|
/openbmc/linux/rust/ |
H A D | helpers.c | 75 int rust_helper_signal_pending(struct task_struct *t) in rust_helper_signal_pending() argument 77 return signal_pending(t); in rust_helper_signal_pending() 129 void rust_helper_get_task_struct(struct task_struct *t) in rust_helper_get_task_struct() argument 131 get_task_struct(t); in rust_helper_get_task_struct() 135 void rust_helper_put_task_struct(struct task_struct *t) in rust_helper_put_task_struct() argument 137 put_task_struct(t); in rust_helper_put_task_struct()
|
/openbmc/webui-vue/src/views/Overview/ |
H A D | OverviewFirmware.vue | 3 :title="$t('pageOverview.firmwareInformation')" 9 <dt>{{ $t('pageOverview.runningVersion') }}</dt> 11 <dt>{{ $t('pageOverview.backupVersion') }}</dt> 17 <dt>{{ $t('pageOverview.firmwareVersion') }}</dt> 39 $t: useI18n().t,
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/geoip/ |
H A D | geoip-perl_1.51.bb | 28 install -d -m 0755 ${D}${PTEST_PATH}/t/data 30 install ${S}/t/*.t* ${D}${PTEST_PATH}/t 31 install ${S}/t/data/* ${D}${PTEST_PATH}/t/data
|
/openbmc/linux/tools/power/x86/turbostat/ |
H A D | turbostat.c | 1026 if (t) { in dump_counters() 1127 timersub(&t->tv_end, &t->tv_begin, &tv); in format_counters() 1169 if (t) in format_counters() 1201 tsc / units * t->aperf / t->mperf / interval_float); in format_counters() 1659 t->tsc = 0; in clear_counters() 1660 t->aperf = 0; in clear_counters() 1662 t->c1 = 0; in clear_counters() 2050 if (debug && (t->apic_id != (t->x2apic_id & 0xff))) in get_apic_id() 2051 fprintf(outf, "cpu%d: BIOS BUG: apic 0x%x x2apic 0x%x\n", t->cpu_id, t->apic_id, t->x2apic_id); in get_apic_id() 2150 t->aperf = t->aperf * aperf_mperf_multiplier; in get_counters() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/perl/ |
H A D | libdbi-perl_1.643.bb | 24 rm -rf ${B}/t/pod-coverage.t 25 rm -rf ${B}/t/13taint.t 27 rm -rf ${B}/t/85gofer.t 29 rm -rf ${B}/t/z*.t
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb/ |
H A D | sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch | 28 echo -e "\t-X create repository in non-native format as specifed by argument" 29 echo -e "\t-s specify staging directory [@localstatedir@/lib/sfcb/stage]" 30 echo -e "\t-r specify repository directory [@localstatedir@/lib/sfcb/registration]" 31 - echo -e "\t-c specify directory containing CIM Schema MOFs [@datadir@/sfcb/CIM]" 32 + echo -e "\t-c specify directory containing CIM Schema MOFs [@datadir@/mof/cim-current]" 33 echo -e "\t-t create tiny class repository by omitting inheritance information" 34 echo -e "\t-z compress repository with gzip"
|
/openbmc/linux/scripts/ |
H A D | decodecode | 75 t=$1 78 ${CROSS_COMPILE}as $AFLAGS -o $t.o $t.s > /dev/null 2>&1 85 ${CROSS_COMPILE}strip $t.o 93 ${CROSS_COMPILE}strip $t.o 98 ${CROSS_COMPILE}strip $t.o 108 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $t.o | \ 109 grep -v "/tmp\|Disassembly\|\.text\|^$" > $t.dis 2>&1
|
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/test/ |
H A D | util_test.cpp | 68 metric_blob::TcommUtimeStime t = in TEST() local 71 EXPECT_LT(std::abs(t.utime - 3330.37), EPS); in TEST() 72 EXPECT_LT(std::abs(t.stime - 2461.10), EPS); in TEST() 73 EXPECT_EQ(t.tcomm, "(dbus-broker)"); in TEST() 84 metric_blob::TcommUtimeStime t = in TEST() local 87 EXPECT_EQ(t.utime, 0); in TEST() 88 EXPECT_EQ(t.stime, 0); in TEST() 89 EXPECT_EQ(t.tcomm, "invalid"); in TEST()
|
/openbmc/linux/lib/ |
H A D | decompress_bunzip2.c | 195 t = get_bits(bd, 16); in get_next_block() 198 if (t&(1 << (15-i))) { in get_next_block() 247 t = get_bits(bd, 5)-1; in get_next_block() 266 t += (((k+1)&2)-1); in get_next_block() 270 length[i] = t+1; in get_next_block() 311 for (t = 0; t < symCount; t++) in get_next_block() 312 if (length[t] == i) in get_next_block() 324 pp = t = 0; in get_next_block() 416 t = 0; in get_next_block() 446 byteCount[uc] += t; in get_next_block() [all …]
|
/openbmc/linux/net/netfilter/ |
H A D | nf_nat_core.c | 68 fl4->daddr = t->dst.u3.ip; in nf_nat_ipv4_decode_session() 73 t->dst.protonum == IPPROTO_SCTP) in nf_nat_ipv4_decode_session() 74 fl4->fl4_dport = t->dst.u.all; in nf_nat_ipv4_decode_session() 80 fl4->saddr = t->src.u3.ip; in nf_nat_ipv4_decode_session() 85 t->dst.protonum == IPPROTO_SCTP) in nf_nat_ipv4_decode_session() 86 fl4->fl4_sport = t->src.u.all; in nf_nat_ipv4_decode_session() 101 fl6->daddr = t->dst.u3.in6; in nf_nat_ipv6_decode_session() 107 fl6->fl6_dport = t->dst.u.all; in nf_nat_ipv6_decode_session() 113 fl6->saddr = t->src.u3.in6; in nf_nat_ipv6_decode_session() 119 fl6->fl6_sport = t->src.u.all; in nf_nat_ipv6_decode_session() [all …]
|