Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 25 of 29) sorted by relevance

12

/tools/testing/selftests/kvm/lib/loongarch/
A Dexception.S9 csrwr t0, LOONGARCH_CSR_TLBRSAVE
10 csrrd t0, LOONGARCH_CSR_PGD
11 lddir t0, t0, 3
12 lddir t0, t0, 1
13 ldpte t0, 0
14 ldpte t0, 1
16 csrrd t0, LOONGARCH_CSR_TLBRSAVE
45 csrrd t0, LOONGARCH_CSR_KS0
46 st.d t0, sp, 3 * 8
48 csrrd t0, LOONGARCH_CSR_ERA
[all …]
/tools/testing/selftests/hid/tests/
A Dtest_multitouch.py602 t0.tipswitch = False
661 t0.tipswitch = False
837 t0.cx = 50
838 t0.cy = 100
881 t0.tipswitch = True
895 t0.inrange = False
968 t0.azimuth = 270
1737 r = uhdev.event([t0])
1741 t0.confidence = False
1742 t0.tipswitch = False
[all …]
A Dtest_sony.py144 t0 = PSTouchPoint(1, 50, 100)
145 r = uhdev.event(touch=[t0])
154 t0.tipswitch = False
155 r = uhdev.event(touch=[t0])
170 t0 = PSTouchPoint(1, 50, 100)
173 r = uhdev.event(touch=[t0])
184 r = uhdev.event(touch=[t0, t1])
202 t0.tipswitch = False
203 r = uhdev.event(touch=[t0, t1])
A Dtest_wacom_generic.py938 t0 = test_multitouch.Touch(0, 50, 100)
939 r = uhdev.event([t0])
943 slot = self.get_slot(uhdev, t0, 0)
950 t0.tipswitch = False
952 t0.inrange = False
953 r = uhdev.event([t0])
968 t0 = test_multitouch.Touch(1, 50, 100)
969 t0.confidence = False
970 r = uhdev.event([t0])
974 _slot = self.get_slot(uhdev, t0, 0)
/tools/testing/selftests/drivers/net/mlxsw/
A Drouter_scale.sh68 local t0=$1; shift
72 local delta=$((t1 - t0))
119 local t0=$(ip route | grep -o 'offload' | wc -l)
121 delta=$(busywait "$TIMEOUT" wait_for_routes $t0 $route_count)
A Dqos_lib.sh35 local t0=$(ethtool_stats_get $host_in $counter)
42 local er=$(rate $t0 $t1 $interval)
A Ddevlink_trap_policer.sh160 local t0 t1
162 t0=$(devlink_trap_rx_packets_get blackhole_route)
166 echo $(((t1 - t0) / 10))
172 local t0 t1
174 t0=$(devlink_trap_policer_rx_dropped_get $id)
178 echo $(((t1 - t0) / 10))
A Dqos_mc_aware.sh243 local t0=$(ethtool_stats_get $h3 rx_octets_prio_0)
266 local mc_er=$(rate $t0 $t1 $interval)
294 local t0=$(ethtool_stats_get $h3 rx_octets_prio_1)
316 local uc_er=$(rate $t0 $t1 $interval)
A Dqos_defprio.sh93 local t0=$(ethtool_stats_get $swp1 rx_frames_prio_$prio_observe)
/tools/testing/selftests/net/forwarding/
A Dip6_forward_instats_vrf.sh93 local t0=$(ipv6_stats_get $rtr1 Ip6InTooBigErrors)
110 local t0=$(ipv6_stats_get $rtr1 Ip6InHdrErrors)
128 local t0=$(ipv6_stats_get $rtr1 Ip6InAddrErrors)
147 local t0=$(ipv6_stats_get $rtr1 Ip6InDiscards)
A Dtc_police.sh139 local t0=$(tc_rule_stats_get $h2 1 ingress .bytes)
144 local nr=$(rate $t0 $t1 10)
189 local t0=$(tc_rule_stats_get $h2 1 ingress .bytes)
194 local nr=$(rate $t0 $t1 10)
259 local t0=$(tc_rule_stats_get $h2 1 ingress .bytes)
264 local nr=$(rate $t0 $t1 10)
269 local t0=$(tc_rule_stats_get $h3 1 ingress .bytes)
274 local nr=$(rate $t0 $t1 10)
311 local t0=$(tc_rule_stats_get $h2 1 ingress .packets)
316 local nr=$(packets_rate $t0 $t1 10)
A Dsch_ets_tests.sh84 local -a t0 t1 d
98 t0=($(collect_stats "${streams[@]}"))
104 echo $((${t1[$i]} - ${t0[$i]}))
A Dvxlan_reserved.sh243 local t0=$($get_stat)
249 local delta=$((t1 - t0))
266 local t0=$(link_stats_get vx1 rx errors)
274 local delta=$((t1 - t0))
A Dmirror_lib.sh51 local t0=$(tc_rule_stats_get $dev $pref)
56 local delta=$((t1 - t0))
A Dvxlan_bridge_1d.sh500 local t0=$(tc_rule_stats_get $capture_dev $capture_pref $capture_dir)
503 local delta=$((t1 - t0))
615 local t0=$($stat_get)
623 local delta=$((t1 - t0))
A Dvxlan_bridge_1d_ipv6.sh613 local t0=$(tc_rule_stats_get $capture_dev $capture_pref $capture_dir)
616 local delta=$((t1 - t0))
720 local t0=$($stat_get)
728 local delta=$((t1 - t0))
/tools/testing/selftests/powerpc/tm/
A Dtm-unavailable.c302 pthread_t t0; in test_fp_vec() local
318 rc = pthread_create(&t0, attr, tm_una_ping, (void *) &flags); in test_fp_vec()
321 rc = pthread_setname_np(t0, "tm_una_ping"); in test_fp_vec()
324 rc = pthread_join(t0, &ret_value); in test_fp_vec()
/tools/testing/selftests/net/
A Dtcp_mmap.c178 struct timeval t0, t1; in child_thread() local
188 gettimeofday(&t0, NULL); in child_thread()
278 delta_usec = (t1.tv_sec - t0.tv_sec) * 1000000 + t1.tv_usec - t0.tv_usec; in child_thread()
/tools/testing/selftests/kvm/include/loongarch/
A Dprocessor.h23 #define t0 $r12 macro
/tools/power/pm-graph/
A Dbootgraph.py534 t0 = data.start
536 tTotal = tMax - t0
560 left = '%.3f' % (((phase['start']-t0)*100.0)/tTotal)
580 left = '%.6f' % (((dev['start']-t0)*100)/tTotal)
596 left = '%f' % (((l.time-t0)*100)/tTotal)
606 left = '%f' % (((cg.start-t0)*100)/tTotal)
616 devtl.createTimeScale(t0, tMax, tTotal, 'boot')
A Dsleepgraph.py1794 if(t > t0):
1795 if(t - dT < t0):
1796 return t0
1801 if(t < t0 + dT):
1802 if(t > t0):
1803 return t0 + dT
4043 t0 = -1.0
4058 if t0 < 0:
4060 t0 = ktime
4747 t0 = testruns[0].start
[all …]
/tools/testing/selftests/kvm/include/riscv/
A Dprocessor.h82 unsigned long t0; member
/tools/testing/selftests/kvm/lib/riscv/
A Dprocessor.c230 core.regs.t0 = vcpu_get_reg(vcpu, RISCV_CORE_REG(regs.t0)); in vcpu_arch_dump()
265 core.regs.tp, core.regs.t0, core.regs.t1, core.regs.t2); in vcpu_arch_dump()
/tools/testing/selftests/drivers/net/hw/
A Drss_ctx.py343 t0 = datetime.datetime.now()
350 ksft_lt((t1 - t0).total_seconds(), 0.2)
/tools/perf/scripts/python/
A Dexported-sql-viewer.py4900 t0 = self.SwitchesMinTime(machine_id)
4903 if t0 is None or (not(t1 is None) and t1 < t0):
4904 t0 = t1
4905 if t0 is None or (not(t2 is None) and t2 < t0):
4906 t0 = t2
4907 return t0
4913 if t0 is None or (not(t1 is None) and t1 > t0):
4914 t0 = t1
4915 if t0 is None or (not(t2 is None) and t2 > t0):
4916 t0 = t2
[all …]

Completed in 747 milliseconds

12