Searched refs:index1 (Results 1 - 25 of 145) sorted by relevance

123456

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
H A DruniSACfixfloat.txt18 index1=0
25 let "index1=index1+1"
27 $ISACFIXFLOAT $INDIR/$channel -m 1 -PLC $INDIR/"$file" $OUTDIR/flfx$index1"$file" >> $LOGFILE
28 $ISACFIXFLOAT $INDIR/$channel -m 2 -PLC $INDIR/"$file" $OUTDIR/fxfl$index1"$file" >> $LOGFILE
33 index1=0
37 let "index1=index1+1"
38 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 1 $INDIR/"$file" $OUTDIR/flfxnb1_$index1"$file" >> $LOGFILE
39 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 1 $INDIR/"$file" $OUTDIR/fxflnb1_$index1"
[all...]
H A DruniSACLongtest.txt22 index1=0
30 let "index1=index1+1"
31 $ISAC -I $rate -FL 30 $INDIR/"$file" $OUTDIR/i30_$index1"$file" >> $LOGFILE
32 $ISAC -I $rate -FL 60 $INDIR/"$file" $OUTDIR/i60_$index1"$file" >> $LOGFILE
42 index1=0
46 let "index1=index1+1"
47 $ISAC $INDIR/${CHANNELLIST[0]} -FL 30 -FIXED_FL $INDIR/"$file" $OUTDIR/a30_$index1"$file" >> $LOGFILE
48 $ISAC $INDIR/${CHANNELLIST[0]} -FL 60 -FIXED_FL $INDIR/"$file" $OUTDIR/a60_$index1"
[all...]
H A DruniSACNB.txt22 index1=0
31 let "index1=index1+1"
32 $ISAC $rate -FL 30 -NB 1 $INDIR/"$file" $OUTDIR/nb130_$index1"$file" >> $LOGFILE
33 $ISAC $rate -FL 60 -NB 1 $INDIR/"$file" $OUTDIR/nb160_$index1"$file" >> $LOGFILE
34 $ISAC $rate -FL 30 -NB 2 $INDIR/"$file" $OUTDIR/nb230_$index1"$file" >> $LOGFILE
35 $ISAC $rate -FL 60 -NB 2 $INDIR/"$file" $OUTDIR/nb260_$index1"$file" >> $LOGFILE
36 $ISAC $rate -FL 30 -NB 2 -PL 10 $INDIR/"$file" $OUTDIR/nb2plc30_$index1"$file" >> $LOGFILE
37 $ISAC $rate -FL 60 -NB 2 -PL 10 $INDIR/"$file" $OUTDIR/nb2plc60_$index1"$file" >> $LOGFILE
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/
H A DruniSACfixfloat.txt18 index1=0
25 let "index1=index1+1"
27 $ISACFIXFLOAT $INDIR/$channel -m 1 -PLC $INDIR/"$file" $OUTDIR/flfx$index1"$file" >> $LOGFILE
28 $ISACFIXFLOAT $INDIR/$channel -m 2 -PLC $INDIR/"$file" $OUTDIR/fxfl$index1"$file" >> $LOGFILE
33 index1=0
37 let "index1=index1+1"
38 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 1 $INDIR/"$file" $OUTDIR/flfxnb1_$index1"$file" >> $LOGFILE
39 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 1 $INDIR/"$file" $OUTDIR/fxflnb1_$index1"
[all...]
/external/libldac/src/
H A Dmdct_ldac.c29 int coef, index0, index1, offset; local
57 index1 = 1 << (i+1);
66 c = p_work[index1+0] * cc + p_work[index1+1] * cs;
67 d = p_work[index1+0] * cs - p_work[index1+1] * cc;
71 p_work[index1+0] = a - c;
72 p_work[index1+1] = b - d;
74 index1 += offset;
77 index1
[all...]
H A Dmdct_fixp_ldac.c29 INT32 coef, index0, index1, offset; local
79 index1 = 1 << (i+1);
84 g0 = mul_rsftrnd_ldac(a_work[index1], p_c[coef], LDAC_Q_MDCT_COS+1);
85 g1 = mul_rsftrnd_ldac(a_work[index1+1], p_s[coef], LDAC_Q_MDCT_SIN+1);
88 g0 = mul_rsftrnd_ldac(a_work[index1], p_s[coef], LDAC_Q_MDCT_SIN+1);
89 g1 = mul_rsftrnd_ldac(a_work[index1+1], p_c[coef], LDAC_Q_MDCT_COS+1);
97 a_work[index1] = g0 - g2;
98 a_work[index1+1] = g1 - g3;
101 index1 += 2;
105 index1
[all...]
/external/tensorflow/tensorflow/contrib/image/kernels/
H A Dbipartite_match_op.cc24 DistancePair(int i1, int i2, double d) : index1(i1), index2(i2), dist(d) {}
28 int index1, index2; member in struct:__anon25857::DistancePair
95 for (int index1 = 0; index1 < num_valid_rows; index1++) {
98 DistancePair(index1, index2, distance_mat(index1, index2)));
107 if (row_to_col_match_vec[match.index1] == -1 &&
109 row_to_col_match_vec[match.index1] = match.index2;
110 col_to_row_match_vec[match.index2] = match.index1;
[all...]
/external/skia/src/core/
H A DSkLineClipper.cpp97 int index0, index1; local
101 index1 = 1;
104 index1 = 0;
114 if (tmp[index1].fY > clip.fBottom) {
115 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
120 index1 = 1;
123 index1 = 0;
127 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
128 tmp[index0].fX < tmp[index1].fX) {
136 if (tmp[index1]
162 int index0, index1; local
[all...]
/external/skqp/src/core/
H A DSkLineClipper.cpp97 int index0, index1; local
101 index1 = 1;
104 index1 = 0;
114 if (tmp[index1].fY > clip.fBottom) {
115 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
120 index1 = 1;
123 index1 = 0;
127 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
128 tmp[index0].fX < tmp[index1].fX) {
136 if (tmp[index1]
162 int index0, index1; local
[all...]
/external/tensorflow/tensorflow/core/kernels/neon/
H A Dtypes.h49 int MatchingArraySize(const ArrayType1& array1, int index1, argument
51 DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
52 return ArraySize(array1, index1);
56 int MatchingArraySize(const ArrayType1& array1, int index1, argument
58 DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
59 return MatchingArraySize(array1, index1, args...);
/external/python/cpython2/Lib/idlelib/
H A DUndoDelegator.py83 def delete(self, index1, index2=None):
84 self.addcmd(DeleteCommand(index1, index2))
166 def __init__(self, index1, index2, chars, tags=None):
169 self.index1 = index1
177 t = (self.index1, self.index2, self.chars, self.tags)
210 def __init__(self, index1, chars, tags=None):
211 Command.__init__(self, index1, None, chars, tags)
215 self.index1 = text.index(self.index1)
[all...]
H A DColorDelegator.py86 def delete(self, index1, index2=None):
87 index1 = self.index(index1)
88 self.delegate.delete(index1, index2)
89 self.notify_range(index1)
95 def notify_range(self, index1, index2=None):
96 self.tag_add("TODO", index1, index2)
/external/python/cpython3/Lib/idlelib/
H A Dundo.py85 def delete(self, index1, index2=None):
86 self.addcmd(DeleteCommand(index1, index2))
167 def __init__(self, index1, index2, chars, tags=None):
170 self.index1 = index1
178 t = (self.index1, self.index2, self.chars, self.tags)
210 def __init__(self, index1, chars, tags=None):
211 Command.__init__(self, index1, None, chars, tags)
215 self.index1 = text.index(self.index1)
[all...]
H A Dcolorizer.py104 def delete(self, index1, index2=None):
105 index1 = self.index(index1)
106 self.delegate.delete(index1, index2)
107 self.notify_range(index1)
113 def notify_range(self, index1, index2=None):
114 self.tag_add("TODO", index1, index2)
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/
H A Dtypes.h104 int MatchingArraySize(const ArrayType1& array1, int index1, argument
106 TFLITE_DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
107 return ArraySize(array1, index1);
111 int MatchingArraySize(const ArrayType1& array1, int index1, argument
113 TFLITE_DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
114 return MatchingArraySize(array1, index1, args...);
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java206 int index1 = 0;
211 while (index1 < length1 && field1[index1] == null) {
212 index1++;
217 boolean atEndOf1 = index1 >= length1;
225 } else if (!Arrays.equals(field1[index1], field2[index2])) {
229 index1++;
241 int index1 = 0;
246 while (index1 < length1 && field1[index1]
[all...]
/external/proguard/src/proguard/
H A DConfigurationChecker.java191 for (int index1 = 0; index1 < classPath1.size(); index1++)
193 ClassPathEntry entry1 = classPath1.get(index1);
197 if (classPath1 != classPath2 || index1 != index2)
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dmock_tk.py197 def get(self, index1, index2=None):
198 "Return slice from index1 to index2 (default is 'index1+1')."
200 startline, startchar = self._decode(index1)
216 def delete(self, index1, index2=None):
217 '''Delete slice from index1 to index2 (default is 'index1+1').
222 startline, startchar = self._decode(index1, -1)
228 # deleting non-terminal \n, convert 'index1+1 to start of next line
231 # do not delete terminal \n if index1
[all...]
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dmock_tk.py197 def get(self, index1, index2=None):
198 "Return slice from index1 to index2 (default is 'index1+1')."
200 startline, startchar = self._decode(index1)
216 def delete(self, index1, index2=None):
217 '''Delete slice from index1 to index2 (default is 'index1+1').
222 startline, startchar = self._decode(index1, -1)
228 # deleting non-terminal \n, convert 'index1+1 to start of next line
231 # do not delete terminal \n if index1
[all...]
/external/icu/icu4c/source/common/
H A Dutrie2_impl.h145 int32_t index1[UNEWTRIE2_INDEX_1_LENGTH]; member in struct:UNewTrie2
/external/python/cpython2/Modules/
H A Dunicodedata_db.h667 static unsigned char index1[] = { variable
/external/python/cpython3/Modules/
H A Dunicodedata_db.h698 static unsigned char index1[] = { variable
/external/protobuf/src/google/protobuf/util/
H A Dmessage_differencer.cc560 int index1 = 0; local
563 while (index1 < fields1.size() && index2 < fields2.size()) {
564 const FieldDescriptor* field1 = fields1[index1];
569 combined_fields->push_back(fields1[index1]);
571 ++index1;
578 combined_fields->push_back(fields1[index1]);
579 ++index1;
749 int index1, int index2) {
753 *message1, *message2, repeated_field, index1, index2,
766 *message1, *message2, repeated_field, index1, index
744 IsMatch(const FieldDescriptor* repeated_field, const MapKeyComparator* key_comparator, const Message* message1, const Message* message2, const vector<SpecificField>& parent_fields, int index1, int index2) argument
884 CompareFieldValue(const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2) argument
893 CompareFieldValueUsingParentFields( const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2, vector<SpecificField>* parent_fields) argument
1090 int index1 = 0; local
1439 GetFieldComparisonResult( const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2, const FieldContext* field_context) argument
[all...]
/external/freetype/src/type1/
H A Dt1afm.c94 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); local
95 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 );
98 if ( index1 > index2 )
100 else if ( index1 < index2 )
204 kp->index1 = FT_Get_Char_Index( t1_face, p[0] );
349 midi = KERN_INDEX( mid->index1, mid->index2 );
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOM2Helper.java236 int index1 = ((DOMOrder) node1).getUid();
239 return index1 <= index2;

Completed in 802 milliseconds

123456