Home
last modified time | relevance | path

Searched refs:arrayIndex (Results 1 – 16 of 16) sorted by relevance

/frameworks/av/media/codec2/sfplugin/
DPipelineWatcher.cpp66 uint64_t frameIndex, size_t arrayIndex) { in onInputBufferReleased() argument
68 (unsigned long long)frameIndex, arrayIndex); in onInputBufferReleased()
75 if (it->second.buffers.size() <= arrayIndex) { in onInputBufferReleased()
77 (unsigned long long)frameIndex, it->second.buffers.size(), arrayIndex); in onInputBufferReleased()
80 std::shared_ptr<C2Buffer> buffer(std::move(it->second.buffers[arrayIndex])); in onInputBufferReleased()
82 (unsigned long long)frameIndex, arrayIndex); in onInputBufferReleased()
DPipelineWatcher.h88 uint64_t frameIndex, size_t arrayIndex);
DCCodec.h70 void onInputBufferDone(uint64_t frameIndex, size_t arrayIndex);
DCCodecBufferChannel.h142 void onInputBufferDone(uint64_t frameIndex, size_t arrayIndex);
DCCodec.cpp522 uint64_t frameIndex, size_t arrayIndex) override { in onInputBufferDone()
525 codec->onInputBufferDone(frameIndex, arrayIndex); in onInputBufferDone()
1639 void CCodec::onInputBufferDone(uint64_t frameIndex, size_t arrayIndex) { in onInputBufferDone() argument
1640 mChannel->onInputBufferDone(frameIndex, arrayIndex); in onInputBufferDone()
1641 if (arrayIndex == 0) { in onInputBufferDone()
DCCodecBufferChannel.cpp1252 uint64_t frameIndex, size_t arrayIndex) { in onInputBufferDone() argument
1257 mPipelineWatcher.lock()->onInputBufferReleased(frameIndex, arrayIndex); in onInputBufferDone()
/frameworks/base/drm/java/android/drm/
DDrmUtils.java123 private int readByte(byte[] constraintData, int arrayIndex) { in readByte() argument
125 return (int)constraintData[arrayIndex]; in readByte()
129 byte[] constraintData, int numberOfBytes, int arrayIndex) { in readMultipleBytes() argument
131 for (int j = arrayIndex, i = 0; j < arrayIndex + numberOfBytes; j++,i++) { in readMultipleBytes()
/frameworks/base/core/java/android/view/inputmethod/
DSparseRectFArray.java267 final int arrayIndex = Arrays.binarySearch(mKeys, index); in get() local
268 if (arrayIndex < 0) { in get()
271 final int baseCoordIndex = arrayIndex * 4; in get()
285 final int arrayIndex = Arrays.binarySearch(mKeys, index); in getFlags() local
286 if (arrayIndex < 0) { in getFlags()
289 return mFlagsArray[arrayIndex]; in getFlags()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Collections/
DMapField.cs302 … ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo() argument
304 list.CopyTo(array, arrayIndex); in CopyTo()
712 public void CopyTo(T[] array, int arrayIndex) in CopyTo() argument
714 if (arrayIndex < 0) in CopyTo()
716 throw new ArgumentOutOfRangeException(nameof(arrayIndex)); in CopyTo()
718 if (arrayIndex + Count >= array.Length) in CopyTo()
724 array[arrayIndex++] = item; in CopyTo()
DReadOnlyDictionary.cs102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo() argument
104 wrapped.CopyTo(array, arrayIndex); in CopyTo()
DRepeatedField.cs258 public void CopyTo(T[] array, int arrayIndex) in CopyTo() argument
260 Array.Copy(this.array, 0, array, arrayIndex, count); in CopyTo()
/frameworks/av/media/codec2/hidl/1.0/vts/functional/common/
Dmedia_c2_hidl_test_common.h90 uint64_t frameIndex, size_t arrayIndex) override { in onInputBufferDone()
93 (void)arrayIndex; in onInputBufferDone()
/frameworks/base/core/java/com/android/internal/app/procstats/
DSparseMappingTable.java428 final int arrayIndex = getArrayFromKey(key); in validateKeys() local
430 if (arrayIndex >= longsSize || index >= longs.get(arrayIndex).length) { in validateKeys()
/frameworks/av/media/codec2/hidl/1.0/utils/
DInputBufferManager.cpp369 inputBuffer.arrayIndex = bufferIndex; in processNotifications()
403 << ", " << inputBuffer.arrayIndex in processNotifications()
/frameworks/av/media/codec2/hidl/client/include/codec2/hidl/
Dclient.h265 uint64_t frameIndex, size_t arrayIndex) = 0;
/frameworks/av/media/codec2/hidl/client/
Dclient.cpp504 << ", bufferIndex = " << inputBuffer.arrayIndex in onInputBuffersReleased()
507 inputBuffer.frameIndex, inputBuffer.arrayIndex); in onInputBuffersReleased()