Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 10007) sorted by relevance

12345678910>>...401

/external/v8/test/webkit/
Ddfg-double-vote-fuzz-expected.txt29 Result value is 54939
30 Result value is 55039
31 Result value is 55039
32 Result value is 55139
33 Result value is 55039
34 Result value is 55139
35 Result value is 55139
36 Result value is 55239
37 Result value is 55039
38 Result value is 55139
[all …]
Ddfg-create-inlined-arguments-in-closure-inline-expected.txt29 PASS value is 5
30 PASS value is 6
31 PASS value is 7
32 PASS value is 8
33 PASS value is 9
34 PASS value is 10
35 PASS value is 11
36 PASS value is 12
37 PASS value is 13
38 PASS value is 14
[all …]
/external/elfutils/tests/
Drun-funcretval.sh34 () fun_char: return value location: {0x50, 0}
35 () fun_short: return value location: {0x50, 0}
36 () fun_int: return value location: {0x50, 0}
37 () fun_ptr: return value location: {0x50, 0}
38 () fun_iptr: return value location: {0x50, 0}
39 () fun_long: return value location: {0x50, 0}
40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
41 () fun_large_struct1: return value location: {0x70, 0}
42 () fun_large_struct2: return value location: {0x70, 0}
43 () fun_float: return value location: {0x90, 0x40}
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dtype_traits_unittest.cc172 EXPECT_TRUE(is_integral<bool>::value); in TEST()
173 EXPECT_TRUE(is_integral<char>::value); in TEST()
174 EXPECT_TRUE(is_integral<unsigned char>::value); in TEST()
175 EXPECT_TRUE(is_integral<signed char>::value); in TEST()
176 EXPECT_TRUE(is_integral<wchar_t>::value); in TEST()
177 EXPECT_TRUE(is_integral<int>::value); in TEST()
178 EXPECT_TRUE(is_integral<unsigned int>::value); in TEST()
179 EXPECT_TRUE(is_integral<short>::value); in TEST()
180 EXPECT_TRUE(is_integral<unsigned short>::value); in TEST()
181 EXPECT_TRUE(is_integral<long>::value); in TEST()
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java120 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
123 writeDoubleNoTag(value); in writeDouble()
127 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
130 writeFloatNoTag(value); in writeFloat()
134 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
137 writeUInt64NoTag(value); in writeUInt64()
141 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
144 writeInt64NoTag(value); in writeInt64()
148 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
151 writeInt32NoTag(value); in writeInt32()
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java168 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
171 writeDoubleNoTag(value); in writeDouble()
175 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
178 writeFloatNoTag(value); in writeFloat()
182 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
185 writeUInt64NoTag(value); in writeUInt64()
189 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
192 writeInt64NoTag(value); in writeInt64()
196 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
199 writeInt32NoTag(value); in writeInt32()
[all …]
/external/v8/src/base/
Dbits.h22 inline unsigned CountPopulation32(uint32_t value) { in CountPopulation32() argument
24 return __builtin_popcount(value); in CountPopulation32()
26 value = ((value >> 1) & 0x55555555) + (value & 0x55555555); in CountPopulation32()
27 value = ((value >> 2) & 0x33333333) + (value & 0x33333333); in CountPopulation32()
28 value = ((value >> 4) & 0x0f0f0f0f) + (value & 0x0f0f0f0f); in CountPopulation32()
29 value = ((value >> 8) & 0x00ff00ff) + (value & 0x00ff00ff); in CountPopulation32()
30 value = ((value >> 16) & 0x0000ffff) + (value & 0x0000ffff); in CountPopulation32()
31 return static_cast<unsigned>(value); in CountPopulation32()
37 inline unsigned CountPopulation64(uint64_t value) { in CountPopulation64() argument
39 return __builtin_popcountll(value); in CountPopulation64()
[all …]
/external/apache-http/src/org/apache/commons/codec/language/
DDoubleMetaphone.java78 public String doubleMetaphone(String value) { in doubleMetaphone() argument
79 return doubleMetaphone(value, false); in doubleMetaphone()
90 public String doubleMetaphone(String value, boolean alternate) { in doubleMetaphone() argument
91 value = cleanInput(value); in doubleMetaphone()
92 if (value == null) { in doubleMetaphone()
96 boolean slavoGermanic = isSlavoGermanic(value); in doubleMetaphone()
97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone()
101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone()
102 switch (value.charAt(index)) { in doubleMetaphone()
109 index = handleAEIOUY(value, result, index); in doubleMetaphone()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java44 public void putString(String key, String value) { in putString() argument
45 map.put(key, value); in putString()
50 Object value = map.get(key); in getString() local
51 return value == null || !(value instanceof String) ? null : (String) value; in getString()
59 Object value = map.get(key); in getString() local
60 return value == null || !(value instanceof String) ? defaultValue : (String) value; in getString()
64 public void putLong(String key, long value) { in putLong() argument
65 map.put(key, value); in putLong()
75 Object value = map.get(key); in getLong() local
76 return value == null || !(value instanceof Long) ? defaultValue : (Long) value; in getLong()
[all …]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java93 public void writeDouble(final int fieldNumber, final double value) in writeDouble() argument
96 writeDoubleNoTag(value); in writeDouble()
100 public void writeFloat(final int fieldNumber, final float value) in writeFloat() argument
103 writeFloatNoTag(value); in writeFloat()
107 public void writeUInt64(final int fieldNumber, final long value) in writeUInt64() argument
110 writeUInt64NoTag(value); in writeUInt64()
114 public void writeInt64(final int fieldNumber, final long value) in writeInt64() argument
117 writeInt64NoTag(value); in writeInt64()
121 public void writeInt32(final int fieldNumber, final int value) in writeInt32() argument
124 writeInt32NoTag(value); in writeInt32()
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/
Dtwo_finger_tracking.left_to_right.normal-lumpy-fw_11.23-robot_sim-20130506_032518.dat1 Event: time 5898.748126, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 4
2 Event: time 5898.748130, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 146
3 Event: time 5898.748132, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 464
4 Event: time 5898.748133, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 10
5 Event: time 5898.748159, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
6 Event: time 5898.748160, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
7 Event: time 5898.748163, type 3 (EV_ABS), code 0 (ABS_X), value 146
8 Event: time 5898.748165, type 3 (EV_ABS), code 1 (ABS_Y), value 464
9 Event: time 5898.748167, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 10
11 Event: time 5898.759870, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 152
[all …]
Dpinch_to_zoom.zoom_in-lumpy-fw_11.23-complete-20130726_022805.dat1 Event: time 5110560.530558, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 0
2 Event: time 5110560.530563, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 493
3 Event: time 5110560.530565, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 411
4 Event: time 5110560.530567, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 9
5 Event: time 5110560.530593, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
6 Event: time 5110560.530594, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
7 Event: time 5110560.530598, type 3 (EV_ABS), code 0 (ABS_X), value 493
8 Event: time 5110560.530600, type 3 (EV_ABS), code 1 (ABS_Y), value 411
9 Event: time 5110560.530601, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 9
11 Event: time 5110560.539771, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 500
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/
Dtwo_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032735.dat1 Event: time 6030.719600, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 6030.719603, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 67
3 Event: time 6030.719606, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1000
4 Event: time 6030.719608, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 479
5 Event: time 6030.719610, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 4
6 Event: time 6030.719635, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 6030.719636, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 6030.719640, type 3 (EV_ABS), code 0 (ABS_X), value 1000
9 Event: time 6030.719641, type 3 (EV_ABS), code 1 (ABS_Y), value 479
10 Event: time 6030.719643, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 4
[all …]
Dtwo_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032729.dat1 Event: time 6027.498184, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 65
2 Event: time 6027.498189, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1019
3 Event: time 6027.498190, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 504
4 Event: time 6027.498192, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 11
5 Event: time 6027.498195, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 1
6 Event: time 6027.498196, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 66
7 Event: time 6027.498199, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1047
8 Event: time 6027.498201, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 265
9 Event: time 6027.498202, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 11
10 Event: time 6027.498226, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/
Dtwo_finger_tracking.left_to_right.slow-link-fw_1.0.AA-robot-20130806_223808.dat1 Event: time 4421.462240, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 303
2 Event: time 4421.462240, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 142
3 Event: time 4421.462240, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 653
4 Event: time 4421.462240, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39
5 Event: time 4421.462240, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
6 Event: time 4421.462240, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 4421.462240, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 4421.462240, type 3 (EV_ABS), code 0 (ABS_X), value 142
9 Event: time 4421.462240, type 3 (EV_ABS), code 1 (ABS_Y), value 653
10 Event: time 4421.462240, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39
[all …]
Dtwo_finger_tracking.bottom_to_top.normal-link-fw_1.0.AA-robot-20130806_224245.dat1 Event: time 4698.409521, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 4698.409521, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 345
3 Event: time 4698.409521, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 988
4 Event: time 4698.409521, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1025
5 Event: time 4698.409521, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 43
6 Event: time 4698.409521, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
7 Event: time 4698.409521, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
8 Event: time 4698.409521, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
9 Event: time 4698.409521, type 3 (EV_ABS), code 0 (ABS_X), value 988
10 Event: time 4698.409521, type 3 (EV_ABS), code 1 (ABS_Y), value 1025
[all …]
Dtwo_finger_tracking.bottom_left_to_top_right.normal-link-fw_1.0.AA-robot-20130806_224355.dat1 Event: time 4768.604311, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 4768.604311, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 355
3 Event: time 4768.604311, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 138
4 Event: time 4768.604311, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1018
5 Event: time 4768.604311, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42
6 Event: time 4768.604311, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
7 Event: time 4768.604311, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
8 Event: time 4768.604311, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
9 Event: time 4768.604311, type 3 (EV_ABS), code 0 (ABS_X), value 138
10 Event: time 4768.604311, type 3 (EV_ABS), code 1 (ABS_Y), value 1018
[all …]
Dtwo_finger_tracking.left_to_right.slow-link-fw_1.0.AA-robot-20130806_223634.dat1 Event: time 4406.934551, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 301
2 Event: time 4406.934551, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 139
3 Event: time 4406.934551, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 656
4 Event: time 4406.934551, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 38
5 Event: time 4406.934551, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
6 Event: time 4406.934551, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 4406.934551, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 4406.934551, type 3 (EV_ABS), code 0 (ABS_X), value 139
9 Event: time 4406.934551, type 3 (EV_ABS), code 1 (ABS_Y), value 656
10 Event: time 4406.934551, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 38
[all …]
Dtwo_finger_tracking.bottom_to_top.normal-link-fw_1.0.AA-robot-20130806_224232.dat1 Event: time 4686.186440, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 343
2 Event: time 4686.186440, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 992
3 Event: time 4686.186440, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1025
4 Event: time 4686.186440, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39
5 Event: time 4686.186440, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
6 Event: time 4686.186440, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 4686.186440, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 4686.186440, type 3 (EV_ABS), code 0 (ABS_X), value 992
9 Event: time 4686.186440, type 3 (EV_ABS), code 1 (ABS_Y), value 1025
10 Event: time 4686.186440, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39
[all …]
Done_finger_tracking.top_right_to_bottom_left.normal-link-fw_1.0.AA-robot-20130806_222159.dat1 Event: time 3451.442575, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 62
2 Event: time 3451.442575, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1841
3 Event: time 3451.442575, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 303
4 Event: time 3451.442575, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42
5 Event: time 3451.442575, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 254
6 Event: time 3451.442575, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 3451.442575, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 3451.442575, type 3 (EV_ABS), code 0 (ABS_X), value 1841
9 Event: time 3451.442575, type 3 (EV_ABS), code 1 (ABS_Y), value 303
10 Event: time 3451.442575, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 42
[all …]
Dtwo_finger_tracking.bottom_left_to_top_right.slow-link-fw_1.0.AA-robot-20130806_224325.dat1 Event: time 4738.687729, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 4738.687729, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 351
3 Event: time 4738.687729, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 140
4 Event: time 4738.687729, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1015
5 Event: time 4738.687729, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 39
6 Event: time 4738.687729, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 4738.687729, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 4738.687729, type 3 (EV_ABS), code 0 (ABS_X), value 140
9 Event: time 4738.687729, type 3 (EV_ABS), code 1 (ABS_Y), value 1015
10 Event: time 4738.687729, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 39
[all …]
Dtwo_finger_tracking.top_right_to_bottom_left.slow-link-fw_1.0.AA-robot-20130806_224434.dat1 Event: time 4806.746193, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 4806.746193, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 361
3 Event: time 4806.746193, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1844
4 Event: time 4806.746193, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 301
5 Event: time 4806.746193, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 38
6 Event: time 4806.746193, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 254
7 Event: time 4806.746193, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
8 Event: time 4806.746193, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
9 Event: time 4806.746193, type 3 (EV_ABS), code 0 (ABS_X), value 1844
10 Event: time 4806.746193, type 3 (EV_ABS), code 1 (ABS_Y), value 301
[all …]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dtype_traits_detail.hpp58 template <typename T> struct IsSignedIntergral { enum {value = 0}; }; enumerator
59 template <> struct IsSignedIntergral<schar> { enum {value = 1}; }; enumerator
60 template <> struct IsSignedIntergral<char1> { enum {value = 1}; }; enumerator
61 template <> struct IsSignedIntergral<short> { enum {value = 1}; }; enumerator
62 template <> struct IsSignedIntergral<short1> { enum {value = 1}; }; enumerator
63 template <> struct IsSignedIntergral<int> { enum {value = 1}; }; enumerator
64 template <> struct IsSignedIntergral<int1> { enum {value = 1}; }; enumerator
66 template <typename T> struct IsUnsignedIntegral { enum {value = 0}; }; enumerator
67 template <> struct IsUnsignedIntegral<uchar> { enum {value = 1}; }; enumerator
68 template <> struct IsUnsignedIntegral<uchar1> { enum {value = 1}; }; enumerator
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/data/
Dtwo_finger_tracking.diagonal.slow.dat52 Event: time 76455.555277, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 22
53 Event: time 76455.555282, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1142
54 Event: time 76455.555284, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 191
55 Event: time 76455.555286, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 7
56 Event: time 76455.555289, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 1
57 Event: time 76455.555290, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 23
58 Event: time 76455.555292, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 957
59 Event: time 76455.555294, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 105
60 Event: time 76455.555296, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 19
61 Event: time 76455.555320, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
[all …]
Dfinger_crossing.top_right_to_bottom_left.slow.dat64 Event: time 1405436904.108107, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 1016
65 Event: time 1405436904.108107, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 954
66 Event: time 1405436904.108107, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 853
67 Event: time 1405436904.108107, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42
68 Event: time 1405436904.108107, type 3 (EV_ABS), code 28 (ABS_TOOL_WIDTH), value 2
69 Event: time 1405436904.108107, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 144
70 Event: time 1405436904.108107, type 3 (EV_ABS), code 49 (ABS_MT_TOUCH_MINOR), value 140
71 Event: time 1405436904.108107, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
72 Event: time 1405436904.108107, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
73 Event: time 1405436904.108107, type 3 (EV_ABS), code 0 (ABS_X), value 954
[all …]

12345678910>>...401