Home
last modified time | relevance | path

Searched refs:seq1 (Results 1 – 25 of 55) sorted by relevance

123

/external/perfetto/test/trace_processor/chrome/
Dscroll_jank_mojo_simple_watcher.py38 seq1 = 9876 variable
67 trusted_packet_sequence_id=seq1,
87 trusted_sequence_id=seq1,
93 "task", ts=ms_to_ns(2), dur=ms_to_ns(6), trusted_sequence_id=seq1)
96 "subtask", ts=ms_to_ns(3), dur=ms_to_ns(4), trusted_sequence_id=seq1)
102 trusted_sequence_id=seq1,
120 "ThreadController active", ts=ms_to_ns(16), trusted_sequence_id=seq1)
125 trusted_sequence_id=seq1,
131 "task", ts=ms_to_ns(18), dur=ms_to_ns(29), trusted_sequence_id=seq1)
134 "subtask", ts=ms_to_ns(19), dur=ms_to_ns(27), trusted_sequence_id=seq1)
[all …]
Dcpu_time_by_combined_rail_mode.py38 seq1 = 9876 variable
50 trusted_packet_sequence_id=seq1,
71 "task", 0, 5000, trusted_sequence_id=seq1, cpu_start=0, cpu_delta=10000)
76 trusted_sequence_id=seq1,
84 trusted_sequence_id=seq1,
91 trusted_sequence_id=seq1,
99 trusted_sequence_id=seq1,
Dactual_power_by_combined_rail_mode.py39 seq1 = 9876 variable
55 trusted_packet_sequence_id=seq1,
Destimated_power_by_combined_rail_mode.py39 seq1 = 9876 variable
54 trusted_packet_sequence_id=seq1,
/external/webrtc/modules/audio_coding/codecs/ilbc/
Denh_upsample.c28 int16_t *seq1 /* (i) unupsampled sequence */ in WebRtcIlbcfix_EnhUpsample() argument
41 ps=seq1+2; in WebRtcIlbcfix_EnhUpsample()
48 ps=seq1+3; in WebRtcIlbcfix_EnhUpsample()
56 ps=seq1+4; in WebRtcIlbcfix_EnhUpsample()
89 w16tmp = seq1+4; in WebRtcIlbcfix_EnhUpsample()
Dmy_corr.c27 const int16_t* seq1, /* (i) first sequence */ in WebRtcIlbcfix_MyCorr() argument
40 max1 = WebRtcSpl_MaxAbsValueW16(seq1, dim1) + 1; in WebRtcIlbcfix_MyCorr()
51 WebRtcSpl_CrossCorrelation(corr, seq2, seq1, dim2, loops, right_shift, 1); in WebRtcIlbcfix_MyCorr()
Denh_upsample.h30 int16_t* seq1 /* (i) unupsampled sequence */
Dmy_corr.h29 const int16_t* seq1, /* (i) first sequence */
/external/snakeyaml/src/test/java/org/pyyaml/
DPyStructureTest.java133 SequenceNode seq1 = (SequenceNode) node1; in compareNodes() local
135 assertEquals(seq1.getTag(), seq2.getTag()); in compareNodes()
136 assertEquals(seq1.getValue().size(), seq2.getValue().size()); in compareNodes()
138 for (Node child1 : seq1.getValue()) { in compareNodes()
143 MappingNode seq1 = (MappingNode) node1; in compareNodes() local
145 assertEquals(seq1.getTag(), seq2.getTag()); in compareNodes()
146 assertEquals(seq1.getValue().size(), seq2.getValue().size()); in compareNodes()
148 for (NodeTuple child1 : seq1.getValue()) { in compareNodes()
/external/webrtc/common_audio/signal_processing/
Dcross_correlation.c15 const int16_t* seq1, in WebRtcSpl_CrossCorrelationC() argument
26 corr += (seq1[j] * seq2[j]) >> right_shifts; in WebRtcSpl_CrossCorrelationC()
Dcross_correlation_mips.c14 const int16_t* seq1, in WebRtcSpl_CrossCorrelation_mips() argument
24 int16_t *pseq1_0 = (int16_t*)&seq1[0]; in WebRtcSpl_CrossCorrelation_mips()
Dcross_correlation_neon.c69 const int16_t* seq1, in WebRtcSpl_CrossCorrelationNeon() argument
78 const int16_t* seq1_ptr = seq1; in WebRtcSpl_CrossCorrelationNeon()
/external/igt-gpu-tools/tests/
Dkms_vblank.c341 int seq1, seq2; in vblank_ts_cont() local
348 seq1 = get_vblank(fd, data->pipe, 0); in vblank_ts_cont()
392 igt_debug("testing ts continuity: Current frame %u, old frame %u\n", seq2, seq1); in vblank_ts_cont()
394 …igt_assert_f(seq2 - seq1 >= 0, "elapsed %f(%d vblanks) unexpected vblank seq %u, should be > %u\n"… in vblank_ts_cont()
395 estimated_vblanks, seq2, seq1); in vblank_ts_cont()
396 …igt_assert_f(seq2 - seq1 <= estimated_vblanks + VBLANK_ERR, "elapsed %f(%d vblanks) unexpected vbl… in vblank_ts_cont()
397 estimated_vblanks, seq2, seq1 + estimated_vblanks); in vblank_ts_cont()
/external/webrtc/video/
Dsend_delay_stats.h52 bool operator()(uint16_t seq1, uint16_t seq2) const { in operator()
53 return IsNewerSequenceNumber(seq2, seq1); in operator()
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/
Dcase.py702 def assertSequenceEqual(self, seq1, seq2, argument
720 if not isinstance(seq1, seq_type):
722 % (seq_type_name, safe_repr(seq1)))
731 len1 = len(seq1)
744 if seq1 == seq2:
747 seq1_repr = repr(seq1)
758 item1 = seq1[i]
777 not isinstance(seq1, type(seq2))):
786 (len2, seq1[len2]))
801 difflib.ndiff(pprint.pformat(seq1).splitlines(),
/external/python/cpython2/Lib/unittest/
Dcase.py624 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument
640 if not isinstance(seq1, seq_type):
642 % (seq_type_name, safe_repr(seq1)))
651 len1 = len(seq1)
664 if seq1 == seq2:
667 seq1_repr = safe_repr(seq1)
678 item1 = seq1[i]
697 type(seq1) != type(seq2)):
706 (len2, safe_repr(seq1[len2])))
721 difflib.ndiff(pprint.pformat(seq1).splitlines(),
/external/python/cpython3/Lib/unittest/
Dcase.py922 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument
938 if not isinstance(seq1, seq_type):
940 % (seq_type_name, safe_repr(seq1)))
949 len1 = len(seq1)
962 if seq1 == seq2:
967 _common_shorten_repr(seq1, seq2))
971 item1 = seq1[i]
990 type(seq1) != type(seq2)):
999 (len2, safe_repr(seq1[len2])))
1014 difflib.ndiff(pprint.pformat(seq1).splitlines(),
/external/python/cpython2/Lib/test/
Dtest_difflib.py36 seq1 = 'b' * 200
39 sm = difflib.SequenceMatcher(None, seq1, seq2)
43 sm = difflib.SequenceMatcher(None, seq1, seq2, autojunk=False)
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DParserSequenceTest.java54 JsonParserSequence seq1 = JsonParserSequence.createFlattened(true, p1, p2); in testMultiLevel() local
55 JsonParserSequence seq = JsonParserSequence.createFlattened(false, seq1, p3); in testMultiLevel()
/external/python/cpython3/Modules/clinic/
Ditertoolsmodule.c.h536 itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2);
547 PyObject *seq1; in itertools_compress() local
554 seq1 = fastargs[0]; in itertools_compress()
556 return_value = itertools_compress_impl(type, seq1, seq2); in itertools_compress()
/external/webrtc/common_audio/signal_processing/include/
Dsignal_processing_library.h504 const int16_t* seq1,
512 const int16_t* seq1,
520 const int16_t* seq1,
529 const int16_t* seq1,
/external/openscreen/third_party/abseil/src/absl/random/internal/
Dpcg_engine_test.cc53 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
54 engine.seed(seq1); in TYPED_TEST()
/external/abseil-cpp/absl/random/internal/
Dpcg_engine_test.cc53 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
54 engine.seed(seq1); in TYPED_TEST()
/external/webrtc/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine_test.cc53 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
54 engine.seed(seq1); in TYPED_TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine_test.cc53 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
54 engine.seed(seq1); in TYPED_TEST()

123