Searched refs:seq1 (Results 1 - 23 of 23) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Denh_upsample.h30 int16_t *seq1 /* (i) unupsampled sequence */
H A Dmy_corr.c26 int32_t* corr, /* (o) correlation of seq1 and seq2 */
27 const int16_t* seq1, /* (i) first sequence */
28 size_t dim1, /* (i) dimension first seq1 */
39 max=WebRtcSpl_MaxAbsValueW16(seq1, dim1);
50 WebRtcSpl_CrossCorrelation(corr, seq2, seq1, dim2, loops, scale, 1);
25 WebRtcIlbcfix_MyCorr( int32_t* corr, const int16_t* seq1, size_t dim1, const int16_t* seq2, size_t dim2 ) argument
H A Dmy_corr.h29 int32_t* corr, /* (o) correlation of seq1 and seq2 */
30 const int16_t* seq1, /* (i) first sequence */
31 size_t dim1, /* (i) dimension first seq1 */
H A Denh_upsample.c28 int16_t *seq1 /* (i) unupsampled sequence */
41 ps=seq1+2;
48 ps=seq1+3;
56 ps=seq1+4;
80 ps = seq1+dim1-1;
89 w16tmp = seq1+4;
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dcross_correlation.c15 const int16_t* seq1,
26 corr += (seq1[j] * seq2[j]) >> right_shifts;
14 WebRtcSpl_CrossCorrelationC(int32_t* cross_correlation, const int16_t* seq1, const int16_t* seq2, size_t dim_seq, size_t dim_cross_correlation, int right_shifts, int step_seq2) argument
H A Dcross_correlation_mips.c14 const int16_t* seq1,
24 int16_t *pseq1_0 = (int16_t*)&seq1[0];
13 WebRtcSpl_CrossCorrelation_mips(int32_t* cross_correlation, const int16_t* seq1, const int16_t* seq2, size_t dim_seq, size_t dim_cross_correlation, int right_shifts, int step_seq2) argument
H A Dcross_correlation_neon.c68 const int16_t* seq1,
77 const int16_t* seq1_ptr = seq1;
67 WebRtcSpl_CrossCorrelationNeon(int32_t* cross_correlation, const int16_t* seq1, const int16_t* seq2, size_t dim_seq, size_t dim_cross_correlation, int right_shifts, int step_seq2) argument
/external/snakeyaml/src/test/java/org/pyyaml/
H A DPyStructureTest.java133 SequenceNode seq1 = (SequenceNode) node1;
135 assertEquals(seq1.getTag(), seq2.getTag());
136 assertEquals(seq1.getValue().size(), seq2.getValue().size());
138 for (Node child1 : seq1.getValue()) {
143 MappingNode seq1 = (MappingNode) node1;
145 assertEquals(seq1.getTag(), seq2.getTag());
146 assertEquals(seq1.getValue().size(), seq2.getValue().size());
148 for (NodeTuple child1 : seq1.getValue()) {
/external/python/cpython2/Lib/test/
H A Dtest_difflib.py36 seq1 = 'b' * 200
39 sm = difflib.SequenceMatcher(None, seq1, seq2)
43 sm = difflib.SequenceMatcher(None, seq1, seq2, autojunk=False)
/external/python/cpython2/Lib/unittest/
H A Dcase.py623 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
630 seq1: The first sequence to compare.
639 if not isinstance(seq1, seq_type):
641 % (seq_type_name, safe_repr(seq1)))
650 len1 = len(seq1)
663 if seq1 == seq2:
666 seq1_repr = safe_repr(seq1)
677 item1 = seq1[i]
696 type(seq1) != type(seq2)):
705 (len2, safe_repr(seq1[len
[all...]
/external/python/cpython3/Lib/unittest/
H A Dcase.py904 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
911 seq1: The first sequence to compare.
920 if not isinstance(seq1, seq_type):
922 % (seq_type_name, safe_repr(seq1)))
931 len1 = len(seq1)
944 if seq1 == seq2:
949 _common_shorten_repr(seq1, seq2))
953 item1 = seq1[i]
972 type(seq1) != type(seq2)):
981 (len2, safe_repr(seq1[len
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/include/
H A Dsignal_processing_library.h497 // two sequences |seq1| and |seq2|.
498 // |seq1| is fixed and |seq2| slides as the pointer is increased with the
504 // - seq1 : First sequence (fixed throughout the correlation)
520 const int16_t* seq1,
528 const int16_t* seq1,
536 const int16_t* seq1,
545 const int16_t* seq1,
/external/python/cpython3/Lib/test/
H A Dtest_difflib.py51 seq1 = 'b' * 200
54 sm = difflib.SequenceMatcher(None, seq1, seq2)
59 sm = difflib.SequenceMatcher(None, seq1, seq2, autojunk=False)
H A Dtest_collections.py1556 def assert_index_same(seq1, seq2, index_args):
1558 expected = seq1.index(*index_args)
1565 actual, expected, '%r.index%s' % (seq1, index_args))
/external/tensorflow/tensorflow/contrib/training/python/training/
H A Dsequence_queueing_state_saver_test.py44 "seq1": np.random.rand(padded_length, 5),
52 self.assertTrue(isinstance(input_wrapper.sequences["seq1"], ops.Tensor))
69 "seq1": np.random.rand(padded_length, 5),
97 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
119 np.tile(sequences["seq1"][np.newaxis, 0:2, :],
135 (next_batch.key, next_batch.next_key, next_batch.sequences["seq1"],
147 np.tile(sequences["seq1"][np.newaxis, 2:4, :],
169 "seq1": array_ops.placeholder(
192 sequences["seq1"]: np.random.rand(bad_padded_length, 5),
202 "seq1"
[all...]
/external/python/cpython2/Lib/unittest/test/
H A Dtest_case.py596 seq1 = 'a' + 'x' * 80**2
598 diff = '\n'.join(difflib.ndiff(pprint.pformat(seq1).splitlines(),
605 self.assertSequenceEqual(seq1, seq2)
615 self.assertSequenceEqual(seq1, seq2)
625 self.assertSequenceEqual(seq1, seq2)
/external/python/cpython3/Lib/unittest/test/
H A Dtest_case.py776 seq1 = 'a' + 'x' * 80**2
778 diff = '\n'.join(difflib.ndiff(pprint.pformat(seq1).splitlines(),
786 self.assertSequenceEqual(seq1, seq2)
796 self.assertSequenceEqual(seq1, seq2)
806 self.assertSequenceEqual(seq1, seq2)
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dtest_flow.py199 def _span_seq(self, seq1, seq2):
200 """Span sequence seq1 over sequence seq2.
202 E.g., seq1 = (('a', 'b'), 'c')
206 E.g., seq1 = ('a', 'b')
210 E.g., seq1 = (('a', 'b'), ('c', 'd'))
216 return tuple(tuple(to_list(s1) + to_list(s2)) for s1 in seq1
/external/python/cpython2/Python/
H A Dast.c2837 asdl_seq *seq1, *seq2; local
2842 seq1 = ast_for_suite(c, CHILD(n, 3));
2843 if (!seq1)
2849 return If(expression, seq1, seq2, LINENO(n), n->n_col_offset,
2946 asdl_seq *seq1, *seq2; local
2951 seq1 = ast_for_suite(c, CHILD(n, 3));
2952 if (!seq1)
2958 return While(expression, seq1, seq2, LINENO(n), n->n_col_offset,
/external/python/cpython3/Python/
H A Dast.c3559 asdl_seq *seq1, *seq2; local
3564 seq1 = ast_for_suite(c, CHILD(n, 3));
3565 if (!seq1)
3571 return If(expression, seq1, seq2, LINENO(n), n->n_col_offset,
3667 asdl_seq *seq1, *seq2; local
3672 seq1 = ast_for_suite(c, CHILD(n, 3));
3673 if (!seq1)
3679 return While(expression, seq1, seq2, LINENO(n), n->n_col_offset, c->c_arena);
/external/python/cpython2/Modules/
H A Ditertoolsmodule.c2819 PyObject *seq1, *seq2; local
2824 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO:compress", kwargs, &seq1, &seq2))
2827 data = PyObject_GetIter(seq1);
/external/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...
/external/python/cpython3/Modules/
H A Ditertoolsmodule.c3603 PyObject *seq1, *seq2; local
3608 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO:compress", kwargs, &seq1, &seq2))
3611 data = PyObject_GetIter(seq1);

Completed in 455 milliseconds