HomeSort by relevance Sort by last modified time
    Searched refs:mtb (Results 1 - 12 of 12) sorted by null

  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
common_unittest_utils.py 42 import mtb
45 return mtb.MtbParser().parse(test_file)
mtb_unittest.py 5 # This module contains unit tests for the classes in the mtb module
14 import mtb
18 from firmware_constants import AXIS, GV, MTB, PLATFORM, UNIT, VAL
19 from mtb import FingerPath, TidPacket
29 parser = mtb.MtbParser()
31 mtb_packets = mtb.Mtb(packets=packets)
35 class FakeMtb(mtb.Mtb):
36 """A fake MTB class to set up x and y positions directly.""
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
mtplot_play.py 24 import mtb
38 evemu_file = mtb.convert_mtplot_file_to_evemu_file(mtplot_file,
  /external/u-boot/arch/arm/mach-keystone/
ddr3_spd.c 162 u32 mtb, clk_freq; local
171 mtb = buf->mtb_dividend * 1000 / buf->mtb_divisor;
173 spd->t_ck = buf->tck_min * mtb;
216 spd->t_wr = (buf->twr_min * mtb) / spd->t_ck;
219 spd->t_rcd = ((buf->trcd_min * mtb) - 1) / spd->t_ck + 1;
220 spd->t_rrd = ((buf->trrd_min * mtb) - 1) / spd->t_ck + 1;
221 spd->t_rp = (((buf->trp_min * mtb) - 1) / spd->t_ck) + 1;
224 mtb) / spd->t_ck;
227 mtb) - 1) / spd->t_ck + 1;
229 spd->t_rfc = (buf->trfc_min_lsb | (buf->trfc_min_msb << 8)) * mtb /
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
keyboard_device.py 15 import mtb
main.py 25 import mtb
80 # Get the MTB parser.
81 self.parser = mtb.MtbParser()
validators.py 11 (2) add proper method in mtb.Mtb class,
64 import mtb
70 from firmware_constants import AXIS, GV, MTB, UNIT, VAL
197 self.packets = mtb.Mtb(device=self.device, packets=packets)
356 final_state_packet = mtb.create_final_state_packet(
    [all...]
test_flow.py 20 import mtb
79 self.mtb_evemu = mtb.MtbEvemu(device)
mtb.py 5 """This module provides MTB parser and related packet methods."""
16 from firmware_constants import AXIS, GV, MTB, UNIT, VAL
44 """ A helper function to get mtb packets by parsing the event file.
48 return Mtb(packets=MtbParser().parse_file(event_file))
57 pretty_event.append('time %.6f,' % event[MTB.EV_TIME])
58 if event.get(MTB.SYN_REPORT):
61 ev_type = event[MTB.EV_TYPE]
63 ev_code = event[MTB.EV_CODE]
66 pretty_event.append('value %d' % event[MTB.EV_VALUE])
78 if event.get(MTB.SYN_REPORT)
    [all...]
  /external/u-boot/drivers/ddr/fsl/
ddr4_dimm_params.c 119 #define spd_to_ps(mtb, ftb) \
120 (mtb * pdimm->mtb_ps + (ftb * pdimm->ftb_10th_ps) / 10)
267 /* MTB - medium timebase
268 * The MTB in the SPD spec is 125ps,
  /external/u-boot/drivers/ddr/marvell/a38x/
mv_ddr_spd.h 165 mtb:2, /* medium timebase */ member in struct:mv_ddr_spd_data::__anon47222::__anon47251::__anon47252
169 unsigned char byte_18; /* sdram min cycle time (t ck avg min), mtb */
170 unsigned char byte_19; /* sdram max cycle time (t ck avg max), mtb */
175 unsigned char byte_24; /* min cas latency time (t aa min), mtb */
176 unsigned char byte_25; /* min ras to cas delay time (t rcd min), mtb */
177 unsigned char byte_26; /* min row precharge delay time (t rp min), mtb */
185 unsigned char byte_28; /* min active to precharge delay time (t ras min), l-s-byte, mtb */
186 unsigned char byte_29; /* min active to active/refresh delay time (t rc min), l-s-byte, mtb */
187 unsigned char byte_30; /* min refresh recovery delay time (t rfc1 min), l-s-byte, mtb */
188 unsigned char byte_31; /* min refresh recovery delay time (t rfc1 min), m-s-byte, mtb */
    [all...]
  /external/libnl/lib/route/
route_obj.c 1089 struct nlattr *mtb[RTAX_MAX + 1]; local
1092 err = nla_parse_nested(mtb, RTAX_MAX, tb[RTA_METRICS], NULL);
1097 if (mtb[i] && nla_len(mtb[i]) >= sizeof(uint32_t)) {
1098 uint32_t m = nla_get_u32(mtb[i]);

Completed in 395 milliseconds