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

123456

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_c.c28 int* index2) {
38 tmpW32 += WEBRTC_SPL_MUL_16_16(ubufQQpos2[*index2 + j], coefficient[j]);
66 tmpW32 = inputBuf[*index2] - WEBRTC_SPL_MUL_16_16(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, int 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, int 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/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_c.c28 int* index2) {
38 tmpW32 += WEBRTC_SPL_MUL_16_16(ubufQQpos2[*index2 + j], coefficient[j]);
66 tmpW32 = inputBuf[*index2] - WEBRTC_SPL_MUL_16_16(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, WebRtc_Word16 gain, int index, WebRtc_Word16 sign, WebRtc_Word16* inputState, WebRtc_Word16* outputBuf2, const WebRtc_Word16* coefficient, WebRtc_Word16* inputBuf, WebRtc_Word16* outputBuf, int* index2) argument
H A Dpitch_filter_armv6.S32 @ int* index2) {
42 ldr r6, [sp, #60] @ index2
43 ldr r7, [r6] @ *index2
48 str r4, [r6] @ Store return value to index2.
51 add r12, r10 @ &outputBuf[*index2]
52 add r8, r10 @ &inputBuf[*index2]
54 add r4, r7, #PITCH_BUFFSIZE @ *index2 + PITCH_BUFFSIZE
55 add r6, r3, r4, lsl #1 @ &outputBuf2[*index2 + PITCH_BUFFSIZE]
57 sub r4, #2 @ *index2 + PITCH_BUFFSIZE - index - 2
58 add r3, r4, lsl #1 @ &ubufQQpos2[*index2]
[all...]
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/chromium_org/chrome/browser/
H A Dmemory_details_win.cc103 for (unsigned int index2 = 0; index2 < process_data_.size(); index2++) {
104 if (_wcsicmp(process_data_[index2].process_name.c_str(),
107 if (index2 == IE_BROWSER && is_64bit_process)
125 if (index2 == CHROME_BROWSER || index2 == CHROME_NACL_PROCESS) {
150 if (index2 == CHROME_NACL_PROCESS) {
154 process_data_[index2].processes.push_back(info);
/external/chromium_org/content/test/data/indexeddb/
H A Dbug_109187.js16 window.index2 = store.createIndex(
19 shouldBeTrue("window.index2.multiEntry");
/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/chromium_org/components/autofill/core/browser/crypto/
H A Drc4_decryptor.h68 uint8 index2 = 0; local
79 index2 = (key_data[index1] + state[counter] + index2) % kKeyDataSize;
80 SwapByte(&state[counter], &state[index2]);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp109 int index2 = (int)subStream; local
110 if (index2 < 0 || subStream > Sizes.Size())
112 if (index2 < Sizes.Size())
114 *value = Sizes[index2];
H A D7zHandler.cpp193 bool CHandler::IsEncrypted(UInt32 index2) const
195 CNum folderIndex = _db.FileIndexToFolderIndexMap[index2];
214 UInt32 index2 = index; local
233 CNum folderIndex = _db.FileIndexToFolderIndexMap[index2];
236 if (_db.FolderStartFileIndex[folderIndex] == (CNum)index2)
248 case kpidPosition: { UInt64 v; if (_db.StartPos.GetItem(index2, v)) prop = v; break; }
249 case kpidCTime: SetPropFromUInt64Def(_db.CTime, index2, prop); break;
250 case kpidATime: SetPropFromUInt64Def(_db.ATime, index2, prop); break;
251 case kpidMTime: SetPropFromUInt64Def(_db.MTime, index2, prop); break;
254 case kpidEncrypted: prop = IsEncrypted(index2); brea
[all...]
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_menu_model_unittest.cc181 int index2 = model.GetIndexOfCommandId(command2); local
182 EXPECT_GT(index2, -1);
189 EXPECT_TRUE(model.IsEnabledAt(index2));
191 model.ActivatedAt(index2);
/external/chromium_org/third_party/icu/source/common/
H A Dutrie2_impl.h144 int32_t index2[UNEWTRIE2_MAX_INDEX_2_LENGTH]; member in struct:UNewTrie2
H A Dutrie2_builder.cpp164 newTrie->index2[i]=j;
192 newTrie->index2[i]=UNEWTRIE2_DATA_NULL_OFFSET;
200 newTrie->index2[UNEWTRIE2_INDEX_GAP_OFFSET+i]=-1;
205 newTrie->index2[UNEWTRIE2_INDEX_2_NULL_OFFSET+i]=UNEWTRIE2_DATA_NULL_OFFSET;
253 uprv_memcpy(trie->index2, other->index2, other->index2Length*4);
469 block=trie->index2[i2];
479 if(newTop>LENGTHOF(trie->index2)) {
488 uprv_memcpy(trie->index2+newBlock, trie->index2
[all...]
/external/chromium_org/third_party/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/icu/icu4c/source/common/
H A Dutrie2_impl.h144 int32_t index2[UNEWTRIE2_MAX_INDEX_2_LENGTH]; member in struct:UNewTrie2
/external/proguard/src/proguard/
H A DInputReader.java159 for (int index2 = 0; index2 < outputClassPath.size(); index2++)
161 ClassPathEntry entry2 = outputClassPath.get(index2);
/external/webrtc/src/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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 );
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers_test.cc60 size_t index1, index2; local
62 StringPiece sp2 = buffer_->Write(StringPiece(", world"), &index2);
68 ASSERT_EQ(1u, index2);
74 size_t index1, index2, index3; local
80 StringPiece sp2 = buffer_->Write(bs, &index2);
88 ASSERT_EQ(2u, index2);
109 size_t index1, index2; local
112 StringPiece sp2 = buffer_->Write(StringPiece(", world"), &index2);
118 ASSERT_EQ(0u, index2);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsync_app_list_helper.cc79 size_t index2; local
81 &index2)) {
86 << " Has different verifier index: " << index2;
87 item2 = verifier->model()->top_level_item_list()->item_at(index2);
88 LOG(ERROR) << " Verifier Item(" << 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 4368 milliseconds

123456