Home
last modified time | relevance | path

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

/frameworks/minikin/tests/util/
DUnicodeUtils.cpp134 uint32_t outIndex = 0; in utf16ToUtf8() local
135 U8_APPEND_UNSAFE(buf, outIndex, c); in utf16ToUtf8()
136 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/base/libs/hwui/
DSpotShadow.cpp204 int outIndex = total - 1; in hull() local
206 retPoly[outIndex] = lUpper[i]; in hull()
207 outIndex--; in hull()
211 retPoly[outIndex] = lLower[i]; in hull()
212 outIndex--; in hull()
/frameworks/av/cmds/stagefright/
Dmediafilter.cpp184 size_t outIndex = frame.index; in tryCopyDecodedBuffer() local
187 vidState->mOutBuffers.itemAt(outIndex); in tryCopyDecodedBuffer()
246 err = vidState->mCodec->releaseOutputBuffer(outIndex); in tryCopyDecodedBuffer()
/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/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/native/services/surfaceflinger/DisplayHardware/
DHWC2.cpp342 Error Display::getActiveConfigIndex(int* outIndex) const { in getActiveConfigIndex()
350 *outIndex = -1; in getActiveConfigIndex()
356 *outIndex = std::distance(mConfigs.begin(), pos); in getActiveConfigIndex()
361 *outIndex = -1; in getActiveConfigIndex()
DHWC2.h209 [[clang::warn_unused_result]] Error getActiveConfigIndex(int* outIndex) const;