/third_party/cmsis/CMSIS/DSP/Source/FilteringFunctions/ |
D | arm_fir_sparse_f32.c | 126 int32_t readIndex; /* Read index of the state buffer */ in arm_fir_sparse_f32() local 136 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_f32() 139 if (readIndex < 0) in arm_fir_sparse_f32() 141 readIndex += (int32_t) delaySize; in arm_fir_sparse_f32() 148 arm_circularRead_f32((int32_t *) py, delaySize, &readIndex, 1, in arm_fir_sparse_f32() 202 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_f32() 205 if (readIndex < 0) in arm_fir_sparse_f32() 207 readIndex += (int32_t) delaySize; in arm_fir_sparse_f32() 219 arm_circularRead_f32((int32_t *) py, delaySize, &readIndex, 1, in arm_fir_sparse_f32() 273 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_f32() [all …]
|
D | arm_fir_sparse_q7.c | 76 int32_t readIndex; /* Read index of the state buffer */ in arm_fir_sparse_q7() local 94 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q7() 97 if (readIndex < 0) in arm_fir_sparse_q7() 99 readIndex += (int32_t) delaySize; in arm_fir_sparse_q7() 106 arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, in arm_fir_sparse_q7() 157 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q7() 160 if (readIndex < 0) in arm_fir_sparse_q7() 162 readIndex += (int32_t) delaySize; in arm_fir_sparse_q7() 174 arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, in arm_fir_sparse_q7() 230 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q7() [all …]
|
D | arm_fir_sparse_q31.c | 73 int32_t readIndex; /* Read index of the state buffer */ in arm_fir_sparse_q31() local 86 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q31() 89 if (readIndex < 0) in arm_fir_sparse_q31() 91 readIndex += (int32_t) delaySize; in arm_fir_sparse_q31() 98 arm_circularRead_f32((int32_t *) py, delaySize, &readIndex, 1, in arm_fir_sparse_q31() 152 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q31() 155 if (readIndex < 0) in arm_fir_sparse_q31() 157 readIndex += (int32_t) delaySize; in arm_fir_sparse_q31() 169 arm_circularRead_f32((int32_t *) py, delaySize, &readIndex, 1, in arm_fir_sparse_q31() 233 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q31() [all …]
|
D | arm_fir_sparse_q15.c | 76 int32_t readIndex; /* Read index of the state buffer */ in arm_fir_sparse_q15() local 93 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q15() 96 if (readIndex < 0) in arm_fir_sparse_q15() 98 readIndex += (int32_t) delaySize; in arm_fir_sparse_q15() 105 arm_circularRead_q15(py, (int32_t) delaySize, &readIndex, 1, in arm_fir_sparse_q15() 156 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q15() 159 if (readIndex < 0) in arm_fir_sparse_q15() 161 readIndex += (int32_t) delaySize; in arm_fir_sparse_q15() 173 arm_circularRead_q15(py, (int32_t) delaySize, &readIndex, 1, in arm_fir_sparse_q15() 224 readIndex = (int32_t) (S->stateIndex - blockSize) - *pTapDelay++; in arm_fir_sparse_q15() [all …]
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/ |
D | InterpolatingDelayLine.cpp | 30 int32_t readIndex = mCursor - delayInt; in process() local 31 if (readIndex < 0) { in process() 32 readIndex += mDelaySize; in process() 35 float *readAddress = mDelayLine.get() + readIndex; in process()
|
/third_party/skia/third_party/externals/oboe/src/fifo/ |
D | FifoBuffer.cpp | 78 uint32_t readIndex = mFifo->getReadIndex(); // ranges 0 to capacity in read() local 80 uint8_t *source = &mStorage[convertFramesToBytes(readIndex)]; in read() 81 if ((readIndex + framesToRead) > mFifo->getFrameCapacity()) { in read() 83 int32_t frames1 = static_cast<int32_t>(mFifo->getFrameCapacity() - readIndex); in read()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Framebuffer.cpp | 361 size_t readIndex = (mReadBufferState == GL_BACK in getReadIndex() local 364 ASSERT(readIndex < mColorAttachments.size()); in getReadIndex() 365 return readIndex; in getReadIndex() 374 size_t readIndex = getReadIndex(); in getReadAttachment() local 375 return mColorAttachments[readIndex].isAttached() ? &mColorAttachments[readIndex] : nullptr; in getReadAttachment() 2182 size_t readIndex = mState.getReadIndex(); in ensureReadAttachmentsInitialized() local 2183 if (mState.mResourceNeedsInit[readIndex]) in ensureReadAttachmentsInitialized() 2185 ANGLE_TRY(InitAttachment(context, &mState.mColorAttachments[readIndex])); in ensureReadAttachmentsInitialized() 2186 mState.mResourceNeedsInit.reset(readIndex); in ensureReadAttachmentsInitialized()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Framebuffer.cpp | 460 uint32_t readIndex = mReadBufferState == GL_BACK ? 0 : mReadBufferState - GL_COLOR_ATTACHMENT0; in getReadIndex() local 461 ASSERT(readIndex < mColorAttachments.size()); in getReadIndex() 462 return readIndex; in getReadIndex() 472 uint32_t readIndex = getReadIndex(); in getReadAttachment() local 474 isDefault() ? mDefaultFramebufferReadAttachment : mColorAttachments[readIndex]; in getReadAttachment() 2391 size_t readIndex = mState.getReadIndex(); in ensureReadAttachmentsInitialized() local 2392 if (mState.mResourceNeedsInit[readIndex]) in ensureReadAttachmentsInitialized() 2394 ANGLE_TRY(InitAttachment(context, &mState.mColorAttachments[readIndex])); in ensureReadAttachmentsInitialized() 2395 mState.mResourceNeedsInit.reset(readIndex); in ensureReadAttachmentsInitialized()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | Compiler.cpp | 1499 for (size_t readIndex = 0; readIndex < sequence->size(); ++readIndex) in pruneUnusedFunctions() local 1501 TIntermNode *node = sequence->at(readIndex); in pruneUnusedFunctions()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ProgramVk.cpp | 95 for (int writeIndex = arrayIndex, readIndex = 0; writeIndex < maxIndex; in UpdateDefaultUniformBlock() local 96 writeIndex++, readIndex++) in UpdateDefaultUniformBlock() 100 const T *readPtr = v + (readIndex * componentCount); in UpdateDefaultUniformBlock()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | uts46.cpp | 614 int32_t readIndex=mappingStart, writeIndex=mappingStart; in mapDevChars() local 616 UChar c=s[readIndex++]; in mapDevChars() 623 if(writeIndex==readIndex) { in mapDevChars() 634 ++readIndex; in mapDevChars()
|
/third_party/node/deps/icu-small/source/common/ |
D | uts46.cpp | 614 int32_t readIndex=mappingStart, writeIndex=mappingStart; in mapDevChars() local 616 UChar c=s[readIndex++]; in mapDevChars() 623 if(writeIndex==readIndex) { in mapDevChars() 634 ++readIndex; in mapDevChars()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | uts46.cpp | 614 int32_t readIndex=mappingStart, writeIndex=mappingStart; in mapDevChars() local 616 UChar c=s[readIndex++]; in mapDevChars() 623 if(writeIndex==readIndex) { in mapDevChars() 634 ++readIndex; in mapDevChars()
|
/third_party/icu/icu4c/source/common/ |
D | uts46.cpp | 614 int32_t readIndex=mappingStart, writeIndex=mappingStart; in mapDevChars() local 616 UChar c=s[readIndex++]; in mapDevChars() 623 if(writeIndex==readIndex) { in mapDevChars() 634 ++readIndex; in mapDevChars()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | DynamicBufferOffsetTests.cpp | 544 uint32_t readIndex = GetParam().mOOBRead ? std::min(kOOBOffset + i, kArrayLength - 1) : i; in TEST_P() local 548 uint32_t value = srcData[srcBufferByteOffset / 4 + 4 * readIndex + c]; in TEST_P()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ProgramVk.cpp | 96 for (int writeIndex = arrayIndex, readIndex = 0; writeIndex < maxIndex; in UpdateDefaultUniformBlock() local 97 writeIndex++, readIndex++) in UpdateDefaultUniformBlock() 101 const T *readPtr = v + (readIndex * componentCount); in UpdateDefaultUniformBlock()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | ProgramMtl.mm | 127 for (int writeIndex = arrayIndex, readIndex = 0; writeIndex < maxIndex; 128 writeIndex++, readIndex++) 132 const T *readPtr = v + (readIndex * componentCount);
|