Searched refs:seq2 (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dmy_corr.h29 int32_t *corr, /* (o) correlation of seq1 and seq2 */
32 const int16_t *seq2, /* (i) second sequence */
33 int16_t dim2 /* (i) dimension seq2 */
H A Dmy_corr.c26 int32_t *corr, /* (o) correlation of seq1 and seq2 */
29 const int16_t *seq2, /* (i) second sequence */
30 int16_t dim2 /* (i) dimension seq2 */
48 WebRtcSpl_CrossCorrelation(corr, (int16_t*)seq2, seq1, dim2, loops, scale, 1);
25 WebRtcIlbcfix_MyCorr( int32_t *corr, int16_t *seq1, int16_t dim1, const int16_t *seq2, int16_t dim2 ) argument
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dcross_correlation.c16 const int16_t* seq2,
27 *cross_correlation += (seq1[j] * seq2[step_seq2 * i + j]) >> right_shifts;
14 WebRtcSpl_CrossCorrelationC(int32_t* cross_correlation, const int16_t* seq1, const int16_t* seq2, int16_t dim_seq, int16_t dim_cross_correlation, int16_t right_shifts, int16_t step_seq2) argument
H A Dcross_correlation_mips.c15 const int16_t* seq2,
25 int16_t *pseq2_0 = (int16_t*)&seq2[0];
13 WebRtcSpl_CrossCorrelation_mips(int32_t* cross_correlation, const int16_t* seq1, const int16_t* seq2, int16_t dim_seq, int16_t dim_cross_correlation, int16_t right_shifts, int16_t step_seq2) argument
H A Dcross_correlation_neon.S24 @ r2: *seq2 (function argument)
105 @ int16_t* seq2,
120 @ int16_t *seq2_ptr = seq2 + (step_seq2 * i);
/external/chromium_org/base/threading/
H A Dsimple_thread_unittest.cc158 AtomicSequenceNumber seq2; local
161 VerifyPoolRunner verifier(&seq2, 9, &event);
167 EXPECT_EQ(seq2.GetNext(), 10);
/external/webrtc/src/common_audio/signal_processing/
H A Dcross_correlation.c21 WebRtc_Word16* seq2, WebRtc_Word16 dim_seq,
68 seq2Ptr = seq2 - dim_cross_correlation + 1;
73 seq2Ptr = seq2;
159 seq2Ptr = seq2 + (step_seq2 * i);
20 WebRtcSpl_CrossCorrelation(WebRtc_Word32* cross_correlation, WebRtc_Word16* seq1, WebRtc_Word16* seq2, WebRtc_Word16 dim_seq, WebRtc_Word16 dim_cross_correlation, WebRtc_Word16 right_shifts, WebRtc_Word16 step_seq2) argument
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp129 FooBarSequence seq2; local
130 yin >> seq2; local
133 EXPECT_EQ(seq2.size(), 2UL);
134 FooBar& map1 = seq2[0];
135 FooBar& map2 = seq2[1];
865 SecondsSequence seq2; local
866 yin >> seq2; local
869 EXPECT_EQ(seq2.size(), 3UL);
870 EXPECT_EQ(seq2[0], 4000U);
871 EXPECT_EQ(seq2[
990 KindAndFlagsSequence seq2; local
991 yin >> seq2; local
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Ddict.pxd154 int PyDict_MergeFromSeq2(object a, object seq2, int override) except -1
156 # seq2. seq2 must be an iterable object producing iterable objects
162 #def PyDict_MergeFromSeq2(a, seq2, override):
163 # for key, value in seq2:
/external/lldb/test/unittest2/
H A Dcase.py647 def assertSequenceEqual(self, seq1, seq2,
656 seq2: The second sequence to compare.
668 if not isinstance(seq2, seq_type):
670 % (seq_type_name, safe_repr(seq2)))
683 len2 = len(seq2)
689 if seq1 == seq2:
693 seq2_repr = repr(seq2)
710 item2 = seq2[i]
722 type(seq1) != type(seq2)):
740 (len1, seq2[len
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
H A Dsignal_processing_library.h538 // two sequences |seq1| and |seq2|.
539 // |seq1| is fixed and |seq2| slides as the pointer is increased with the
542 // buffer size of |seq2|
546 // - seq2 : Second sequence (slides |step_vector2| for each
562 const int16_t* seq2,
570 const int16_t* seq2,
578 const int16_t* seq2,
587 const int16_t* seq2,
/external/opencv/cv/src/
H A DmycvHaarDetectObjects.cpp894 CvSeq *seq = 0, *seq2 = 0, *idx_seq = 0, *big_seq = 0; local
939 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1496 cvSeqPush( seq2, &comp );
1503 for( i = 0; i < seq2->total; i++ )
1505 CvAvgComp r1 = *(CvAvgComp*)cvGetSeqElem( seq2, i );
1508 for( j = 0; j < seq2->total; j++ )
1510 CvAvgComp r2 = *(CvAvgComp*)cvGetSeqElem( seq2, j );
1532 for( i = 0; i < seq2->total; i++ )
1534 CvAvgComp* comp = (CvAvgComp*)cvGetSeqElem( seq2, i );
H A Dcvhaar.cpp875 CvSeq *seq = 0, *seq2 = 0, *idx_seq = 0, *big_seq = 0; local
911 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1460 cvSeqPush( seq2, &comp );
1467 for( i = 0; i < seq2->total; i++ )
1469 CvAvgComp r1 = *(CvAvgComp*)cvGetSeqElem( seq2, i );
1472 for( j = 0; j < seq2->total; j++ )
1474 CvAvgComp r2 = *(CvAvgComp*)cvGetSeqElem( seq2, j );
1496 for( i = 0; i < seq2->total; i++ )
1498 CvAvgComp* comp = (CvAvgComp*)cvGetSeqElem( seq2, i );
/external/lldb/test/unittest2/test/
H A Dtest_case.py907 seq2 = 'b' + 'x' * 80**2
909 pprint.pformat(seq2).splitlines()))
915 self.assertSequenceEqual(seq1, seq2)
925 self.assertSequenceEqual(seq1, seq2)
935 self.assertSequenceEqual(seq1, seq2)
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_cc_functions.c1932 between(uint32_t seq1, uint32_t seq2, uint32_t seq3) argument
1934 return (seq3 - seq2 >= seq1 - seq2);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core.c1357 int seq2,
1367 name, seq1, seq2);
1354 ReopenWav(rtc_WavFile** wav_file, const char* name, int seq1, int seq2, int sample_rate) argument

Completed in 3896 milliseconds