Home
last modified time | relevance | path

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

/aosp12/frameworks/minikin/tests/util/
H A 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()
/aosp12/hardware/google/pixel/vibrator/drv2624/
H A DVibrator.cpp275 ndk::ScopedAStatus Vibrator::getEffectDetails(Effect effect, uint8_t *outIndex, in getEffectDetails() argument
279 *outIndex = WAVEFORM_TICK_EFFECT_INDEX; in getEffectDetails()
283 *outIndex = WAVEFORM_CLICK_EFFECT_INDEX; in getEffectDetails()
287 *outIndex = WAVEFORM_DOUBLE_CLICK_EFFECT_INDEX; in getEffectDetails()
291 *outIndex = WAVEFORM_TICK_EFFECT_INDEX; in getEffectDetails()
295 *outIndex = WAVEFORM_HEAVY_CLICK_EFFECT_INDEX; in getEffectDetails()
H A DVibrator.h174 ndk::ScopedAStatus getEffectDetails(Effect effect, uint8_t *outIndex, uint32_t *outTimeMs);
/aosp12/frameworks/base/media/java/android/media/audiofx/
H A 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()
/aosp12/frameworks/av/cmds/stagefright/
H A 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()
/aosp12/frameworks/av/media/libmedia/omx/1.0/
H A DWOmxNode.cpp227 [&fnStatus, index](Status status, uint32_t outIndex) { in getExtensionIndex() argument
229 *index = toEnumIndexType(outIndex); in getExtensionIndex()
/aosp12/frameworks/av/media/libstagefright/omx/1.0/
H A DWOmxNode.cpp230 [&fnStatus, index](Status status, uint32_t outIndex) { in getExtensionIndex() argument
232 *index = toEnumIndexType(outIndex); in getExtensionIndex()
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DTouchInputMapper.cpp3702 uint32_t outIndex = outIdToIndex[id]; in updateMovedPointers() local
3706 PointerProperties& curOutProperties = outProperties[outIndex]; in updateMovedPointers()
3707 PointerCoords& curOutCoords = outCoords[outIndex]; in updateMovedPointers()