Home
last modified time | relevance | path

Searched refs:inIndex (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DMultiTouchInputMapper.cpp264 for (size_t inIndex = 0; inIndex < inCount; inIndex++) { in syncTouch() local
266 mMultiTouchMotionAccumulator.getSlot(inIndex); in syncTouch()
277 ALOGI("Stop processing slot %zu for it received a palm event from device %s", inIndex, in syncTouch()
H A DTouchInputMapper.cpp3701 uint32_t inIndex = inIdToIndex[id]; in updateMovedPointers() local
3704 const PointerProperties& curInProperties = inProperties[inIndex]; in updateMovedPointers()
3705 const PointerCoords& curInCoords = inCoords[inIndex]; in updateMovedPointers()
/aosp12/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java2178 int inIndex = 0; in byteArrayToNumberArray() local
2180 while (inIndex < valuesIn.length && outIndex < valuesOut.length) { in byteArrayToNumberArray()
2182 valuesOut[outIndex++] = byteArrayToInt(valuesIn, inIndex); in byteArrayToNumberArray()
2183 inIndex += Integer.BYTES; in byteArrayToNumberArray()
2185 valuesOut[outIndex++] = byteArrayToFloat(valuesIn, inIndex); in byteArrayToNumberArray()
2186 inIndex += Float.BYTES; in byteArrayToNumberArray()