Searched refs:index2 (Results 1 - 25 of 166) 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/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java199 int index2 = 0;
205 while (index2 < length2 && field2[index2] == null) {
206 index2++;
209 boolean atEndOf2 = index2 >= length2;
216 } else if (!Arrays.equals(field1[index1], field2[index2])) {
221 index2++;
234 int index2 = 0;
240 while (index2 < length2 && field2[index2]
[all...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
H A DbtPairSet.java65 public void push_pair(int index1, int index2) { argument
66 CollisionJNI.btPairSet_push_pair(swigCPtr, this, index1, index2);
69 public void push_pair_inv(int index1, int index2) { argument
70 CollisionJNI.btPairSet_push_pair_inv(swigCPtr, this, index1, index2);
H A DGIM_PAIR.java85 public GIM_PAIR(int index1, int index2) { argument
86 this(CollisionJNI.new_GIM_PAIR__SWIG_2(index1, index2), true);
/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/vulkan-validation-layers/layers/
H A Dunique_objects.h296 for (uint32_t index2 = 0; index2 < pBindInfo[index0].pBufferBinds[index1].bindCount; ++index2) {
297 if (pBindInfo[index0].pBufferBinds[index1].pBinds[index2].memory) {
299 (VkDeviceMemory *)&(pBindInfo[index0].pBufferBinds[index1].pBinds[index2].memory);
300 original_memory1.push_back(pBindInfo[index0].pBufferBinds[index1].pBinds[index2].memory);
302 (VkDeviceMemory)((VkUniqueObject *)pBindInfo[index0].pBufferBinds[index1].pBinds[index2].memory)
317 for (uint32_t index2 = 0; index2 < pBindInfo[index0].pImageOpaqueBinds[index1].bindCount; ++index2) {
[all...]
/external/v8/src/js/
H A Dharmony-atomics.js136 function AtomicsFutexWakeOrRequeueJS(ia, index1, count, value, index2) {
141 index2 = ValidateIndex(index2, %_TypedArrayGetLength(ia));
143 index2 < 0 || index2 >= %_TypedArrayGetLength(ia)) {
146 return %AtomicsFutexWakeOrRequeue(ia, index1, count, value, index2);
/external/v8/test/mjsunit/harmony/
H A Dfutex.js272 var index2 = 5; variable
277 Atomics.futexWakeOrRequeue(i32a, index1, 1, 42, index2));
280 assertEquals(0, %AtomicsFutexNumWaitersForTesting(i32a, index2));
283 assertEquals(1, Atomics.futexWakeOrRequeue(i32a, index1, 1, 0, index2));
287 assertEquals(3, %AtomicsFutexNumWaitersForTesting(i32a, index2));
303 assertEquals(3, Atomics.futexWake(i32a, index2, 3));
316 assertEquals(0, %AtomicsFutexNumWaitersForTesting(i32a, index2));
335 index2 = 1;
337 assertEquals(0, %AtomicsFutexNumWaitersForTesting(i32a2, index2));
339 assertEquals(2, Atomics.futexWakeOrRequeue(i32a2, index1, 2, 0, index2));
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
H A DbtTriangleMesh.h57 void addTriangleIndices(int index1, int index2, int index3 );
/external/v8/test/mjsunit/compiler/
H A Ddeopt-inlined-from-call.js129 var index2 = f({d: 0, value: 3});
133 assertEquals(index1, index2);
149 var index2 = f({d: 0, value: 3});
153 assertEquals(index1, index2);
/external/proguard/src/proguard/
H A DConfigurationChecker.java184 for (int index2 = 0; index2 < classPath2.size(); index2++)
186 if (classPath1 != classPath2 || index1 != index2)
188 ClassPathEntry entry2 = classPath2.get(index2);
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DIntSet.java106 int index2 = hash2(key);
107 int key2 = keyTable[index2];
126 keyTable[index2] = key;
137 push(key, index1, key1, index2, key2, index3, key3);
184 int index2 = hash2(key);
185 int key2 = keyTable[index2];
187 keyTable[index2] = key;
200 push(key, index1, key1, index2, key2, index3, key3);
203 private void push (int insertKey, int index1, int key1, int index2, int key2, int index3, int key3) { argument
220 keyTable[index2]
[all...]
H A DObjectSet.java100 int index2 = hash2(hashCode);
101 T key2 = keyTable[index2];
120 keyTable[index2] = key;
131 push(key, index1, key1, index2, key2, index3, key3);
173 int index2 = hash2(hashCode);
174 T key2 = keyTable[index2];
176 keyTable[index2] = key;
189 push(key, index1, key1, index2, key2, index3, key3);
192 private void push (T insertKey, int index1, T key1, int index2, T key2, int index3, T key3) { argument
208 keyTable[index2]
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp109 unsigned index2 = (unsigned)subStream; local
112 if (index2 < Sizes.Size())
114 *value = Sizes[index2];
/external/v8/src/runtime/
H A Druntime-futex.cc63 CONVERT_SIZE_ARG_CHECKED(index2, 4);
66 CHECK_LT(index2, NumberToSize(isolate, sta->length()));
71 size_t addr2 = (index2 << 2) + NumberToSize(isolate, sta->byte_offset());
/external/icu/android_icu4j/src/main/java/android/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie2Writable.java65 index2[i]=j;
95 index2[i]=UNEWTRIE2_DATA_NULL_OFFSET;
103 index2[UNEWTRIE2_INDEX_GAP_OFFSET+i]=-1;
108 index2[UNEWTRIE2_INDEX_2_NULL_OFFSET+i]=UNEWTRIE2_DATA_NULL_OFFSET;
162 block=index2[i2];
171 if(newTop > index2.length) {
180 System.arraycopy(index2, index2NullOffset, index2, newBlock, UTRIE2_INDEX_2_BLOCK_LENGTH);
256 oldBlock=index2[i2];
260 index2[i
1187 private int[] index2 = new int[UNEWTRIE2_MAX_INDEX_2_LENGTH]; field in class:Trie2Writable
[all...]
/external/icu/icu4c/source/common/
H A Dutrie2_impl.h144 int32_t index2[UNEWTRIE2_MAX_INDEX_2_LENGTH]; member in struct:UNewTrie2
/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/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
H A DbtGImpactBvh.h51 GIM_PAIR(int index1, int index2) argument
54 m_index2 = index2;
66 inline void push_pair(int index1,int index2) argument
68 push_back(GIM_PAIR(index1,index2));
71 inline void push_pair_inv(int index1,int index2) argument
73 push_back(GIM_PAIR(index2,index1));
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
H A Dt1afm.c92 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 );
93 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); local
96 if ( index1 > index2 )
98 else if ( index1 < index2 )
203 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
345 midi = KERN_INDEX( mid->index1, mid->index2 );
/external/pdfium/third_party/freetype/src/type1/
H A Dt1afm.c92 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 );
93 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); local
96 if ( index1 > index2 )
98 else if ( index1 < index2 )
203 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
337 midi = KERN_INDEX( mid->index1, mid->index2 );

Completed in 3336 milliseconds

1234567