Searched refs:index2 (Results 1 - 25 of 152) sorted by relevance

1234567

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_c.c28 int* index2) {
38 tmpW32 += ubufQQpos2[*index2 + j] * coefficient[j];
66 tmpW32 = inputBuf[*index2] - sign * tmpW16;
67 outputBuf[*index2] = WebRtcSpl_SatW32ToW16(tmpW32);
68 tmpW32 = inputBuf[*index2] + outputBuf[*index2];
69 outputBuf2[*index2 + PITCH_BUFFSIZE] = WebRtcSpl_SatW32ToW16(tmpW32);
71 (*index2)++;
19 WebRtcIsacfix_PitchFilterCore(int loopNumber, int16_t gain, size_t index, int16_t sign, int16_t* inputState, int16_t* outputBuf2, const int16_t* coefficient, int16_t* inputBuf, int16_t* outputBuf, int* index2) argument
H A Dpitch_filter_armv6.S31 @ int* index2) {
39 ldr r6, [sp, #60] @ index2
40 ldr r7, [r6] @ *index2
45 str r4, [r6] @ Store return value to index2.
48 add r12, r10 @ &outputBuf[*index2]
49 add r8, r10 @ &inputBuf[*index2]
51 add r4, r7, #PITCH_BUFFSIZE @ *index2 + PITCH_BUFFSIZE
52 add r6, r3, r4, lsl #1 @ &outputBuf2[*index2 + PITCH_BUFFSIZE]
54 sub r4, #2 @ *index2 + PITCH_BUFFSIZE - index - 2
55 add r3, r4, lsl #1 @ &ubufQQpos2[*index2]
[all...]
H A Dpitch_filter_mips.c22 int* index2) {
23 int ind2t = *index2;
132 (*index2) += loopNumber;
13 WebRtcIsacfix_PitchFilterCore(int loopNumber, int16_t gain, size_t index, int16_t sign, int16_t* inputState, int16_t* outputBuf2, const int16_t* coefficient, int16_t* inputBuf, int16_t* outputBuf, int* index2) argument
H A Dpitch_estimator.h49 int* index2);
/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
96 for (int index2 = 0; index2 < num_input_columns; index2++) {
98 DistancePair(index1, index2, distance_mat(index1, index2)));
108 col_to_row_match_vec[match.index2] == -1) {
109 row_to_col_match_vec[match.index1] = match.index2;
110 col_to_row_match_vec[match.index2]
[all...]
/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):
170 self.index2 = index2
177 t = (self.index1, self.index2, self.chars, self.tags)
220 self.index2 = text.index("%s+%dc" % (self.index1, len(self.chars)))
233 text.delete(self.index1, self.index2)
241 if self.index2 != cmd.index1:
250 self.index2
[all...]
/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):
171 self.index2 = index2
178 t = (self.index1, self.index2, self.chars, self.tags)
220 self.index2 = text.index("%s+%dc" % (self.index1, len(self.chars)))
233 text.delete(self.index1, self.index2)
241 if self.index2 != cmd.index1:
250 self.index2
[all...]
/external/tensorflow/tensorflow/core/kernels/neon/
H A Dtypes.h50 const ArrayType2& array2, int index2) {
51 DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
57 const ArrayType2& array2, int index2, Args... args) {
58 DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
49 MatchingArraySize(const ArrayType1& array1, int index1, const ArrayType2& array2, int index2) argument
56 MatchingArraySize(const ArrayType1& array1, int index1, const ArrayType2& array2, int index2, Args... args) argument
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java108 int target, index2;
156 index2 = (index & ~3) + 4;
157 target = index + ci.s32bitAt(index2);
160 int npairs = ci.s32bitAt(index2 + 4);
161 index2 += 12;
163 target = index + ci.s32bitAt(index2);
166 index2 += 8;
170 int low = ci.s32bitAt(index2 + 4);
171 int high = ci.s32bitAt(index2 + 8);
173 index2
[all...]
/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')."
201 if index2 is None:
204 endline, endchar = self._decode(index2)
216 def delete(self, index1, index2=None):
217 '''Delete slice from index1 to index2 (default is 'index1+1').
219 Adjust default index2 ('index+1) for line ends.
223 if index2 is None:
234 endline, endchar = self._decode(index2, -1)
247 def compare(self, index1, op, index2)
[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')."
201 if index2 is None:
204 endline, endchar = self._decode(index2)
216 def delete(self, index1, index2=None):
217 '''Delete slice from index1 to index2 (default is 'index1+1').
219 Adjust default index2 ('index+1) for line ends.
223 if index2 is None:
234 endline, endchar = self._decode(index2, -1)
247 def compare(self, index1, op, index2)
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java208 int index2 = 0;
214 while (index2 < length2 && field2[index2] == null) {
215 index2++;
218 boolean atEndOf2 = index2 >= length2;
225 } else if (!Arrays.equals(field1[index1], field2[index2])) {
230 index2++;
243 int index2 = 0;
249 while (index2 < length2 && field2[index2]
[all...]
/external/proguard/src/proguard/
H A DConfigurationChecker.java195 for (int index2 = 0; index2 < classPath2.size(); index2++)
197 if (classPath1 != classPath2 || index1 != index2)
199 ClassPathEntry entry2 = classPath2.get(index2);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTrie2Writable.java69 index2[i]=j;
99 index2[i]=UNEWTRIE2_DATA_NULL_OFFSET;
107 index2[UNEWTRIE2_INDEX_GAP_OFFSET+i]=-1;
112 index2[UNEWTRIE2_INDEX_2_NULL_OFFSET+i]=UNEWTRIE2_DATA_NULL_OFFSET;
166 block=index2[i2];
175 if(newTop > index2.length) {
184 System.arraycopy(index2, index2NullOffset, index2, newBlock, UTRIE2_INDEX_2_BLOCK_LENGTH);
260 oldBlock=index2[i2];
264 index2[i
1191 private int[] index2 = new int[UNEWTRIE2_MAX_INDEX_2_LENGTH]; field in class:Trie2Writable
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie2Writable.java67 index2[i]=j;
97 index2[i]=UNEWTRIE2_DATA_NULL_OFFSET;
105 index2[UNEWTRIE2_INDEX_GAP_OFFSET+i]=-1;
110 index2[UNEWTRIE2_INDEX_2_NULL_OFFSET+i]=UNEWTRIE2_DATA_NULL_OFFSET;
164 block=index2[i2];
173 if(newTop > index2.length) {
182 System.arraycopy(index2, index2NullOffset, index2, newBlock, UTRIE2_INDEX_2_BLOCK_LENGTH);
258 oldBlock=index2[i2];
262 index2[i
1189 private int[] index2 = new int[UNEWTRIE2_MAX_INDEX_2_LENGTH]; field in class:Trie2Writable
[all...]
/external/python/cpython2/Lib/
H A Dntpath.py125 index2 = normp.find(sep, index + 1)
128 if index2 == index + 1:
130 if index2 == -1:
131 index2 = len(p)
132 return p[:index2], p[index2:]
158 index2 = normp.find('/', index + 1)
161 if index2 == index + 1:
163 if index2 == -1:
164 index2
[all...]
/external/icu/icu4c/source/common/
H A Dutrie2_impl.h146 int32_t index2[UNEWTRIE2_MAX_INDEX_2_LENGTH]; member in struct:UNewTrie2
/external/python/cpython2/Modules/
H A Dunicodedata_db.h1183 static unsigned short index2[] = { variable
/external/python/cpython3/Modules/
H A Dunicodedata_db.h1321 static unsigned short index2[] = { variable
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/
H A Dtypes.h105 const ArrayType2& array2, int index2) {
106 TFLITE_DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
112 const ArrayType2& array2, int index2, Args... args) {
113 TFLITE_DCHECK_EQ(ArraySize(array1, index1), ArraySize(array2, index2));
104 MatchingArraySize(const ArrayType1& array1, int index1, const ArrayType2& array2, int index2) argument
111 MatchingArraySize(const ArrayType1& array1, int index1, const ArrayType2& array2, int index2, Args... args) argument
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
H A DruniSACLongtest.txt23 index2=0
36 let "index2=index2+1"
37 $ISAC $INDIR/$channel $INDIR/"$file" $OUTDIR/a$index2"$file" >> $LOGFILE
/external/protobuf/src/google/protobuf/util/
H A Dmessage_differencer.cc561 int index2 = 0; local
563 while (index1 < fields1.size() && index2 < fields2.size()) {
565 const FieldDescriptor* field2 = fields2[index2];
574 combined_fields->push_back(fields2[index2]);
576 ++index2;
580 ++index2;
749 int index1, int index2) {
753 *message1, *message2, repeated_field, index1, index2,
766 *message1, *message2, repeated_field, index1, index2,
774 reflection2->GetRepeatedMessage(*message2, repeated_field, index2);
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
1091 int index2 = 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 );
95 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); local
98 if ( index1 > index2 )
100 else if ( index1 < index2 )
205 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
349 midi = KERN_INDEX( mid->index1, mid->index2 );
/external/dng_sdk/source/
H A Ddng_utils.cpp660 for (uint32 index2 = 0; index2 < count2; index2++)
683 for (uint32 index2 = 0; index2 < count2; index2++)
705 for (uint32 index2 = 0; index2 < count2; index2++)
/external/opencv/cvaux/src/
H A Ddecomppoly.cpp150 int index1, index2, index3;
183 index2 = 1;
187 x2 = contour[ index2 ].x;
188 y2 = contour[ index2 ].y;
243 pointExist[ index2 ] = 0;
244 index2 = index3;
266 index1 = index2;
269 index2 = index3;
295 index1 = index2;
298 index2
[all...]

Completed in 1570 milliseconds

1234567