Home
last modified time | relevance | path

Searched refs:index1 (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/media/libaaudio/src/flowgraph/resampler/
DSincResampler.cpp44 int index1 = static_cast<int>(floor(tablePhase)); in readFrame() local
45 if (index1 >= mNumRows) { // no guard row needed because we wrap the indices in readFrame()
47 index1 -= mNumRows; in readFrame()
50 int index2 = index1 + 1; in readFrame()
55 float *coefficients1 = &mCoefficients[static_cast<size_t>(index1) in readFrame()
72 float fraction = tablePhase - index1; in readFrame()
DSincResamplerStereo.cpp56 int index1 = static_cast<int>(floor(tablePhase)); in readFrame() local
57 float *coefficients1 = &mCoefficients[static_cast<size_t>(index1) in readFrame()
59 int index2 = (index1 + 1); in readFrame()
77 float fraction = tablePhase - index1; in readFrame()
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/
Dindex8.m3u84 …ME="English stereo",LANGUAGE="en",AUTOSELECT=YES,URI="../../fuzz/arm64/httplive_fuzzer/index1.m3u8"
7 ../../fuzz/arm64/httplive_fuzzer/index1.m3u8
13 ../../fuzz/arm64/httplive_fuzzer/index1.m3u8
Dprog_index.m3u82 …,GROUP-ID="audio",LANGUAGE="eng",NAME="English",AUTOSELECT=YES,DEFAULT=YES,URI="corpus/index1.m3u8"
3 …,GROUP-ID="audio",LANGUAGE="fre",NAME="Français",AUTOSELECT=YES,DEFAULT=NO,URI="corpus/index1.m3u8"
4 …IO,GROUP-ID="audio",LANGUAGE="sp",NAME="Espanol",AUTOSELECT=YES,DEFAULT=NO,URI="corpus/index1.m3u8"
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DPolicyAudioPort.cpp187 int index1 = -1, index2 = -1; in compareFormats() local
189 (i < ARRAY_SIZE(sPcmFormatCompareTable)) && ((index1 == -1) || (index2 == -1)); in compareFormats()
192 index1 = i; in compareFormats()
200 return index1 - index2; in compareFormats()
/frameworks/base/core/java/android/hardware/camera2/impl/
DFrameNumberTracker.java227 int index1 = mPendingFrameNumbersWithOtherType[otherType1].indexOf(frameNumber); in updateCompletedFrameNumber() local
229 boolean inSkippedOther1 = index1 != -1; in updateCompletedFrameNumber()
249 index = index1; in updateCompletedFrameNumber()
/frameworks/av/camera/
DCameraParameters2.cpp163 ssize_t index1 = mMap.indexOfKey(String8(key1)); in compareSetOrder() local
165 if (index1 < 0) { in compareSetOrder()
173 *order = (index1 == index2) ? 0 : in compareSetOrder()
174 (index1 < index2) ? -1 : in compareSetOrder()
/frameworks/av/media/libstagefright/webm/tests/
DWebmFrameThreadUnitTest.cpp253 int32_t index1 = GetParam().first; in TEST_P() local
255 ASSERT_NO_FATAL_FAILURE(createWebmThreads({index1, index2})); in TEST_P()
268 int32_t index1 = GetParam().first; in TEST_P() local
270 ASSERT_NO_FATAL_FAILURE(createWebmThreads({index1, index2})); in TEST_P()
/frameworks/av/media/codecs/amrnb/dec/src/
Dd8_31pf.cpp166 Word16 index1, /* i : index for first pos in pos_index[] */ in decompress10() argument
226 pos_indx[index1] = ib + (ic & 1); in decompress10()
/frameworks/av/services/mediaresourcemanager/test/
DResourceManagerService_test.cpp122 ssize_t index1 = map.indexOfKey(kTestPid1); in addResource() local
123 ASSERT_GE(index1, 0); in addResource()
124 const ResourceInfos &infos1 = map[index1]; in addResource()
148 ssize_t index1 = map.indexOfKey(kTestPid1); in testCombineResourceWithNegativeValues() local
149 ASSERT_GE(index1, 0); in testCombineResourceWithNegativeValues()
150 const ResourceInfos &infos1 = map[index1]; in testCombineResourceWithNegativeValues()
239 ssize_t index1 = map.indexOfKey(kTestPid1); in testCombineResource() local
240 ASSERT_GE(index1, 0); in testCombineResource()
241 const ResourceInfos &infos1 = map[index1]; in testCombineResource()
278 ssize_t index1 = map.indexOfKey(kTestPid1); in testRemoveResource() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DRuimRecords.java596 for(int index1 = 0; index1 < naiLength; index1++) { in onRecordLoaded()
597 naiCharArray[index1] = (char)(bitStream.read(8) & 0xFF); in onRecordLoaded()