Home
last modified time | relevance | path

Searched refs:outIndex (Results 1 – 5 of 5) sorted by relevance

/frameworks/minikin/tests/util/
DUnicodeUtils.cpp135 uint32_t outIndex = 0; in utf16ToUtf8() local
136 U8_APPEND_UNSAFE(buf, outIndex, c); in utf16ToUtf8()
137 out.append(buf, outIndex); in utf16ToUtf8()
/frameworks/base/media/java/android/media/audiofx/
DDynamicsProcessing.java2179 int outIndex = 0; in byteArrayToNumberArray() local
2180 while (inIndex < valuesIn.length && outIndex < valuesOut.length) { in byteArrayToNumberArray()
2181 if (valuesOut[outIndex] instanceof Integer) { in byteArrayToNumberArray()
2182 valuesOut[outIndex++] = byteArrayToInt(valuesIn, inIndex); in byteArrayToNumberArray()
2184 } else if (valuesOut[outIndex] instanceof Float) { in byteArrayToNumberArray()
2185 valuesOut[outIndex++] = byteArrayToFloat(valuesIn, inIndex); in byteArrayToNumberArray()
2189 valuesOut[outIndex].getClass()); in byteArrayToNumberArray()
2192 if (outIndex != valuesOut.length) { in byteArrayToNumberArray()
2193 throw new IllegalArgumentException("only converted " + outIndex + in byteArrayToNumberArray()
/frameworks/av/media/libstagefright/omx/1.0/
DWOmxNode.cpp230 [&fnStatus, index](Status status, uint32_t outIndex) { in getExtensionIndex() argument
232 *index = toEnumIndexType(outIndex); in getExtensionIndex()
/frameworks/av/media/libmedia/omx/1.0/
DWOmxNode.cpp227 [&fnStatus, index](Status status, uint32_t outIndex) { in getExtensionIndex() argument
229 *index = toEnumIndexType(outIndex); in getExtensionIndex()
/frameworks/native/services/inputflinger/reader/mapper/
DTouchInputMapper.cpp1952 uint32_t outIndex = outIdToIndex[id]; in updateMovedPointers() local
1956 PointerProperties& curOutProperties = outProperties[outIndex]; in updateMovedPointers()
1957 PointerCoords& curOutCoords = outCoords[outIndex]; in updateMovedPointers()